After cloning a VMWare image I had noticed that my CentOS Linux server renamed eth0 as eth1, eth1 as eth2 and so on. This is due to wrong or duplicate mac address. To fix this problem login to your CentOS Linux server using console and type the following commands:
# cd /etc/udev/rules.d
# cp 70-persistent-net.rules /root/
# rm 70-persistent-net.rules
# reboot
This file was automatically generated by the /lib/udev/write_net_rules program, run by the persistent-net-generator.rules rules file. Simple delete it and reboot the system to recreate the same. This should fix the problem:
# /sbin/ifconfig | grep "^eth"
Sample outputs:
eth0 Link encap:Ethernet HWaddr 00:0C:29:F3:E4:14 eth1 Link encap:Ethernet HWaddr 00:0C:29:F3:E4:1E
You need to remove the MAC address in /etc/sysconfig/networking-scripts/ifcfg-eth*. To find out current MAC address, enter:
# ifconfig -a | grep eth1 | grep HWaddr | awk '{ print $5}'
# ifconfig -a | grep eth2 | grep HWaddr | awk '{ print $5}'
Update your /etc/sysconfig/networking-scripts/ifcfg-eth0 with eth1 HWaddr (MAC address), enter:
# cat /etc/sysconfig/networking-scripts/ifcfg-eth0
Sample outputs:
DEVICE="eth0" BOOTPROTO="dhcp" NM_CONTROLLED="yes" ONBOOT="yes" HWADDR="00:0C:29:69:0C:4A" |
Save and close the file. Restart the network service, enter:
# service network restart
You can verify new settings with the following commands:
# /sbin/ifconfig -a
# route -n
More About udev
udev is the device manager for the Linux kernel series 2.6.xx. udev loads all modules asynchronously in a different order. This can result in devices randomly switching names. My guess is my network card switched names or renamed eth0 and eth1 as eth1 and eth2.
Nice topic.
I faced this problem before, but I solve when I change old mac address with new MAC I get from VMWare inside “70-persistent-net.rules” file.
affirmative
removing /etc/udev/rules.d/cp 70-persistent-net.rules worked for me
thanks
Thanks for this, resolved my issue after some head scratching, also note this bug here: https://bugzilla.redhat.com/show_bug.cgi?id=493995 which claims this is/was an anaconda bug, and should be resolved in later versions.
Saved me a lot of work. Thanks for the article!
This can be easily fix with this kind of script :
It helps for sure…
Just installed ur script in a template and called by /etc/rc.d/rc.local !
works perfectly when deploying a new VM. Your script is really helpfull thanks a lot ! great stuff… ๐
BTW Nixcraft when you say “My guess is my network card switched names or renamed eth0 and eth1 as eth1 and eth2.”
Wrong guess, it’s because of VmWare reassigning new mac address to your clone… then udev create a new rule so eth0 always end as eth1 in your clone.
Martin Allert go it right about deleting mac address reference in template. It’s the way to workaround and fix this problem.
I still don’t understand why Redhat still bind mac address to ethernet card … can’t work at all in a virtual environment as hypervisor deciding about hardware stuff!
And nowadays 70% more Linux servers are virtual… go figure !
Thanks for the help, I tweaked it a bit.
My problem is:
When I clone a new VM from a template, I get a eth1 despite the fact firstboot is presenting a eth0 for initial configuration.
The solution is:
Delete the HWADDR or MAC adresse from /etc/sysconfig/network-scripts/ifcfg-eth0 in the template. After a reboot, firstboot comes up and correctly configures a eth0.
good information.
Sweet! Thank you, it actually worked (with the sudo).
# cd /etc/udev/rules.d
# cp 70-persistent-net.rules /root/
# rm 70-persistent-net.rules
# reboot
I have the same problem, I have done all the steps form the top to reboot,
but to check when used grep command i could not see other eth ports or MAC address, I think at least I should see 2 mac addresses after reboot. where may i have gone wrong?
Hey,
thanks it was usefull. But with some bad coding:)
first:
# cd /etc/udev/rules.d
# mv 70-persistent-net.rules /root/
# reboot
second:
# ifconfig eth1 | awk ‘/HWaddr/ { print $5}’
Thanks a lot for your helpful post ๐
I perfected the whole process ๐
# mv /etc/udev/rules.d/70-persistent-net.rules /root/
Remove MAC-address from the following files
# nano /etc/sysconfig/network-scripts/ifcfg-eth0
# nano /etc/sysconfig/network-scripts/ifcfg-eth1
# reboot
This is a great article!!
On red hat 5 & 6 it works removing the /etc/udev/rules.d/70-persistent-net.rules files and removing the mac address from the ifcfg-ethX files. This is done on the original machine to prevent the future clone to create a new ifcfg-ethY
Any Idea on how does it work with suse ?
Thank you mate.. ๐
I was trying to copy a VM that contained a snapshot, evidently there is extra path and file name info in there, which presents a problem because snapshots may be more than 2GB:
grep -n GameServer1 UDB1-Snapshot1.vmsn
11495040:nvram = “GameServer1.nvram”
11495057:displayName = “GameServer1”
11495058:extendedConfigFile = “GameServer1.vmxf”
11495074:scsi0:0.fileName = “GameServer1.vmdk”
11495088:sched.swap.derivedName = “/vmfs/volumes/5321bbd3-ad5bdbf5-9ec4-f01fafd599b9/GameServer1/GameServer1-25db7aa3.vswp”
11495169:GameServer1.vmx
I was able to copy this too using the sed utility after inflating the snapshot:
cat path/GameServer1-Snapshot1.vmsn |sed ‘s/GameServer1/UDB1/g’ > path/UDB1-Snapshot1.vmsn
This may take a long time depending on the file size. All the other files I had copied normally and edited using vim. Hope this helps.
Thank you!
Saved me a lot of Time!!
Excellent post!
I’m a Linux noob but have to manage and clone some of our vitual Linux servers from time to time – that’s when I faced this issue.
Played around with system-config-network and added the new ethX adapter (showd up as eth5 in ifconfig) – and that would actually give me network connectivity – but doing it your way also gives the Network Manager full control of the NIC / displays correctly in the GUI.
Thanks for sharing!
/Rune
Thank you! This did the trick!
Excellent post. Resolved my VM problem. Thanks.
I had the same issue go though different forums but cant fix it..
I follow a hit and trial ….
Clone the VM without LAN card .. remove from the edit setting while clonning..
then after clone i found no lan card in the edit setting and also verify from ifconfig -a
note the MAC address by adding new nic and change the one at the vi /etc/sysconfig/network-scripts/ifcfg-eth0 by the new MAC address.
same and assign new ip address from the SETUP and issue resolved…
cheersss…
Delete UUID y MAC from ifcfg-eth0 script
#rm โf /etc/udev/rules.d/70-persistent-net.rules
#vim /etc/sysconfig/network-scripts/ifcfg-eth0
#ip link set eth1 name eth0
# /etc/init.d/network restart