接口修改后 eth0 无法启动

接口修改后 eth0 无法启动

刚刚在 VMWare ESXi 4.0.0 (201167) 上安装了 Ubuntu Server 10.04 并更改了接口文件。

我的(修改后的)接口文件如下所示:

auto lo
iface lo inet loopback

iface eth0 inet static
 address 192.168.254.159
 netmask 255.255.255.0
 network 192.168.254.0
 broadcast 192.168.254.255
 gateway 192.168.254.1

重新启动(或/etc/init.d/networking restart)时 ifconfig -a 显示以下内容:

eth0      Link encap:Ethernet  HWaddr 00:0c:29:cc:0b:95
          BROADCAST MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

lo        Link encap:Local Loopback
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:16436  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

因此,在我输入以下命令之前,eth0 将无法工作:

ifup eth0

我在以前版本的 Ubuntu 中使用它没有任何问题,有人知道如何在 10.04 中让它运行吗?

答案1

将 eth0添加auto eth0或附加auto lo eth0interfaces文件

相关内容