Skip to content

Instantly share code, notes, and snippets.

@lewiswalsh
Created August 3, 2018 09:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lewiswalsh/2b5f3b87649a60c8aa4db23e15204f9c to your computer and use it in GitHub Desktop.
Save lewiswalsh/2b5f3b87649a60c8aa4db23e15204f9c to your computer and use it in GitHub Desktop.
Find raspberry pi on the network
arp -a | findstr b8-27-eb
#!/bin/bash
sudo nmap -sP 192.168.1.0/24 | awk '/^Nmap/{ip=$NF}/B8:27:EB/{print ip}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment