一.故障现象:
[root@c1node01 ~]# service network restart Shutting down loopback insterface: [ OK ] Bringing up loopback insterface: [ OK ] Bringing up interface eth0: Device eth0 does not seem to be present,delaying initialization. [FAILED]
解决办法:
[root@c1node01 ~]# rm -rf /etc/udev/rules.d/70-persistent-net.rules [root@c1node01 ~]# reboot ……………… [root@c1node01 ~]# service network restart Shutting down loopback insterface: [ OK ] Bringing up loopback insterface: [ OK ] Bringing up interface eth0: [ OK ] [root@c1node01 ~]#
二.另一种方法
造成这样的原因,是因为在虚拟机(Vmware)中移动了Centos系统对应的文件,导致重新配置时,网卡的MAC地址变了,输入ifconfig -a,找不到eth0
·······
安装完一个centos虚拟机,又拷贝一份,开机后网卡无法正常启动,报错:Device eth0 does not seem to be present,
delaying initialization
解决:#
mv /etc/sysconfig/network-scripts/ifcfg-eth0 sysconfig/network-scripts/ifcfg-eth1
_____________________________________________________________________________________________________________________________
vim sysconfig/network-scripts/ifcfg-eth1
修改DEVICE="eth0"
为DEVICE="eth1"
然后重启启动网卡尝试下
三.比第一种更深入一点
故障前的操作:
DELL刀片装的是CentOS6.3的操作系统,网卡识别的是em1和em2,由于工作需要做了槽位调整,并启动了刀片
故障现象:
启动后网络不通,通过iDRAC登录后route查看缺省路由正常;
重启网络服务:
[root@nodeA ~]# service network restart
Shutting down loopback insterface: [ OK ]
Bringing up loopback insterface: [ OK ]
Bringing up interface em1: Device em1 does not seem to be present,delaying initialization. [FAILED]
分析问题和解决:
之前在别的文章中我们提过70-persistent-net.rules文件,所以看了一下:
[root@nodeA ~]# vi /etc/udev/rules.d/70-persistent-net.rules # This file was automatically generated by the /lib/udev/write_net_rules # program, run by the persistent-net-generator.rules rules file. # # You can modify it, as long as you keep each rule on a single # line, and change only the value of the NAME= key. # PCI device 0x14e4:0x163a (bnx2) SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="24:b6:fd:ab:76:1e", ATTR{type}=="1", KERNEL=="eth*", NAME="eth1" # PCI device 0x14e4:0x163a (bnx2) SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="24:b6:fd:ab:76:1c", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"
发现NAME的名称不正确,依次将上述红色字体中的eth0改为em1,eth1改为em2;
*切记:网卡编号由MAC地址大小决定,MAC越小网卡编号越小;
如下:
………… # PCI device 0x14e4:0x163a (bnx2) SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="24:b6:fd:ab:76:1e", ATTR{type}=="1", KERNEL=="eth*", NAME="em2" # PCI device 0x14e4:0x163a (bnx2) SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="24:b6:fd:ab:76:1c", ATTR{type}=="1", KERNEL=="eth*", NAME="em1"
保存退出~!
[root@nodeA ~]#reboot
………………
问题解决~!
相关推荐
Linux网络启动问题:Device does not seem to be present解决办法 在整虚拟机时候经常会遇到虚拟机拷贝,然而拷贝之后网络配置会遇到错误 service network restart启动网络时候提示如下错误: Device does not seem ...
CentOS6.5配置eth0重启报错提示Device eth0 does not seem to be present,delaying initialization的结决方法 在搭建Hadooop 完全分布式的时候,从节点一般是从主节点复制过来的,再给从节点配置网络的时候,会出现...
当系统提示"Device does not seem to be present"时,可能是因为系统找不到与配置文件中指定的MAC地址匹配的物理设备。此时,你可以按照以下步骤进行操作: 1. **打开配置文件**:使用文本编辑器(如`vi`或`nano`)...
具体表现为网卡未能自动启动,即使尝试通过命令`service network restart`手动重启网络服务,也会收到错误提示:“Device eth0 does not seem to be present, delaying initialization”。 #### 故障原因解析 出现...
首先,系统无法识别网卡设备,通常会显示错误消息如:“Bringing up interface eth0: Device eth0 does not seem to be present, delaying.” 这表明系统在启动时无法识别名为eth0的网卡设备。这样的问题可以通过...
- 当看到“Device eth0 does not seem to be present, delaying initialization”这样的提示时,意味着虚拟机的网卡初始化失败。原因可能是克隆系统时,克隆后的MAC地址与配置文件中的不一致。 - **故障排除**:在...
在某些情况下,你可能会遇到其他错误,例如“Device eno16884287 does not seem to be present”。这表明系统找不到对应的网络设备。此时,需要检查网卡配置文件(如`ifcfg-eno16884287`),更新Device和Name字段,...