Linux 常见问题索引

CentOS 6.5/Linux 重启网卡报错 Determining if ip address x.x.x.x is already in use

操作系统:CentOS 6.5

在公司用完之后,回到家里使用静态ip发现上不了网,重启网络服务时报错:

# service network restart
正在关闭接口 eth0: [确定]
关闭环回接口: [确定]
FATAL: Module off not found.
弹出环回接口: [确定]
弹出界面 eth0: Determining if ip address 192.168.1.103 is already in use for device eth0…
[确定]
FATAL: Module off not found.

发现是在CentOS 6.5默认开启了ARPCHECK,将其关闭即可解决:
vim /etc/sysconfig/network-scripts/ifcfg-eth0
在最后加上
ARPCHECK=no

然后在重启网卡发现一切正常了
# service network restart
正在关闭接口 eth0: [确定]
关闭环回接口: [确定]
弹出环回接口: [确定]
弹出界面 eth0: [确定]