除了 ifconfig 之外还有其他应用程序可以更改 MAC 地址吗?

除了 ifconfig 之外还有其他应用程序可以更改 MAC 地址吗?

我必须更改 MAC 地址才能通过 DHCP 获取 IP 租约。但几乎没有安装程序 CD 包含 ifconfig 和 dhclient。

ifconfig eth0 down
ifconfig eth0 hw ether 00:22:15:C0:27:23
ifconfig eth0 up
dhclient eth0

有没有办法更改 Debian 或 Ubuntu 安装程序 CD 中的 MAC 地址?

答案1

iproute2是首选工具:

ip link set dev eth0 address 00:22:15:C0:27:23
dhcpcd eth0

答案2

我使用过的最简单的更改 MAC 地址的工具是 macchanger。它位于 Gentoo、Ubuntu 和其他常见存储库中。

例子

macchanger --mac 00:11:22:33:44:55 eth0

您甚至可以使用 --random 获取随机 MAC 地址

相关内容