The Media Access Control (MAC) address is a local but unique physical address assigned to the network interface controller (NIC) for local communication between multiple devices. These addresses are usually 12 digit (6 bytes or 48bits) long hex numbers. It is represented in multiple formats, as shown below:
MAC address formats |
---|
AA:BB:CC:DD:EE:FF |
AA-BB-CC-DD-EE-FF |
AAB.BCC.DDE.EFF |
Here are some of the reasons for changing the MAC address.
Caution: Changing the MAC address can cause a network error in the router, i.e., an authentication error.
Now, let’s change the MAC address of the
You have to run these commands on Kali Linux terminal (as a root user).
// MAC address changing
1. ifconfig (Check your interface name)
2. ifconfig < interface name > down
3. ifconfig < interface name > hw ether < New MAC address >
4. ifconfig < interface name > up
5. ifconfig (Check new MAC address)
You can follow this picture as well, but it requires some previous knowledge about terminals/command-line.