等待网络配置(启动时)

等待网络配置(启动时)

我最近注意到,在我的新 14.04 服务器上,启动时出现以下情况:

Waiting for network configuration

其次是:

Waiting up to 60 more seconds for network configuration

最后是:

Booting system without full network configuration

我读过一些地方说这与 /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 p2p1
iface p2p1 inet static
    address 192.168.79.249
    netmask 255.255.255.0
    gateway 192.168.79.1
    dns-nameservers 192.168.79.1 8.8.8.8


auto p3p1
iface p3p1 inet static
    address 192.168.79.252
    netmask 255.255.255.0
    gateway 192.168.79.1
    dns-nameservers 192.168.79.1 8.8.8.8

为了防止有人感到疑惑,我的系统中确实有两个 NIC。

如果这是我需要担心的事情,任何帮助都将不胜感激。谢谢!

答案1

升级内核后我遇到了同样的问题。

当我执行

ifup eth0 

我有

device not found 

因此问题不在于配置。

我的解决方案:使用不同的内核启动。

您可以检查您的电脑中是否有其他内核正在执行:

ls /usr/src/

您将获得如下条目:

linux-headers-3.13.0-64/

要使用不同的内核启动,请在启动时按 SHIFT 键并选择“高级 ubuntu 选项”,然后尝试选择不同的内核,直到找到可用的内核。之后,删除其他内核。

相关内容