Cambiando la Mac en Kali Linux
Cambiando la Mac en Kali Linux
Para cambiar transitoriamente nuestra Mac solo necesitamos unos pocos pasos, partiendo por darle un vistaso a nuestra verdadera Mac:
root@kali:~# ifconfig eth0
eth0 Link encap:Ethernet HWaddr e8:03:9a:04:8e:07
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
Después detenemos Networking para modificar la Mac:
root@kali:~# /etc/init.d/networking stop
[ ok ] Stopping networking (via systemctl): networking.service.
Procedemos a cambiar la Mac y comprobar el cambio:
root@kali:~# ip link set eth0 address 02:01:03:07:04:08
root@kali:~# ifconfig eth0
eth0 Link encap:Ethernet HWaddr 02:01:03:07:04:08
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
Por último, reiniciamos Networking y vemos que el cambio esta operativo para los ejercicios prácticos que queramos hacer:
root@kali:~# /etc/init.d/networking start
[ ok ] Starting networking (via systemctl): networking.service.
root@kali:~# ifconfig eth0
eth0 Link encap:Ethernet HWaddr 02:01:03:07:04:08
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
Para recuperar nuestra Mac original simplemente reiniciamos nuestro pc.