树莓派修改MAC地址

树莓派

修改mac地址

在/etc/rc.local增加

sudo ifconfig eth0 down

sudo ifconfig eth0 hw ether 00:AA:BB:CC:DD:EE (你的MAC地址)

sudo ifconfig eth0 up

或者修改sudo nano /etc/network/interfaces

如下所示:

face eth0 inet static

pre-up ifconfig eth0 hw ether xx:xx:xx:xx:xx:xx(要改成的MAC)

address 192.168.1.10

netmask 255.255.255.0

gateway 192.168.1.1

重启网卡

sudo /etc/init.d/networking restart

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注