通过 Wifi 在 Ubuntu Server 上设置静态网络 IP

通过 Wifi 在 Ubuntu Server 上设置静态网络 IP

我跟着这个答案并在接口文件中添加以下行:

auto wlx...
iface wlx... inet static
address 192.168.2.150
netmask 255.255.255.0
gateway 192.168.1.1
wpa-ssid <my_router>
wpa-psk <my_wpa_key>
dns-nameservers 8.8.8.8 192.168.1.1

ifconfig输出我的Wifi加密狗而wlx..不是wlan0(这就是我更改它的原因)。

当我这样做时,sudo ifup wlx...我得到:

wpa_supplicant: /sbin/wpa_supplicant daemon failed to start
run-parts: /etc/network/if-pre-up.d/wpasupplicant exited with return code 1
Failed to bring wlx...

为什么会出现这种情况?


更大的背景描述如下:让 Ubuntu 服务器自动连接 WiFi,但因重复而被关闭。

相关内容