首先必须关闭网卡eth0,否则会报告系统忙,无法更改。
命令是: ifconfig eth0 down ifconfig eth0 hw ether 00:AA:BB:CC:DD:EE ifconfig eht0 up 网卡的MAC地址更改就完成了。 如果想下次启动的时候,保持原来的设置,可以在/etc/rc.d/rc.sysinit文件中加入命令: ifconfig eth0 down ifconfig eth0 hw ether 00:AA:BB:CC:DD:EE ifconfig eth0 up 这个脚本运行在network之前,所以MAC跟IP就是对应的了。
上弦月 于 2006-03-29 23:37:20发表:
不错的方法~