分类: LINUX
2008-06-13 14:28:37
一、在Linux下修改MAC地址方法如下:
方法1:在文件“/etc/rc.local”中加入
ifconfig eth0 hw ether 00:11:22:33:44:55
方法2:在文件“/etc/rc.d/rc.sysinit”加入
ifconfig eth0 down
ifconfig eth0 hw ether 00:11:22:33:44:55
ifconfig eth0 up
方法3:
/sbin/ifconfig eth0 down
/sbin/ifconfig eth0 hw ether 00:11:22:33:44:55
/sbin/ifconfig eth0 up
其中,00:11:22:33:44:55是新的MAC地址。