Skip to content

Instantly share code, notes, and snippets.

@travis-g
Last active February 20, 2020 03:18
Show Gist options
  • Save travis-g/7cd5895137454d7f327a1e75b9324822 to your computer and use it in GitHub Desktop.
Save travis-g/7cd5895137454d7f327a1e75b9324822 to your computer and use it in GitHub Desktop.
Various notes

Discovery

Discover IP of Pi with ARP lookup, limiting results returned to MAC addresses that match the Raspberry Pi Foundation's assigned range (B8:27:EB:XX:XX:XX):

arp -a | Select-String -Pattern "b8.27.eb"
arp -a | grep -i "b8.27.eb"

If the Pi has its default hostname raspberrypi an Nmap ping sweep can find it, or populate the ARP table for the lookups above:

nmap -sn "192.168.1.0/24" | grep pi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment