How can I do an inverse ARP lookup in Windows and/or Linux? Say that I have the MAC address of wireless access point which is up and running in the network, but I forgot it's IP address?
|
|
The easiest way to do this is to ping the broadcast address (ping -b [broadcast address) on your subnet (often .255), and then dump your arp table (arp -a on Linux), and you should find the MAC of the machine, along with its IP. |
|||
|
|
|
From a bad, bad place, written by scraig84:
|
|||
|
|
|
arping2 has an example |
|||
|
|
|
Also you can use nmap this is utility for network discovery, in Ubuntu you can simply install it from command line: |
|||
|
|