【筆記整理】VMWare CentOS 6 Clone 重設網卡MAC

摘要:VMWare CentOS 6 Clone 重設網卡MAC

方法一

1. 備份或刪除檔案:mv ifcfg-eth* ifcfg-eth*.bak

 

2. 編輯:vim /etc/udev/rules.d/7*-persistent-net.rules

將衝突的網卡資訊內容刪除或註解,然後重新啟動機器。

系統會偵測網卡,重新產生新的設定資訊。

 

方法二

1. 編輯ifcfg-eth*:vim ifcfg-eth*

 

2. 編輯:vim /etc/udev/rules.d/7*-persistent-net.rules

在『/etc/udev/rules.d/7*-persistent-net.rule』會看到舊有的設定資訊(eth0、eth1)與新的設定資訊(eth2、eth3)。

如果不想保留舊的設定資料,可以刪除或註釋掉,而將新的設定資料名稱改為eth0、eth1。

當然也可以不改,但就必須更改『/etc/sysconfig/network-scripts/ifcfg-eth0』和『ifcfg-eth1』的名稱。

但為了避免麻煩,個人建議還是更改會比較好。

 

3. 重啟服務:service network restart

 

4. 觀察:『ip a』 or 『ifconfig

 

參考來源

1. http://www.centos.org/forums/viewtopic.php?t=7684

2. http://alexcline.net/2011/11/15/reconfiguring-network-interfaces-in-centosrhel-systems-cloned-with-vcenter/