修改命令 查看 隨機生產一個MAC地址 電腦重啟後,MAC地址會恢復到之前,為了方便,可以使用腳本或則安裝spoof mac,每次電腦重啟後,會隨時生產一個MAC地址 執行命令 參考鏈接 https://www.online tech tips.com/computer tips/how to ch ...
修改命令
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/