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

Hyper-V Dependency on Docker’s Networking Bridge Drivers

Background: Some naive systems engineer (yours truly) has provisioned a buck load of Hyper-V servers…

PowerShell: Creating Scheduled Tasks on Remote Servers

This script is deprecated. Here is a better iteration. # scheduledTasksRemote_V0.0.2.ps1# Purpose: to add a…

Daily database backup.bat

@echo offif %USERNAME%==Administrator echo you are administratorset RAREXEC="C:\Program Files\WinRAR\WinRar.exe"set RAREXEC="C:\Program Files\WinRAR\Rar.exe"set LOGFILE="c:\sys\backup.log"SET ARG1=%1IF EXIST D:\…