It’s almost effortless to use vCenter Server to create customized clones of virtual machines. VMware vSphere is the only virtualization platform that has fully integrated Linux guest customization — a handy wizard allows setting unique attributes of the guest such as name, static IP address, timezone, and DNS settings. That means the your new VM is deployed and ready for action without additional configuration.
After cloning a Linux VM, you might find your network interface is no longer named eth0, taking on eth1 instead. Fortunately, this doesn’t cause any functional problems with the guest and can be left as-is. However, if you are not satisfied with this scenario, read on…
SLES for VMware, which is SLES 11 SP1, uses udev to provide persistency to various devices. While this model is regarded by most as a big step forward from the semi-random device name assignments of the past, one side-effect is that a new MAC address — pertinent when cloning VMs — is regarded as an additional interface and not a replacement. Thus, a newly-cloned SLES VM powers up with eth1 as the NIC name, not eth0.
Fortunately, this situation is easy to fix. Simply log into the VM and edit:
/etc/udev/rules.d/70-persistent-net.rules
Which should look something like this:
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:50:56:97:00:35", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:50:56:97:00:38", ATTR{type}=="1", KERNEL=="eth*", NAME="eth1"
In the above example, the first line contains the MAC address of the original template VM and the second line is the new NIC/MAC found in the clone.
There are two ways to fix this issue:
- Completely delete the file — it will be created again on boot and the first NIC will be assigned eth0, OR
- Delete the line containing the old entry that references eth0 and change “eth1” to “eth0” in the remaining line.
Note: if a static IP has been configured, go to /etc/sysconfig/network/ and update the files ifcfg-eth0 and route accordingly.
Reboot the VM and verify that the NIC(s) are named to your liking.
No real breaking news here, but given the newly available SLES for VMware, some evaluators may run into this situation.
Works for older Ubuntu and Debian as well, though Debian called the file z25_persistent-net.rules.
Newer Debian and Ubuntu will detect VMWare MAC addresses and not write them to the file in the first place to avoid this problem.
Good to know, thanks.
Thx, very easy solution.
Thanks, this helped a lot.
Thx. Your tip saved my neck. Greetings from Brasil.
Thanks, that helped me building my packer template. I just remove the persisted value in my packer build, so the Vagrant boxes can use eth0 in our vCloud.