由于某种原因,如果我尝试设置静态 IP 地址,我的 eth0 将从ifconfig
输出中消失。我在网关笔记本电脑上运行 Ubuntu 服务器 12.10。
auto eth0
iface eth0 inet dhcp
然后当我运行时它会给出这个输出ifconfig
:
eth0 Link encap:Ethernet HWaddr xx:xx:xx:xx:xx:xx
inet addr:192.168.1.101 Bcast:192.168.1.255 Mask:255.255.255.0
inet6 addr: fe80::2e0:b8ff:fee7:f71c/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:281 errors:0 dropped:0 overruns:0 frame:0
TX packets:352 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:31874 (31.8 KB) TX bytes:45369 (45.3 KB)
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:430 errors:0 dropped:0 overruns:0 frame:0
TX packets:430 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:41740 (41.7 KB) TX bytes:41740 (41.7 KB)
当我改为静态时:
auto eth0
iface eth0 inet static
address 192.168.1.37
netmask 225.225.225.0
gateway 192.168.1.1
...然后运行service networking restart
,我只从中获取环回块ifconfig
:
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:430 errors:0 dropped:0 overruns:0 frame:0
TX packets:430 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:41740 (41.7 KB) TX bytes:41740 (41.7 KB)
但是,我能强制使用静态 IPifconfig eth0 192.168.1.37 netmask 255.255.255.0
但显然这个问题在重启后就会消失。
为什么一种方法可行,而另一种方法不行?我做错了什么吗?
答案1
打字错误。我的网络掩码应该为 255.255.255.0,但我输入的是 225.225.225.0
感谢 qbi 帮助我认识到自己的错误
答案2
不要这样做service networking restart
;它已被弃用。
而是执行ifdown eth0
然后ifup eth0
或者简单地重新启动。