码迷,mamicode.com
首页 > 系统相关 > 详细

vmware克隆主机不能启动网卡问题

时间:2018-08-26 01:15:33      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:配置文件   WAD   too   网卡   ESS   ini   eth0   mes   restart   

VMvare克隆虚拟机导致网络不能使用:
例如报错:bringing up interface eth0: device eth1 has different mac address
例如报错(执行service network restart时):device eth0 does not seem to be present, delaying initialization.
# mkdir mytest; cd mytest
# ln -s /etc/udev/rules.d/70-persistent-net.rules rules
# ln -s /etc/sysconfig/network-scripts/ net
# echo ‘‘ > rules
# start_udev
# vi rules //将 NAME="eth1" 改为 NAME="eth0"
# cd net; vi ifcfg-eth0 //删除 HWADDR , 多个网卡 cp ifcfg-eth0 ifcfg-eth1 ,每个网卡都有一个配置文件,ifup、ifdown等命令依赖ifcfg-ethX配置文件
ifcfg-eth0 对应 DEVICE=eth0 ifcfg-eth1 对应 DEVICE=eth1
# dmesg | grep eth //搜索驱动
# ethtool -i e1000 //查看驱动
# modprobe -r e1000 # rmmod e1000 //网卡驱动卸载,让修改后的网卡名生效
# modprobe e1000 //重新加载网卡驱动,让修改后的网卡名生效

vmware克隆主机不能启动网卡问题

标签:配置文件   WAD   too   网卡   ESS   ini   eth0   mes   restart   

原文地址:http://blog.51cto.com/12555197/2164355

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!