Is there any way to change MAC address via Terminal ?And of course any command for this job ?
Asked
Active
Viewed 4.4k times
1 Answers
13
Easiest way to change mac address on nic is:
sudo ifconfig eth0 down
sudo ifconfig eth0 hw ether xx:xx:xx:xx:xx:xx
sudo ifconfig eth0 up
Where xx:xx:xx:xx:xx:xx represent mac address
For wlan
sudo ifconfig wlan0 down
sudo ifconfig wlan0 hw ether xx:xx:xx:xx:xx:xx
sudo ifconfig wlan0 up
2707974
- 10,758