Spoof a chromebook's MAC address
How can I temporarily change a chromebook's MAC address? I know this can be done on Windows with certain tools, and Android with root privileges, but can it be done on Chrome OS?
2 Answers
Your chromebook must be in developer mode for these commands to work.
Open the Crosh Shell.
If your command line says
croshenter the commandshell.Enter
sudo ifconfig eth0 downto shut down the internet connection.Enter
sudo ifconfig eth0 hw ether 00:11:22:33:44:55to change the MAC address to 00:11:22:33:44:55 (replace this with the new desired MAC).Enter
sudo ifconfig eth0 upto turn the internet back on.
For wireless connections, replace all instances of eth0 with wlan0.
Note: Once you reboot your chromebook, the original MAC will be restored.
1If your chromebook or Chrome os is mananged by an Admin, you can not change your MAC address unless your the admin,or ask the admin to go into Dev mode. Because its blocked.