Skip to content
David Kittell
David Kittell

Application & System: Development / Integration / Orchestration

  • Services
    • Application Development
    • Online Application Integration
  • Code
  • Online Tools
  • Tech Support
David Kittell

Application & System: Development / Integration / Orchestration

Remotely Find Raspberry Pi IP

Posted on October 13, 2015October 13, 2015 By David Kittell

First install nmap

sudo apt-get install nmap

Then run IP addr show and look for something like ‘inet 10.1.1.68/24 brd 10.1.1.255’

ip addr show eth0

Now based on the inet IP CIDR type

sudo nmap -sn 10.1.1.68/24

You should see something like this
Nmap scan report for 10.1.1.54
Host is up (0.00088s latency).
MAC Address: B8:27:EB:18:E0:B3 (Raspberry Pi Foundation)

Referenced from: http://trevorappleton.blogspot.com/2013/03/remotely-find-raspberry-pi-ip-address.html

All information on this site is shared with the intention to help. Before any source code or program is ran on a production (non-development) system it is suggested you test it and fully understand what it is doing not just what it appears it is doing. I accept no responsibility for any damage you may do with this code.

Related

Code Raspberry Pi UNIX Shell Scripts

Post navigation

Previous post
Next post

Related Posts

Ektron Content Type

Posted on October 21, 2013October 26, 2015

Public Function GetContentType(ByVal sId As String) As String Select Case [sId] Case "1" Return "Content" Case "2" Return "Forms" Case "3" Return "Archive Content" Case "4" Return "Archive Forms" Case "7" Return "Library Item" Case "8" Return "Assets" Case "9" Return "Archive Assets" Case "12" Return "Archive Media" Case "99"…

Read More

Windows Phone 8/8.1 – My Location

Posted on April 6, 2015

If you have Windows Phone and would like to be able easily send your location to someone the code below will be helpful. When reviewing the code you will find that it is functional but lacks a pleasant user interface, as you build this app you can add your own…

Read More

Classic ASP Send Email

Posted on March 3, 2014May 25, 2017

<% Set myMail=CreateObject("CDO.Message") if Request("subject") <> "" then myMail.Subject=Request("subject") else myMail.Subject="<Subject>" end if if Request("from") <> "" then myMail.From=Request("from") else myMail.From="<From Email Address>" end if if Request("To") <> "" then myMail.To=Request("To") else myMail.To="<To Email Address>" end if if Request("Cc") <> "" then myMail.CC=Request("Cc") else myMail.CC="<CC Email Address>" end if myMail.TextBody=…

Read More

Code

Top Posts & Pages

  • PowerShell - Rename Pictures to Image Taken
  • Front Page
  • C# - Start/Stop/Restart Services
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - Show File Extensions

Recent Posts

  • Javascript – Digital Clock with Style
  • BASH – Web Ping Log
  • BASH – Picture / Video File Name Manipulation
  • Mac OSX Terminal – Create SSH Key
  • Bash – Rename Picture

Top Posts

  • PowerShell - Rename Pictures to Image Taken
  • C# - Start/Stop/Restart Services
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - Show File Extensions
  • SQLite - Auto-Increment / Auto Generate GUID
©2025 David Kittell | WordPress Theme by SuperbThemes
 

Loading Comments...
 

You must be logged in to post a comment.