linux下修改MAC地址方法

在/etc/rc.d/rc.local里加上这三句(也可以在/etc/init.d/network里加下面三行)
 
  ifconfig eth0 down
 
  ifconfig eth0 hw ether 1234567890ab
 
  ifconfig eht0 up
 
原文地址:https://www.cnblogs.com/chunk998/p/5258315.html