|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
如果您觉得本篇CentOSLinux教程讲得好,请记得点击右边漂浮的分享程序,把好文章分享给你的好朋友们!一.妨碍征象:
[root@c1node01~]#servicenetworkrestart
Shuttingdownloopbackinste***ce:[OK]
Bringinguploopbackinste***ce:[OK]
Bringingupinte***ceeth0:Deviceeth0doesnotseemtobepresent,delayinginitialization.[FAILED]
2、办理举措
法一:
办理举措:
[root@c1node01~]#rm-rf/etc/udev/rules.d/70-persistent-net.rules
[root@c1node01~]#reboot………………
[root@c1node01~]#servicenetworkrestart
Shuttingdownloopbackinste***ce:[OK]
Bringinguploopbackinste***ce:[OK]
Bringingupinte***ceeth0:[OK]
法二:
装置完一个centos假造机,又拷贝一份,开机后网卡没法一般启动,报错:Deviceeth0doesnotseemtobepresent,
delayinginitialization
办理:#mv/etc/sysconfig/network-scripts/ifcfg-eth0/etc/sysconfig/network-scripts/ifcfg-eth1
vim/etc/sysconfig/network-scripts/ifcfg-eth1
修正DEVICE="eth0"
为DEVICE="eth1"
然后重启启动网卡实验下
法三:
在RHEL5里也产生相似事变,由于复制假造机MAC会从头天生,可是操纵体系的MAC却写在ifcfg-ethx里,形成了纷歧致,以是不克不及启动收集接口,在RHEL5里可使用kudzu大概正文网卡设置文件的MAC字段来办理这个成绩。可是在RHEL6里,kudzu已被hal办事代替了。固然lspci可以一般认到网卡,可是却没法利用/etc/init.d/networkrestart来启动办事。实验正文ifcfg-eth0的MAC字段,仍是报错。检察了下udev的划定规矩,发明了成绩的地点。
[root@Oracle~]#cat/etc/udev/rules.d/70-persistent-net.rules
#Thisfilewasautomaticallygeneratedbythe/lib/udev/write_net_rules
#program,runbythepersistent-net-generator.rulesrulesfile.
#
#Youcanmodifyit,aslongasyoukeepeachruleonasingle
#line,andchangeonlythevalueoftheNAME=key.
#netdevice()(customnameprovidedbyexternaltool)
SUBSYSTEM==”net”,ACTION==”add”,DRIVERS==”?*”,ATTR{address}==”08:00:27:16:31:11″,ATTR{type}==”1″,KERNEL==”eth*”,NAME=”eth0″
#netdevice()
SUBSYSTEM==”net”,ACTION==”add”,DRIVERS==”?*”,ATTR{address}==”08:00:27:32:66:63″,ATTR{type}==”1″,KERNEL==”eth*”,NAME=”eth1″
[root@Oracle~]#
本来UDEV这里把克隆前的MAC当做了以后假造机的eth0MAC,而从头天生的08:00:27:32:66:63是eth1的MAC。
办理这个成绩,只需删除旧的UDEV设置,修正为:
[root@Oracle~]#cat/etc/udev/rules.d/70-persistent-net.rules
#Thisfilewasautomaticallygeneratedbythe/lib/udev/write_net_rules
#program,runbythepersistent-net-generator.rulesrulesfile.
#
#Youcanmodifyit,aslongasyoukeepeachruleonasingle
#line,andchangeonlythevalueoftheNAME=key.
#netdevice()(customnameprovidedbyexternaltool)
SUBSYSTEM==”net”,ACTION==”add”,DRIVERS==”?*”,ATTR{address}==”08:00:27:32:66:63″,ATTR{type}==”1″,KERNEL==”eth*”,NAME=”eth0″
重启network办事偶然能够偶然不可,重启体系就统统OK!试过量次!
[root@Oracle~]#/etc/init.d/networkrestart
Shuttingdowninte***ceeth0:[OK]
Shuttingdownloopbackinte***ce:[OK]
Bringinguploopbackinte***ce:[OK]
Bringingupinte***ceeth0:[OK]
其实不可就reboot重启,我就是如许办理成绩的。
如果您觉得本篇CentOSLinux教程讲得好,请记得点击右边漂浮的分享程序,把好文章分享给你的小伙伴们! |
|