Skip to content

Instantly share code, notes, and snippets.

@tomysmile
Created November 18, 2015 07:09
Show Gist options
  • Save tomysmile/8a8aed56f6e2fa911ede to your computer and use it in GitHub Desktop.
Save tomysmile/8a8aed56f6e2fa911ede to your computer and use it in GitHub Desktop.
Raspberry: Find your PI in Network from Mac OSX

Get Network Scanner to Find the Pi

You'll need to find your Pi on your network if its headless and you don't know it's IP. I used nmap. On MacOS this is available via homebrew:

$ brew install nmap

#Find your Raspberry Pi

To use it, from the command line, tell it to scan your network for machines with port 22 open (the SSH port):

$ nmap -p 22 --open -sV 192.168.0.* -Pn
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment