Skip to content

Instantly share code, notes, and snippets.

@njoerd114
Created July 11, 2018 06:25
Show Gist options
  • Save njoerd114/c30c38c1aa2834c5360ad684d6791f54 to your computer and use it in GitHub Desktop.
Save njoerd114/c30c38c1aa2834c5360ad684d6791f54 to your computer and use it in GitHub Desktop.
change mac address of given interface on mac
changemac() {
if [ -z "$1" ]; then echo "please provide network interface"; else sudo ifconfig $1 ether $(openssl rand -hex 6 | sed 's/\(..\)/\1:/g; s/.$//') &&ifconfig $1; fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment