重启 CentOS Linux 后我的互联网访问就停止了

重启 CentOS Linux 后我的互联网访问就停止了

我已经在我的Vmware CEntoS虚拟机上给出了静态IP。

我的互联网运行正常。但重启机器后

这是我的 ifcfg-eth0 文件

DEVICE="eth0"
NM_CONTROLLED="no"
#ONBOOT="no"

NM_CONTROLLED="no"
ONBOOT="yes"
#BOOTPROTO="dhcp"
BOOTPROTO="static"
IPADDR=192.168.0.200
NETMASK=255.255.255.0
GATEWAY=192.168.0.1
PEERDNS="no"

DNS1=8.8.8.8
DNS2=8.8.8.4

我尝试 ping 网关 192.168.0.1,结果

PING 192.168.0.1 (192.168.0.1) 56(84) bytes of data.
From 192.168.0.200 icmp_seq=2 Destination Host Unreachable
From 192.168.0.200 icmp_seq=3 Destination Host Unreachable

哪些事情可能导致错误

更新: 我在 Windows 7 上使用 vmware 工作站 10 作为主机,网络状态为桥接

我尝试在桥接模式下添加第二张网卡,结果如下。etho 是 NAT,eth1 是桥接

sudo service network restart
Shutting down interface eth0:  Device state: 3 (disconnected)
                                                           [  OK  ]
Shutting down interface eth1:  Device state: 3 (disconnected)
                                                           [  OK  ]
Shutting down loopback interface:                          [  OK  ]
Bringing up loopback interface:                            [  OK  ]
Bringing up interface eth0:  Active connection state: activating
Active connection path: /org/freedesktop/NetworkManager/ActiveConnection/11
state: activated
Connection activated
                                                           [  OK  ]
Bringing up interface eth1:  Active connection state: activating
Active connection path: /org/freedesktop/NetworkManager/ActiveConnection/12
state: activated
Connection activated
                                                           [  OK  ]
[14:39][cento:~]$ ifconfig
eth0      Link encap:Ethernet  HWaddr 00:0C:29:9E:40:3C  
          inet addr:192.168.229.130  Bcast:192.168.229.255  Mask:255.255.255.0
          inet6 addr: fe80::20c:29ff:fe9e:403c/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:262 errors:0 dropped:0 overruns:0 frame:0
          TX packets:228 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:34499 (33.6 KiB)  TX bytes:75950 (74.1 KiB)

eth1      Link encap:Ethernet  HWaddr 00:0C:29:9E:40:46  
          inet6 addr: fe80::20c:29ff:fe9e:4046/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:168 errors:0 dropped:0 overruns:0 frame:0
          TX packets:21 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:22071 (21.5 KiB)  TX bytes:5598 (5.4 KiB)

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:75 errors:0 dropped:0 overruns:0 frame:0
          TX packets:75 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0 
          RX bytes:5425 (5.2 KiB)  TX bytes:5425 (5.2 KiB)

答案1

您必须确定您的客户机处于哪种网络模式。默认情况下是 NAT 模式,因此 IP 地址应从 DHCP 服务器(即主机中的虚拟适配器)获取。因此,您可以注释掉有关静态 IP 的所有配置,并将其设置为 DHCP 模式,然后重新启动适配器。

答案2

尝试这个我的参考 我之前没有DNS1=8.8.8.8在这里看到过,如果你想使用/etc/resolv.conf那么PEERDNS="no",如果你想覆盖/etc/resolv.conf那么PEERDNS="yes",但是,在这两种情况下都没有DNS1= item

答案3

您需要为 eth1 配置接口配置。获取您发布的配置并将其保存为 ifcfg-eth1。更改 DEVICE 行以匹配 eth1,并确保配置未使用的 IP 地址。

相关内容