Linux 系统修改网卡MAC地址
Modifying MAC addresses of network adapters in Linux systems
————————————————————
1. Linux 修改MAC地址
## 禁用eth0网卡
ifconfig eth0 down
## 修改MAC地址为 00:LE:EE:00:00:16
ifconfig eth0 hw ether 00:LE:EE:00:00:16
## 启用eth0网卡
ifconfig eth0 down
2. 永久(软)修改
## 编辑文件
vim /etc/init.d/rc.local