Skip to content

Instantly share code, notes, and snippets.

@DouglasSherk
Last active August 29, 2015 13:56
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save DouglasSherk/8882451 to your computer and use it in GitHub Desktop.
Save DouglasSherk/8882451 to your computer and use it in GitHub Desktop.
MAC Address Randomizer
#!/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