Link to home
Start Free TrialLog in
Avatar of djanoian
djanoian

asked on

I only have the ip address, is it possible to find mac address from the ip address?

I wanted to know if it is possible to find the MAC address information if I only have IP address available.
ASKER CERTIFIED SOLUTION
Avatar of bkrontz
bkrontz

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of keamo
keamo

If you are on a windows box, and you are on the same subnet as the device you are trying to determine the mac of, you can ping the IP, then type "arp -a" to see what the mac is.
That's pretty cool Keamo! :)
Also, if both devices are connected to a cisco switch, you can type "show arp | include x.x.x.x" to determine what the mac is.  You might have to ping the device first from the switch to populate the arp table the run the "show arp | include x.x.x.x"
I should have premised that the "show arp | include x.x.x.x" be ran from within the cisco switch.
If you're on the same physical subnet (no routers or switches separating your machine from the target), ping the address, then type:

    arp

The ping will cause an arp request to be broadcast, which the target IP address will respond to (usually, unless it's configured not to). Your computer caches arp responses and the arp command displays the contents of the cache.

The cache exists to reduce network broadcast traffic. Entries in the cache have a lifetime after which they're purged; the default lifetime varies and is configurable.