重启网卡如下提示:
[root@localhost ~]# service network restart
Shutting down interface eth0: [ OK ]
Shutting down interface eth1: [ OK ]
Shutting down loopback interface: [ OK ]
Bringing up loopback interface: [ OK ]
Bringing up interface eth0: Determining if ip address 192.168.10.233 is already in use for device eth0...
[ OK ]
Bringing up interface eth1: Determining if ip address 110.87.122.33 is already in use for device eth1...
[ OK ]
[root@localhost ~]#
找到网卡配置文件,网卡配置文件在 /etc/sysconfig/network-scripts/下面
[root@localhost ~]# vim /etc/sysconfig/network-scripts/ifcfg-eth0
新增 ARPCHECK=no
再次重启就正常了
[root@localhost ~]# service network restart
Shutting down interface eth0: [ OK ]
Shutting down interface eth1: [ OK ]
Shutting down loopback interface: [ OK ]
Bringing up loopback interface: [ OK ]
Bringing up interface eth0: [ OK ]
Bringing up interface eth1: [ OK ]
[root@localhost ~]#