分类: LINUX
2011-11-24 14:32:44
12.11修订,有人反应照做不行,故更新详细步骤
问题描述:
centos6克隆后,“ifconfig”看不到eth0,”service network restart“提示 “Bringing up interface eth0: Device eth0 does not seem to be present, delaying initialization.”
解决方法:
# rm /etc/udev/rules.d/70-persistent-net.rules
# init 6 //重启网卡没效果
重启完后
# vim /etc/udev/rules.d/70-persistent-net.rules
查看没有eth0,将eth1改为eth0,并抄下对应MAC地址
# vim /etc/sysconfig/network-scripts/ifcfg-eth0
将MAC地址改为上面抄下的MAC地址,并配置IP地址
将ONBOOT=”no”改为ONBOOT=”yes”
# service network restart 重启网卡不行
# init 6 重启后问题解决,eth0出来了。