Horje
how to scan for raspberry pi on network windows Code Example
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




Shell

Related
how to apply a svn patch git Code Example how to apply a svn patch git Code Example
install ripgrep windows Code Example install ripgrep windows Code Example
helm 3 prometheus operator Code Example helm 3 prometheus operator Code Example
dd mac status Code Example dd mac status Code Example
switch theme in android according to time of day Code Example switch theme in android according to time of day Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
13