Skip to content

Instantly share code, notes, and snippets.

View thegooddoctorgonzo's full-sized avatar

Steve Landry thegooddoctorgonzo

View GitHub Profile
@thegooddoctorgonzo
thegooddoctorgonzo / arp-to-ip-lookup-powershell.ps1
Last active August 8, 2017 13:57 — forked from pierew/arp-to-ip-lookup-powershell.ps1
ARP to IP lookup PowerShell script
# Gets the IP address of a computer via the MAC address. This will only work on LAN
# segments. By default we'll scan the ARP table, but then defer to an IP scan to
# as needed.
#
# Usage: $returnIpAddress = GetIPFromMAC "12-43-de-52-a9-99" "192.168."
# Pass in the mac address with dashes (-) as the first parameter
# Pass in an IP address with the last number missing, be sure to include the trailing "."
# Be sure to check the value if $returnIpAddress -eq $null to see if a value was actually returned
#
#EDIT:Added functionality to check consecutive network segment numbers 20170727