Here's how it works:
Software Environment: VMware Workstation 10.0 Virtual Machine CentOS 6.5 physical Machine Windows7
1, first enter the original system, use the command to view the network card information
#ifconfig
Default system boot does not load network card, see eth0 information
650) this.width=650; "src=" Http://www.linuxidc.com/upload/2015_03/15031418132128.jpg "alt=" VMware Virtual machine cloning CentOS 6.5 After the NIC modification method "style=" border:0px; "/>
Run command
# Vi/etc/sysconfig/network-scripts/ifcfg-eth0
View the MAC address of the ETH0 network card
Device=eth0
Hwaddr=00:0c:29:16:f4:f0
Type=ethernet
uuid=0b1f4512-cefa-4a9e-ae85-adb2ac2a9903
Onboot=no
Nm_controlled=yes
Bootproto=dhcp
Modifying this onboot=yes setting will load the NIC information
Edit complete, Esc key exit, enter: Wq save exit.
2, the same steps into the clone system, check the network card address, found the same MAC address
Perform
#/etc/init.d/network Restart
Restart Network Service
Hint failed failed
3. Edit the network card device
# Vi/etc/udev/rules.d/70-persistent-net.rules
# PCI device0x1022:0x2000 (pcnet32)
subsystem== "NET", action== "Add", drivers== "? *", attr{address}== "00:0c:29:16:f4:f0", attr{type}== "1", kernel== "eth*", name= "eth0"
# PCI device0x1022:0x2000 (pcnet32)
subsystem== "net", action== "Add", drivers== "? *", attr{ address}== "00:0c:29:52:45:97", attr{type}== "1", kernel== "eth*", name= "eth1"
Before adding # comment out the first network card, change the 2nd NIC to eth0, record the MAC address.
# PCI device0x1022:0x2000 (Pcnet32)
#SUBSYSTEM = = "NET", action== "Add", drivers== "? *", attr{address}== "00:0c:29:16:f4:f0", attr{type}== "1", kernel== "eth* ", name=" eth0 "
# PCI device0x1022:0x2000 (Pcnet32)
subsystem== "NET", action== "Add", drivers== "? *", attr{address}== "00:0c:29:52:45:97", attr{type}== "1", kernel== "eth*" , name= "Eth0"
Edit complete, Esc key exit, enter: Wq save exit.
4. Implementation
#/etc/init.d/network restart
Restart Network Service
Or the hint failed,
#reboot
The problem with rebooting the system is solved.
5. After rebooting the system, run the command
1 #vi/etc/sysconfig/network-scripts/ifcfg-eth0
Modify the MAC Address "00:0c:29:16:f4:f0" to "00:0c:29:52:45:97" to save the exit.
Perform
1 #/etc/init.d/network Restart
Restart Network Service
There is no hint of failure now.
This article is from the "Operation and maintenance of the Road" blog, please be sure to keep this source http://bin666.blog.51cto.com/12745149/1918740
VMware centos6.5 clone NIC Configuration