Ubuntu Server 14 无线连接配置

Ubuntu Server 14 无线连接配置

大家好。我安装了全新的 Ubuntu Server 14(带更新)。我已尝试过以下解决方案,但无果:

在 ubuntu 服务器 14.04 上设置无线(WPA2)

使用 CLI 自动连接到无线网络

这是我的 /etc/network/interfaces 文件:

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

# Ethernet
auto eth0
iface eth0 inet dhcp

# Wireless
auto wlan0
iface wlan0 inet dhcp
wpa-ssid network_name
wpa-psk network_password

因此重启后不会自动连接到无线连接。只有在运行命令后:

sudo ifdown wlan0 && sudo ifup -v wlan0

系统连接到无线网络。

你能告诉我如何修复它或者我哪里犯了错误吗?谢谢。

答案1

你的接口文件要求以太网和无线都自动启动。如果以太网电缆断开,显然就无法启动。

此外,在通常无头运行的服务器中,最好设置静态 IP 地址,以便您可以轻松地通过 ssh 和 ftp 进入它。因此,我建议您的接口文件应按如下方式设置:

auto lo
iface lo inet loopback

#auto eth0
iface eth0 inet dhcp

auto wlan0
iface wlan0 inet static
address 192.168.1.150
netmask 255.255.255.0
gateway 192.168.1.1
wpa-ssid <your_router>
wpa-psk <your_wpa_key>
dns-nameservers 8.8.8.8 192.168.1.1

请务必选择路由器、交换机或其他接入点中的 DHCP 服务器使用的范围之外的静态地址。当然,请在此处替换您的详细信息。

相关内容