Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

I'm using CentOS 6 in a virtual environment. When cloning a virtual version of CentOS, the old eth adapters are "removed" and replaced with new ones and net MAC addresses. However, the ifcfg-ethn files still exist. I am trying to figure out how to get CentOS to automatically rescan & recreate the network adapters / eth files, just like it did on install.

Otherwise I am left with the tedious process as described here: http://www.centos.org/docs/5/html/Installation_Guide-en-US/s1-s390info-addnetdevice.html

I know there is a quick way to do this in the GUI, but we are using a server so GUI does not apply in this case. Help?

Edit: @OldWolf suggested Kudzu, however Kudzu has been removed as of Centos 5 so I would rather avoid that. There is a procedure that Linux runs on initial install - can someone help me figure out what that is so I can manually trigger it?

share|improve this question

6 Answers

up vote 19 down vote accepted

With CentOS 6 everthing is handled by udev now. Go into /etc/udev/rules.d and delete the 70-persistent-net.rules file and reboot. If you open it berfore hand you will most likey see the original NIC MAC listed as eth0 and the new one as eth1.

Deleting the file forces the detection process to run again at boot with no baggage left over from the cloning process, namely the old NIC MAC address(es).

I have to do it with my CentOS 6 clones on VMware ESXi 4.1 all the time. It's a pain kudzu would just handle it in the past with previous versions.

You will also need to remove the MAC addresses from the NICs too, in /etc/sysconfig/network-scripts/ifcfg-eth0 etc.

share|improve this answer
1  
Sounded wonderful tracy, however it did not work as you described. The old ifcfg-eth0 file was still there, with the original MAC address etc instead of the correct new one. – Joshua Sep 8 '11 at 20:58
Sorry yes I had forgetten. You must also MANUALLY update the mac address in ifcfg-eth0 as well sorry. That will make it work. There might be an easier way but I have yet to find it... – Tracy Carlton Sep 8 '11 at 23:27
This was a good start. It seems like it could be possible to write a script that will automate the process - even the manual bits described - on bootup. The problem is activating the script only after the machine has been cloned / moved. Still no complete answer to this... – Joshua Feb 20 '12 at 21:32
FYI I marked this answer as the correct one, as it helps get it going. Admins still need to write a custom / complicated script for cloning automatically, or just manually do it each time. Bother. – Joshua Jun 21 '12 at 15:52
2  
Go into /etc/udev/rules.d and delete the 70-persistent-net.rules file and DO NOT reboot. Go into /etc/sysconfig/network-scripts/ifcfg-eth0 and manually update to the MAC of your new NIC card. Reboot and the network should come alive. – user151091 Aug 8 '12 at 14:44

Modifying files after clone would not work for my use-case, thus I solved the problem as follows.

You need to edit two files, removing the references to the Mac addresses in each:

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

/etc/udev/rules.d/70-Persist-net.rules

Now when you clone the VM and change the mac address networking will work as the Mac address never gets written to either file.

share|improve this answer

I create and delete so many CentOS 6 virtual machines I wrote some Bashfu to fix eth0 upon cloning in VirtualBox.

   [root@jp-xm-base ~]# cat fixeth0.sh
if grep -q eth1 /etc/udev/rules.d/70-persistent-net.rules; then
   sed -i '/eth0/d' /etc/udev/rules.d/70-persistent-net.rules;
   sed -i 's/eth1/eth0/g' /etc/udev/rules.d/70-persistent-net.rules;
   ETHERNET=`grep eth0 /etc/udev/rules.d/70-persistent-net.rules | awk -F"," '{print $4}' | awk -F"\"" '{print $2}'`;
   echo Ethernet Addr: $ETHERNET;
   sed -i 's/HWADDR=".*"/HWADDR="'$ETHERNET'"/' /etc/sysconfig/network-scripts/ifcfg-eth0;
   /sbin/start_udev
   /sbin/service network restart;
fi
share|improve this answer

If your only problem is the mac address, you can run something similar to

TEST=`ifconfig | grep eth | awk '{ print $5}'`; sed "s/HWADDR.*/HWADDR\=$TEST/g" ifcfg-eth0 > TMP; mv TMP ifcfg-eth0

To update the HWADDR entry.

Edit: Since it looks like the problem is an actual change in virtual hardware you can try the following. (untested and referenced from here )

edit /etc/sysconfig/hwconf and remove all reference to the previous NIC and rerun kudzu to see if it detects the new hardware. You may need to reboot.

share|improve this answer
I tried manually changing the MAC address on eth0 for example, but it still did not work. Subsequent attempts at "service network force-reload", "ifup eth0" etc. would always end in "Device eth0 does not seem to be present..." Help? – Joshua Sep 6 '11 at 21:07
What type of virtualization are you using and how did you clone the system? – OldWolf Sep 6 '11 at 21:20
VirtualBox, but I don't think the virtualization matters. This should be like shutting a physical box down, removing the existing network adapters, and adding different ones. – Joshua Sep 6 '11 at 21:24
@Josh Where are the ifcfg-* files you are editing as there are possibly three sets - check out /etc/sysconfig/network-scripts and /etc/sysconfig/networking/devices and /etc/sysconfig/networking/profiles/default (yeah, I know - it seems to be something to do with which tool/s you use to setup the adaptors). The first should be the ones that make the difference, but you may need to deal with the others too. – Linker3000 Sep 6 '11 at 21:26
1  
The reason I asked and that the virtualization type matters is that it determines what the cloning process looks like. A VMware clone on the same host would not change the virtual network hardware unless you told it to. In your case, the problem is not the mac address nor the cloning process, it's that you are changing the virtual hardware. – OldWolf Sep 6 '11 at 21:41
show 5 more comments

Delete the persistent rules file:

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

Edit ifcfg-eth0:

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

REMOVE the HWADDR line altogether (or change it to match your new NIC's MAC address).

Reboot your system:

reboot

If you change the NIC again, just repeat step #1 and # 3.

share|improve this answer
Do you really need to reboot? Why not just restart the network service? – vgoff Nov 19 '12 at 8:47
While this might be a useful answer to some people / cases, the goal of this was to script or automate the configuration of network adapters. From the original post: "I am trying to figure out how to get CentOS to automatically rescan & recreate the network adapters / eth files, just like it did on install." – Joshua Nov 19 '12 at 16:33
@vgoff yes, restarting the network service obviously works fine :) Perhaps he's referring to rebooting the network device itself, e.g. "ifup eth0" etc. – Joshua Nov 19 '12 at 16:34
That may be, but he says 'system' not 'device'. – vgoff Nov 19 '12 at 19:03

You can use this tool also (This is not a GUI tool, its TUI tool, Text-based User Interface)

[root@localhost ~]# system-config-network-tui

Type above command and press Enter

Then this screen will appear

enter image description here

Select Device configuration and press Enter

Then this screen will appear

enter image description here

Here eth0 refers /etc/sysconfig/network-scripts/ifcfg-eth0

Whatever the edit made in eth0 that will affect to ifcfg-eth0 file

share|improve this answer
While this might be a useful answer to some people / cases, the goal of this was to script or automate the configuration of network adapters, which cannot be done through a TUI/GUI. Read the original post: "I am trying to figure out how to get CentOS to automatically rescan & recreate the network adapters / eth files, just like it did on install." – Joshua Nov 19 '12 at 16:32
@Joshua sorry got it...+1 – max Nov 20 '12 at 13:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.