我刚刚在装有有线网络端口和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连接已连接。
因此,我认为一切正常,但是我的无头服务器需要很长时间才能完全启动。我究竟做错了什么?反正有解决此启动滞后吗?谢谢。