Skip to content

Instantly share code, notes, and snippets.

@faizal2007
Created December 1, 2014 20:03
Show Gist options
  • Save faizal2007/ac65026299f5c3d392f7 to your computer and use it in GitHub Desktop.
Save faizal2007/ac65026299f5c3d392f7 to your computer and use it in GitHub Desktop.
Create mac address
#!/usr/bin/perl -w
##
#
# Generate mac address
#
##
for ($i=0;$i<5;$i++){$m[$i]=int(rand(256));} printf "02:%X:%X:%X:%X:%X\n",@m;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment