Posted On March 31, 2019

ARP MAC to IP Resolution

kimconnect 0 comments
blog.KimConnect.com >> Codes , Networking >> ARP MAC to IP Resolution
If entry already exists on the ARP table:
arp -a | find "XX-XX-XX-XX-XX-XX"

If entry does not exist, and the IP address is known:
ping {ip-address}
arp -a {ip-address}

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Python: RegEx Module

It's been opinionated that a string operation is made complete only with RegEx. Hence, Python…

Resolve Error: (59) An unexpected network error occurred

Prerequisites:   Ensure the the target machine has PowerShell Remoting Enabled (as it's Disabled by…

PowerShell: Convert CSV Into HashTable

This is an illustration of a function to convert a set of CSV contents into…