重启后网络阻塞

重启后网络阻塞

我正在运行,我不想安装网络管理器。

我的网络接口有问题。当我重新启动接口时,我无法再使用任何连接。

我无法访问互联网或相同子网的 IP 地址。

这里是重启前的 , , 和ifconfigdnsroute命令ping

eth0      Link encap:Ethernet  HWaddr 90:59:af:51:17:c3
          inet addr:192.168.1.30  Bcast:192.168.1.255  Mask:255.255.255.0
          inet6 addr: fe80::9259:afff:fe51:17c3/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:33873 errors:0 dropped:479 overruns:0 frame:0
          TX packets:952 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:4125488 (3.9 MiB)  TX bytes:113565 (110.9 KiB)
          Interrupt:56

route -n

 Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
 0.0.0.0         192.168.1.10    0.0.0.0         UG    0      0        0 eth0
 192.168.1.0     0.0.0.0         255.255.255.0   U     0      0        0 eth0

ping google.com

PING google.com (173.194.112.36) 56(84) bytes of data.
64 bytes from fra07s28-in-f4.1e100.net (173.194.112.36): icmp_req=1 ttl=55 time=30.1 ms
64 bytes from fra07s28-in-f4.1e100.net (173.194.112.36): icmp_req=2 ttl=55 time=29.8 ms

域名系统

nameserver 8.8.8.8
nameserver 8.8.4.4

在我运行service networking restart/etc/init.d/networking restart停止然后再次启动我得到的服务后Destination Host Unreachable。我必须重新启动系统才能使其正常工作。

知道为什么会发生这种情况吗?

这里是接口文件内容

auto lo
iface lo inet loopback

auto eth0
iface eth0 inet static
    address 192.168.1.30
    netmask 255.255.255.0
    network 192.168.1.0
    dns-nameservers 8.8.8.8 8.8.4.4
    gateway 192.168.1.10
    metric 0

相关内容