临时修改
方法一
1 2 3 4
| sudo apt update & sudo apt install net-tools sudo ifconfig eth0 down sudo ifconfig eth0 hw ether AA:BB:CC:DD:EE:FF sudo ifconfig eth0 up
|
方法二
1 2 3
| sudo ip link set dev eth0 down sudo ip link set dev eth0 address AA:BB:CC:DD:EE:FF sudo ip link set dev eth0 up
|
永久修改
注意: 永久修改需要停止NetworkManager服务,此服务可能导致修改不生效
1 2
| sudo systemctl stop NetworkManager.service sudo systemctl disable NetworkManager.service
|
方法一
编辑`/etc/init.d/rc.local``文件,在此配置文件最后追加临时修改网卡MAC命令
1 2 3 4
| sudo ifconfig eth0 down sudo ifconfig eth0 hw ether AA:BB:CC:DD:EE:FF sudo ifconfig eth0 up
|
方法二
编辑/etc/network/interfaces
文件,在此文件后追加
1 2 3 4 5 6 7 8
| auto eth0 iface eth0 inet static address 192.168.1.2 netmask 255.255.255.0 gateway 192.168.1.1 hwaddress ether AA:BB:CC:DD:EE:FF dns-nameservers 223.5.5.5 dns-search .com
|
修改完成需要重启网络服务使配置生效
1 2 3 4
| sudo systemctl restart networking.service
sudo reboot
|