Skip to content

Instantly share code, notes, and snippets.

@vazgen6
Last active May 8, 2020 14:34
Show Gist options
  • Save vazgen6/322f97802de0dbe012fcd976b53b675b to your computer and use it in GitHub Desktop.
Save vazgen6/322f97802de0dbe012fcd976b53b675b to your computer and use it in GitHub Desktop.
Changes mac address of given network interface name
#!/bin/bash
interface=$1
if [ -z "$interface" ]
then
echo "Please pass interface name"
echo "Example: ./change-mac wlan0"
exit
fi
sudo ifconfig $interface down
sudo macchanger -r $interface
sudo ifconfig $interface up
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment