How to find the IP address of Raspberry Pi when it is connected to the wireless network without a screen

How to find the IP address of Raspberry Pi when it is connected to the wireless network without a screen

Assuming you are a linuxer , we don't want to assume you are windowser , because Windows users usually buy a monitor, because they will not be used to the command line interface at all. After all, Windows is a dead star system without a monitor.

OK, let's assume you are a Linux user, then

First case:

I don't have money to buy a monitor for the Raspberry Pi, and I only have an Internet cable left from my home broadband connection and a wireless router for Internet access. How can I know the IP address of the Raspberry Pi?

At this time, you only need to connect the Raspberry Pi to the wireless router LAN interface with an Ethernet cable and log in to the wireless router user management interface.

192.168.0.1

or

192.168.1.1

Then you can see an IP that is not your PC, that is the IP of your Raspberry Pi

Some people may say, using ifconfig, isn’t that nonsense? If you can't log in, where can you run ifconfig? My suggestion:

1. View from the router (troublesome)

2. Just write a program to loop through 192.168.1.1---192.168.1.255. This is what I did. The timeout for each connect detection is 100ms. I can quickly find the Raspberry Pi IP address, as follows:

Done.

Second case

I am a poor college student. I want to learn embedded system for the first time. I saved money to buy a Raspberry Pi. Then I just connected an Ethernet cable. How can I know the IP address of the Raspberry Pi?

There is a protocol in the TCP/IP protocol called ARP which is used to map IP addresses in a local area network to MAC addresses.

At this point, those who know the tricks will know how to do it. It’s okay if you don’t know. Let’s continue.

The ARP protocol is for the first communication service within the LAN. Each host will poll the IP address. The host with this IP address must send its MAC address to the host that initiated the ARP poll according to the ARP protocol.

Then we use this

I am a Debian user here, other Red Hat users can change the command by themselves

enter

sudo apt-get install arp-scan

Then install a small software like this

Then here, pay attention

Use arp-scan in root mode

so

sudo arp-scan -interface eth0 --localnet

-interface option specifies the network port to use. In our case, it is the wired network port eth0, which is short for Ethernet.

--localnet indicates that we want to use the ARP protocol within the LAN segment

Isn't the IP address divided into four segments, ABCD? We only use ARP within the LAN segment, for example:

Your PC LAN IP address is 192.168.1.9 and the subnet mask is 255.255.255.0

Then arp-scan will only send ARP packets to IP addresses in the network segment 192.168.1.0/24, that is, 192.168.1.2-192.168.1.254

Then wait for a while, the IP of the Raspberry Pi will come out, and then you can ssh using this IP

ssh -l pi xxxx

Then enter your password

raspberry

OK, login to Raspberry Pi is successful

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links

You may also be interested in:
  • How to install Docker on Raspberry Pi
  • Python Raspberry Pi Infrared Reflection Sensor
  • Ubuntu16.04/Raspberry Pi Python3+opencv configuration tutorial (sharing)
  • Python+Raspberry Pi+YOLO builds an artificial intelligence camera
  • Raspberry Pi.GPRS.SMS Receiver
  • How to install NodeJS on Debian (Raspberry Pi)
  • Python implements the example code of automatic reconnection of Raspberry Pi WiFi disconnection
  • Use Python to simply implement Raspberry Pi WEB control
  • Tutorial on installing Python and OpenCV on a Raspberry Pi 2 or Raspberry Pi B+
  • Example of getting GY-85 nine-axis module information using Python in Raspberry Pi

<<:  MySQL database table and database partitioning strategy

>>:  Four ways to switch tab pages in VUE

Recommend

This article takes you to explore NULL in MySQL

Table of contents Preface NULL in MySQL 2 NULL oc...

How to implement online hot migration of KVM virtual machines (picture and text)

1. KVM virtual machine migration method and issue...

MySQL prepare principle detailed explanation

Benefits of Prepare The reason why Prepare SQL is...

A brief discussion on two current limiting methods in Nginx

The load is generally estimated during system des...

How to use Xtrabackup to back up and restore MySQL

Table of contents 1. Backup 1.1 Fully prepared 1....

How to implement remote connection for Redis under Linux

After installing Redis on Linux, use Java to conn...

Introduction to the common API usage of Vue3

Table of contents Changes in the life cycle react...

8 JS reduce usage examples and reduce operation methods

reduce method is an array iteration method. Unlik...

Use of Linux sed command

1. Function Introduction sed (Stream EDitor) is a...

Docker online and offline installation and common command operations

1. Test environment name Version centos 7.6 docke...

JavaScript String Object Methods

Table of contents Methods of String Object Method...