Altere o endereço MAC via Terminal [duplicado]

6

Existe alguma maneira de alterar o endereço MAC via Terminal? E, claro, algum comando para este trabalho?

    
por pyprism 26.03.2014 / 13:56

1 resposta

10

A maneira mais fácil de alterar o endereço MAC é:

sudo ifconfig eth0 down
sudo ifconfig eth0 hw ether  xx:xx:xx:xx:xx:xx
sudo ifconfig eth0 up

Onde xx: xx: xx: xx: xx: xx representa o endereço mac

Para wlan

sudo ifconfig wlan0 down
sudo ifconfig wlan0 hw ether  xx:xx:xx:xx:xx:xx
sudo ifconfig wlan0 up
    
por 2707974 26.03.2014 / 13:58