如何仅使用文本编辑器更改 eth0 MAC 地址?

如何仅使用文本编辑器更改 eth0 MAC 地址?

我正在运行 OpenWrt(=Busybox per SSH),因此我的二进制文件数量有限。我想仅使用 nano 等文本编辑器更改我的 MAC 地址。

答案1

如你看到的这里,您应该在所需的界面中macaddr添加该选项。/etc/config/network

例如:

config interface 'lan'
     option ifname 'eth0.1'
     option proto 'dhcp'
     option macaddr 'xx:xx:xx:xx:xx:xx'

之后,重新启动网络服务/etc/init.d/network restart或重新启动设备。

相关内容