我在 Windows 7 的 VMware Player 下使用 Debian7 映像。一切正常。ping google 没问题。但在恢复 Linux 机器后,网络连接出现了问题。在调整了一些设置、卸载/安装 VMware 后,ping 到我的本地网络又没问题了。我可以 ping 我的网关路由器 192.168.0.4。
尝试 ping google 时我得到了:
PING www.google.com (74.125.205.104) 56(84) bytes of data.
然后一片寂静。如您所见,找到了 google 的 IP。但是“ping 74.125.205.104”不起作用。ping 我的 dns ip 也不起作用。
我的 /etc/resolv.conf 如下:
domain Dlink
search Dlink
nameserver 188.162.32.74
nameserver 94.25.128.74
路线-n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 192.168.0.4 0.0.0.0 UG 0 0 0 eth0
192.168.0.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
我不知道上面第二行是什么意思。我的/etc/network/interfaces如下:
auto lo
iface lo inet loopback
iface eth0 inet static
address 192.168.0.31
netmask 255.255.255.0
gateway 192.168.0.4
allow-hotplug eth0
auto eth0
iface wlan0 inet static
address 192.168.0.30
netmask 255.255.255.0
gateway 192.168.0.4
wpa-ssid "DIR-300NRU"
wpa-psk "....."
auto wlan0
我使用 eth0。wlan0 已关闭。我的网关在另一台设备上,
有什么想法吗?