安装好CentOS6的系统后,纯净的系统多克隆几份出来方便后期做试验;由于克隆后mac地址会重新生成一个,实际起作用的是eth1,eth0是克隆过来的。克隆系统会重新生成一个mac地址,因为系统会在eth0加1变成eth1.
解决的办法有两种:
法一:
1.root登录,cp /etc/udev/rules.d/70-persistent-net.rules /etc/udev/rules.d/70-persistent-net.rules.bak
2.vi /etc/udev/rules.d/70-persistent-net.rules,删除所有内容
3.reboot
4.vi /etc/udev/rules.d/70-persistent-net.rules,修改eth1为eth0,记录下mac地址
5.点击桌面system-perference-network connctions,删除auto-eth0,修改system eth0名称为eth0
6.vi /etc/sysconfig/network-scripts/ifcfg-eth0,修改其中的mac地址为步骤4中记录的地址
7.重启,检查配置
法二:
1..root登录,cp /etc/udev/rules.d/70-persistent-net.rules /etc/udev/rules.d/70-persistent-net.rules.bak
2.vi /etc/udev/rules.d/70-persistent-net.rules,删除eth0有关内容,修改eth1为eth0
3.记录下这个新eth0的mac地址
4.vi /etc/sysconfig/network-scripts/ifcfg-eth0,修改其中的mac地址为步骤2中记录的地址
5.重启,检查配置
另外:
虚拟机的网络设置中选择:
Bridged: Connected directly to the physical network
Replicate physical network connection state打上勾
这样就可以跟物理机使用同一个网段的IP了
CentOS7 vmware虚拟机克隆网络问题:
其实CentOS7在这个问题上处理更加简单,只要把关于网卡的配置文件中的HWADDR和UUID两行删除即可
本文出自 “小小运维” 博客,请务必保留此出处http://wangyongchun.blog.51cto.com/10421552/1768404
原文地址:http://wangyongchun.blog.51cto.com/10421552/1768404