Tag Archives: Device eth0 does not seem to be present

[Solved] Device eth0 does not seem to be present,delaying initialization

First, open/etc/udev/rules.d/70-persistent-net.rules, as shown in the following example:

vim /etc/udev/rules.d/70-persistent-net.rules

Record the mac address 00:15:5d:00:03:01 of the eth1 NIC

Next, open theĀ /etc/sysconfig/network-scripts/ifcfg-eth0

vim /etc/sysconfig/network-scripts/ifcfg-eth0

Change device = eth0 “to device = eth1”,
change hwaddr = 00:15:5d:00:03:01 “to MAC address hwaddr = 00:15:5d:00:04:01”

Finally, restart the network

service network restart

Done!

[How to Solve] Device eth0 does not seem to be present

For the virtual machine clone or template deployment machine, the network card will have the following problems:

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]

Solution:

Open/etc/udev/rules.d/70-persistent-net.rules, check the MAC address of eth1, and then open/etc/sysconfig/network scripts/ifcfg-eth0 after recording

Then, eth0 is replaced by eth1 and the original MAC address is changed

Just restart the network