本文轉載自http://www.169it.com/article/14360294838474691537.html
#ifconfig -a
eth0 Link encap:Ethernet HWaddr 00:e4:56:2E:D8:20
00:e4:56:2E:D8:20即是你的MAC地址。
linux/Centos下以root權限臨時修改MAC地址:
1)閉網卡設備
/sbin/ifconfig eth0 down
2)修改MAC地址
/sbin/ifconfig eth0 hw ether MAC地址
3)重啟網卡
/sbin/ifconfig eth0 up
4)查看修改是否生效:
ifconfig eth0 | grep HWaddr
注意:上述修改MAC地址只是暫時的,系統重啟后,系統會恢復原物理MAC地址。
Linux/Centos下如何永久修改網卡MAC地址
網上有很多關於linux下修改MAC地址的方法,經過測試,最終解決方法如下:
誤區一:
#ifconfig eth0 down /*禁掉eth0網卡,這里以eth0網卡為例*/
#ifconfig eth0 hw ether 00:AA:BB:CC:DD:EE /*修改eth0網卡的MAC地址*/
#ifconfig eth0 up /*重新啟動eth0網卡*/
然后重新啟動主機。
結論:按照這種方法修改MAC地址,重新啟動主機系統后,MAC地址會自動還原。
誤區二:
#ifconfig eth0 down
#cd /etc/sysconfig/network-scripts
#vi ifcfg-eth0
修改其中的"HWADDR=xx:xx:xx:xx:xx:xx"
#ifconfig eth0 up
#service network start
結論:按照這種方法修改MAC地址后將無法啟用網絡,會出現如下提示:
“Bringing up interface eth0: Device eth0 has different MAC address than expected,ignoring.”
在linux/Centos環境下將修改后的MAC地址永久保存的正確的步驟如下:
#ifconfig eth0 down
#cd /etc/sysconfig/network-scripts
#vi ifcfg-eth0
修改其中的"HWADDR=xx:xx:xx:xx:xx:xx"為"MACADDR=xx:xx:xx:xx:xx:xx"
#ifconfig eth0 up
#service network start