Created
October 4, 2018 14:42
-
-
Save Sarverott/c9d67f566d302de1652071c95b31d784 to your computer and use it in GitHub Desktop.
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
#!/bin/bash | |
# CHANGE MAC ADDRESS | |
# ./mac-chg.sh {interface} {new mac} | |
# ~Sarverott | |
/etc/init.d/networking stop | |
ip link set $1 address $2 | |
/etc/init.d/networking start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment