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

PowerShell: Update Local Windows Machine

This script is meant to be ran on a local computer. To update remote machines,…

PowerShell: Adding a User to Local Groups

Adding User(s) to Local Groups # addUserToLocalGroup.ps1 # Version 0.02 $computernames=@( 'SERVER0001', 'SERVER0002' ) $accountsToAdd='domain\user1','domain\user2'…

Hyper-V Servers Report

# hyperVServersReport.ps1 # Version: 0.0.1 # Description: # This script will scan for Hyper-V Hosts…