8
在OS X Yosemite中更改MAC地址
我通常使用以下命令更改我的MAC地址: # Get a New MAC Address openssl rand -hex 6 | sed 's/\(..\)/\1:/g; s/.$//' # Changing the MAC Address sudo ifconfig en0 ether d4:33:a3:ed:f2:12 当我进入: ifconfig en0 |grep ether 我仍然得到旧的MAC地址:( - 谁可以提供帮助?我希望有一个脚本或系统在系统启动时自动更改它。