Linux下怎么修改mac地址?我看到有好几种方法的,而且都不一样

2025-01-06 18:33:39
推荐回答(1个)
回答1:

先禁用网卡ifconfig eth0 down
再用ifconfig eth0 hw ether 新地址
这样就可以了
要想永久修改的话,在/etc/rc.d/rc.local里加上下面三句(/etc/init.d/network里面也可以)
ifconfig eth0 down
ifconfig eth0 hw ether 新地址
ifconfig eth0 up