我目前正在使用 ubuntu 13.04 和 windows 7。但我想更改我的电脑的 MAC 地址。有什么方法可以更改它吗?
答案1
在命令行(终端)中运行:
sudo ifconfig eth0 down
sudo ifconfig eth0 hw ether 00:11:22:33:44:55
sudo ifconfig eth0 up
这对于当前用户的会话来说已经足够了。但是,为了使更改持久化,您还必须编辑/etc/network/interfaces
并创建或修改接口的条目。例如:
iface eth0 inet dhcp
hwaddress ether 08:00:00:00:00:01
来源:http://blog.sleeplessbeastie.eu/2013/01/11/how-to-change-the-mac-address-of-an-ethernet-interface/
答案2
您可以安装麦克查格
sudo apt-get install macchanger
macchanger --mac=01:23:45:67:89:AB eth1
答案3
在 Ubuntu 中,您可以在网络设置中克隆 Mac 地址。
单击顶部栏中的网络图标并选择Edit connections
。选择当前网络并点击编辑。在以太网选项卡中,您应该会看到实际设备 MAC 和一个用于输入要克隆的 MAC 的字段。