在linux中,修改MAC地址
# ifdown eth0
# ifconfig eth0 hw ether 12:34:56:78:90:12
(修改的MAC地址跟原来的地址不同)
# ifup eth0 (修改成功)
后,用# ifconfig 查看,MAC地址改变了,但之后输入#service network restart 或ifdown eth0命令时,会出现如下错语信息:
Device eth0 has MAC address 12:34:56:78:90:12, instead of configured address 00:0C:29:CA:B5:7D. Ignoring.
所 以此时无法通过修改/etc/sysconfig/network-scripts/ifcfg-eth0文件来改变IP地址等相关信息,因为 service network restart无法使其生效,不过用ifconfig eth0可以临时改变其IP地址,重启后打回原型。
现在解决
“Device eth0 has MAC address 12:34:56:78:90:12, instead of configured address 00:0C:29:CA:B5:7D. Ignoring.”的问题:
出 现此问题的其原因是配置文件:/etc/sysconfig/network-scripts/ifcfg-eth0里头的 MACADDR=00:0C:29:CA:B5:7D地址与12:34:56:78:90:12不同而造成,可以将 MACADDR=00:0C:29:CA:B5:7D修改为12:34:56:78:90:12,则错误就消除了,可以用#service network restart 了,但重启后,MAC地址又打回原型,解决办法是:
在/etc/rc.d/rc.local里加上这三句
ifconfig eth0 down
ifconfig eth0 hw ether 12:34:56:78:90:12
ifconfig eth0 up
同时将还要将/etc/sysconfig/network-scripts/ifcfg-eth0里头的MACADDR=00:0C:29:CA:B5:7D地址改为12:34:56:78:90:12
这样重新reboot后就不怕MAC复原,并且#service network restart也不会出现错语了。
参考网址:
http://blog.chinaunix.net/u1/48373/showart_2072683.html
http://bbs.chinaunix.net/viewthread.php?tid=1488738&extra=page%253D1&page=1
http://fangmenghu.blog.163.com/blog/static/1245820200910993138196/
http://linux.chinaunix.net/techdoc/install/2008/06/05/1009396.shtml
来源: <http://blog.163.com/[email protected]/blog/static/21424296201021622239765/>