Computer NetworksNETWORKS

How to change MAC address on LINUX

This video demonstrates how to change/spoof MAC address on UBUNTU 16.04 LTS using macchanger

Steps:
1) $sudo apt-get install wicd

2) $sudo apt-get install macchanger

3) $sudo apt-get remove network-manager

4) Create a file
$sudo nano /etc/init.d/macchanger
#!/bin/bash
sudo ifconfig enp0s3 down
sudo macchanger -e enp0s3
sudo ifconfig enp0s3 up
exit 0;

5) Change the permissions on the newly created file
$sudo chmod +x /etc/init.d/macchanger

6) Include macchanger file in the start-up process
$sudo update-rc.d macchanger defaults

source

mac address

Alice AUSTIN

Alice AUSTIN is studying Cisco Systems Engineering. He has passion with both hardware and software and writes articles and reviews for many IT websites.

Leave a Reply

Your email address will not be published. Required fields are marked *