我是 Linux 平台的新手。我需要永久更改 mac 地址。我尝试了各种方法。在 VMware 上一切都正常。但在我的 Ubuntu 系统上却不行。有人尝试过更改并成功吗?
答案1
打开终端并:
sudo ifconfig eth0 down
sudo ifconfig eth0 hw ether 00:00:00:00:00:00
sudo ifconfig eth0 up
其中 eth0 是您的网络接口,00:00:00:00:00:00 是您想要的 MAC 地址。
如果您想在重新启动时保存此更改,您必须将其添加到 /etc/network/interfaces
iface eth0 inet dhcp
hwaddress ether 08:00:00:00:00:00