如何修改macbook的MAC地址

superxjhw發表於2018-07-26

修改命令

sudo ifconfig en0 ether xx:xx:xx:xx:xx:xx

檢視

ifconfig en0 | grep ether

隨機生產一個MAC地址

openssl rand -hex 6 | sed ‘s/(..)/1:/g; s/.$//’

電腦重啟後,MAC地址會恢復到之前,為了方便,可以使用指令碼或則安裝spoof-mac,每次電腦重啟後,會隨時生產一個MAC地址
執行命令

brew install spoof-mac
sudo brew services start spoof-mac

參考連結
https://www.online-tech-tips.com/computer-tips/how-to-change-mac-address/

相關文章