Last active
August 29, 2015 13:56
-
-
Save DouglasSherk/8882451 to your computer and use it in GitHub Desktop.
MAC Address Randomizer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/bash | |
# You might want to note your old MAC address here. Use this to get it: | |
# ifconfig en0 | grep ether | |
MAC_ADDRESS=`openssl rand -hex 6 | sed 's/\(..\)/\1:/g; s/.$//'` | |
echo "Setting MAC address..." | |
sudo ifconfig en0 ether $MAC_ADDRESS | |
ifconfig en0 | grep ether |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment