To understand how ARP discovery works, we will start by using Scapy to craft custom packets that will allow us to identify hosts on the LAN using ARP:
- To begin using Scapy in Kali Linux, enter the scapy command from the Terminal. You can then use the display() function to see the default configurations for any ARP object created in Scapy in the following manner:
- Notice that both the IP and MAC source addresses are automatically configured to the values associated with the host on which Scapy is being run. Except in the case that you are spoofing an alternate source address, these values will never have to be changed ...