由于某些原因,如果我尝试设置静态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
...然后运行a 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)
但是,我可以强制使用静态IP,ifconfig eth0 192.168.1.37 netmask 255.255.255.0
但显然重启后该静态IP 消失了。
为什么一种方法有效,而另一种无效?难道我做错了什么?
@qbi-
—
noobcakes 2012年
ifup eth0
给出Error: an inet prefix is expected rather than "192.168.1.37/255.255.255.0".
并ifconfig -a
显示除环回块外的所有设备(“ inet addr”和“ inet6 addr”行除外)的所有设备(eth0 lo wlan0)。wlan0块在RX和TX区域也为零,因为我已将其关闭。
哦,忘了问:您如何设置这些值,即您打开哪个文件或使用哪个GUI程序?
—
qbi 2012年
未安装gui。我一直在用nano直接编辑/ etc / network / interfaces文件。我在笔记本电脑的控制台上工作以进行网络连接,并在桌面上通过ssh进行其他操作。
—
noobcakes 2012年
在您最初的问题中,您写道
—
qbi 2012年
netmask 225.225.225.0
。225是错字吗?网络掩码似乎很奇怪。
ifup eth0
吗?输出是ifconfig -a
什么?