Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

how to scan for raspberry pi on network windows

install nmap
Find your own computers IP address on the local network
Example IP: 192.168.1.17
Scan for devices with the command
nmap -sn 192.168.1.0/24
The -sn flag is the ping scan flag and the 0/24 represents the whole subnet range
This may take a while
Results will look similar to this:
	Nmap scacn report for hostname (IPaddress)
    Host is up (latency)
    MAC Address: macaddress (Producer)
But if the hostname does not show up you can try using the -A flag
Or a simple solution is to do:
	Power off raspberry pi
	arp -a
	Take a screenshot of the IP addresses on the network
    Plug in raspberry pi
    Get coffee/Go to bathroom/World domination/Call a loved one
	Do arp -a again
    Compare list of IP addresses on network to find the raspberry pi
Comment

PREVIOUS NEXT
Code Example
Shell :: git merge to master 
Shell :: how to run r in docker 
Shell :: helm commands 
Shell :: how to commit files in github 
Shell :: Running multiple commands with xargs 
Shell :: redux 
Shell :: remote host identification has changed 
Shell :: how to make maven clean install faster in eclipse 
Shell :: how to add a zip file 
Shell :: modifier un nom de branche git 
Shell :: diskpart 
Shell :: find index of string in bash 
Shell :: babel source maps 
Shell :: powershell history file 
Shell :: apache airflow 
Shell :: uninstall editable pip 
Shell :: diff command 
Shell :: create a batch file from batch file 
Shell :: install docker 
Shell :: git issues 
Shell :: comment copier un fichier linux 
Shell :: git merge conflict resolve 
Shell :: letsencrypt error 
Shell :: drupal update config install 
Shell :: open rdp port windows 10 using command line 
Shell :: how to change your bash setup 
Shell :: tinymce vue 3 
Shell :: grep substring 
Shell :: add user with sudoer centos 
Shell :: cmd change start in 
ADD CONTENT
Topic
Content
Source link
Name
4+4 =