通过终端更改MAC地址

通过终端更改MAC地址

有没有办法通过终端更改 MAC 地址?当然有没有什么命令可以完成这项工作?

答案1

更改网卡上的 MAC 地址的最简单方法是:

sudo ifconfig eth0 down
sudo ifconfig eth0 hw ether  xx:xx:xx:xx:xx:xx
sudo ifconfig eth0 up

其中 xx:xx:xx:xx:xx:xx 代表 mac 地址

对于无线局域网

sudo ifconfig wlan0 down
sudo ifconfig wlan0 hw ether  xx:xx:xx:xx:xx:xx
sudo ifconfig wlan0 up

相关内容