Sir Muffington Asked: 2020-03-05 14:32:59 +0800 CST2020-03-05 14:32:59 +0800 CST 2020-03-05 14:32:59 +0800 CST 如何仅使用文本编辑器更改 eth0 MAC 地址? 772 我正在运行 OpenWrt(=每个 SSH 的 Busybox),所以我的二进制文件数量是有限的。我想只使用 nano 之类的文本编辑器来更改我的 MAC 地址。 network-interface embedded 1 个回答 Voted Best Answer Dani Garcia 2020-03-06T00:49:22+08:002020-03-06T00:49:22+08:00 正如您在此处看到的,您应该在所需界面中添加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或重新启动设备。
正如您在此处看到的,您应该在所需界面中添加
macaddr
选项/etc/config/network
。例如:
之后,重新启动网络服务
/etc/init.d/network restart
或重新启动设备。