Skip to content

Instantly share code, notes, and snippets.

@nuga99
Last active August 19, 2019 02:42
Show Gist options
  • Save nuga99/15c70dea3ba5bf03309600f65579819e to your computer and use it in GitHub Desktop.
Save nuga99/15c70dea3ba5bf03309600f65579819e to your computer and use it in GitHub Desktop.
Change MAC Address
  1. Turn down the interface related to your PC/Laptop

sudo ip link set dev <interface> down

Example of <interface>: wlp4s0

  1. Change the MAC Address

sudo ip link set dev wlp4s0 address XX:XX:XX:XX:XX:XX

XX:XX:XX:XX:XX:XX --> is your MAC Address that you want to use.

  1. Turn up the interface again, with the new MAC Address sudo ip link set dev wlp4s0 up
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment