ubuntu服务器:wifi


9

我刚刚在装有有线网络端口和wifi卡的计算机上安装了Ubuntu 14.04服务器。我希望服务器使用有线网络(如果不可用),并在不可用时使用wifi。

原始的/ 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

# The primary network interface
auto p4p1
iface p4p1 inet dhcp

我关注了这篇文章,并将文件修改为:

# 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

auto wlan0
iface wlan0 inet dhcp
wpa-ssid <my_ssid>
wpa-psk <my_ssid_password>

# The primary network interface
auto p4p1
iface p4p1 inet dhcp

当我重新启动wlan0时,我可以连接到wifi,没问题。如果在插入网络电缆的情况下重新启动计算机,那么有线和wifi连接都将连接到我的网络,则不会出现任何问题。但是,如果拔出有线连接并重新启动,则在启动时会看到消息“正在启动配置网络设备”。然后,在系统完全启动之前,我会看到消息“等待网络配置最多等待60秒”(因此,网络等待120秒钟以上)。电脑启动时,我的wifi连接已连接。

因此,我认为一切正常,但是我的无头服务器需要很长时间才能完全启动。我究竟做错了什么?反正有解决此启动滞后吗?谢谢。

Answers:


7

声明“ auto p4p1”和“ auto wlan0”要求系统自动启动两个接口。当您断开以太网连接并要求接口无论如何都启动时,系统会出现故障:“最多等待60秒进行网络配置。”

省略“自动”声明会更有效,但肯定不是自动的:

# 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

#auto wlan0
iface wlan0 inet dhcp
wpa-ssid <my_ssid>
wpa-psk <my_ssid_password>

# The primary network interface
#auto p4p1
iface p4p1 inet dhcp

并根据需要手动启动任一接口:

sudo ifup -v wlan0

感谢您的解释。如tech.pedersen-live.com/2012/05/…所述,我减少了/ etc / init / failsafe中三个位置的睡眠时间。
Vinh Nguyen

我知道一个老问题,但我很好奇如何设置背景。每次重新启动时,我都必须手动启动。谢谢。
Chuck Claunch

@ChuckClaunch请开始您自己的新问题,并详细说明您的需求。请包括:cat /etc/network/interfaces请掩盖您的密码。
chili555 '16
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.