在 Ubuntu 14 中设置静态 IP 已经成为了当今的一项全天候项目

在 Ubuntu 14 中设置静态 IP 已经成为了当今的一项全天候项目

我这辈子从来没有在设置静态 IP 时遇到过如此大的困难。我在 askubuntu.com 上研究过 pass 问题,并查阅了有关设置静态 IP 的多个参考资料和文档。我 ping 了几个 IP 地址(如我的网关),并且收到了数据包,但我 ping google.com 却没有收到任何数据包。我甚至 ping 了我自己“我给自己的静态 IP”,它返回了数据包。所以现在我完全迷路了。

以下是我的接口文件中的内容:

auto eth0
iface eth0 inet static
address 10.25.12.201
netmask 255.255.255.0
gateway 10.25.12.10

我发出了以下命令,其结果如下

ifconfig
-->eth0    Link encap:Ethernet HWaddr 00:24:81:19:b2:ee
           inet addr:10.25.12.201 Bcast:10.25.12.255 Mask:255.255.255.0
           inet6 addr: fe80::224:81ff:fe19:b2ee/64 Scope:Link
           UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
           RX packets:1396 errors:0 dropped:0 overruns:0 frame:0
           TX packets:63 errors:0 dropped:0 overruns:0 carrier:0
           collisions:0 txqueuelen:1000
           RX bytes:98518 (98.5 KB) TX bytes:8988 (8.9KB)
           Interrupt:19 Memory:f0500000-f0520000

   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:65536 Metric:1
           RX packets:236 errors:0 dropped:0 overruns:0 frame:0
           TX packets:236 errors:0 dropped:0 overruns:0 carrier:0
           collisions:0 txqueuelen:0
           RX bytes:17383 (17.3 KB) TX bytes:17383 (17.3 KB)


ping google.com
-->ping: unknown host google.com


ping 10.25.12.10
-->PING 10.25.12.10 (10.25.12.10) 56(84) bytes of data
-->64 bytes from 10.25.12.10: icmp_seq=1 ttl=64 time=1.08 ms
-->64 bytes from 10.25.12.10: icmp_seq=2 ttl=64 time=0.571 ms
-->10.25.12.10 ping statistics 
-->2 packets transmitted, 2 received, 0% packet loss, time 1001ms
-->rtt min/avg/max/mdev = 0.571/0.830/1.089/0.259 ms


ping 10.25.12.201
-->PING 10.25.12.201 (10.25.12.201) 56(84) bytes of data
-->64 bytes from 10.25.12.201: icmp_seq=1 ttl=64 time=0.021 ms
-->1 packets transmitted, 1 received, 0% packet loss, time 0ms
-->rtt min/avg/max/mdev = 0.021/0.021/0.021/0.000 ms

有没有什么办法可以解决这个问题。我还重启了网络,并重启了电脑好几次。我还在文件接口的顶部添加了“auto lo”和“iface lo inet loopback”,但仍然不起作用。似乎无论我做什么,都无法 ping google.com 并建立任何类型的互联网连接。

相关内容