原文地址:https://www.cnblogs.com/gracejiang/p/6109085.html 一、問題描述 OS:centos 原因是拷貝虛擬機造成的。 使用vmworkstation打開虛擬機的時候,要選擇copy而非move。 二、解決描述 網路上解決步驟各異,其實就一句話。只要 ...
原文地址:https://www.cnblogs.com/gracejiang/p/6109085.html
一、問題描述
OS:centos
原因是拷貝虛擬機造成的。
使用vmworkstation打開虛擬機的時候,要選擇copy而非move。
二、解決描述
網路上解決步驟各異,其實就一句話。只要保證vmwrare virtual machine的.vmx配置文件、ifconfig –a、/etc/sysconfig/network-scripts/ifcfg-eth0、/etc/udev/rules.d/70-persistent-net.rules,所使用的網卡設備和MAC地址一致即可。
三、具體操作
1) 確認vmx配置文件的mac地址,vmx文件在linux安裝所在的目錄,ethernet0和eth0是乙太網的意思
ethernet0.generatedAddress = "00:0c:29:f3:fe:4b"
2) ifconfig –a 確認當前網卡和mac地址
[root@Grace Desktop]# ifconfig -a eth1 Link encap:Ethernet HWaddr 00:0C:29:F3:FE:4B BROADCAST MULTICAST MTU:1500 Metric:1 RX packets:0 errors:0 dropped:0 overruns:0 frame:0 TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:0 (0.0 b) TX bytes:0 (0.0 b) Interrupt:19 Base address:0x2024 lo Link encap:Local Loopback ………………………………
3) 重命名/etc/sysconfig/network-scripts/ifcfg-eth0為ifcfg-eth0
[root@Grace Desktop]# cd /etc/sysconfig/network-scripts [root@Grace network-scripts]# mv ifcfg-eth0 ifcfg-eth1 vim /etc/sysconfig/network-scripts/ifcfg-eth1 DEVICE="eth1" BOOTPROTO="dhcp" HWADDR="00:0C:29:F3:FE:4B" …………
4) 修改vim /etc/udev/rules.d/70-persistent-net.rules
註釋掉eth0的記錄,打開eth1的記錄
vim /etc/udev/rules.d/70-persistent-net.rules
# PCI device 0x1022:0x2000 (vmxnet) (custom name provided by external tool) #SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:0C:29:F3:FE:4B", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0" # PCI device 0x1022:0x2000 (vmxnet) SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:0c:29:f3:fe:4b", ATTR{type}=="1", KERNEL=="eth*", NAME="eth1"
5) 重啟網路服務
會讀取剛纔修改過的配置文件,如果配置文件不生效的話,使用source命令使得配置文件生效即可。
service network restart