Skip to content

Instantly share code, notes, and snippets.

@lapnd
Created May 11, 2016 06:50
Show Gist options
  • Save lapnd/86461d83c13b29529aeb1184b2337736 to your computer and use it in GitHub Desktop.
Save lapnd/86461d83c13b29529aeb1184b2337736 to your computer and use it in GitHub Desktop.
Bash Random MAC Address Generator
function generate_mac () {
hexchars="0123456789abcdef"
echo "24:df:86$(
for i in {1..6}; do
echo -n ${hexchars:$(( $RANDOM % 16 )):1}
done | sed -e 's/\(..\)/:\1/g'
)"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment