I am using vmware workstation to create virtual network. Many of the virtual machines are using 3-4 network interfaces. I also wanted to put ubuntu 9.10 OS in two different places. Hence I cloned ubuntu OS. After cloning network interface number in the new machine is starting from eth5. Is there any way to reset so that network interface number starts from eth0?
Asked
Active
Viewed 145 times
1 Answers
1
You need to edit your /etc/udev/rules.d/70-persistent-net.rules
file which ties the MAC address of your NICs to the interface names.
The mappings from your original VM will carry over to the new VM which is why it thinks eth0-4 are already in use.

Mark Riddell
- 1,143
- 1
- 7
- 11
-
It works. Thanks for the answer. I deleted all the entries in the said file and restarted the system. – Naveen H Dec 09 '16 at 08:41