Saturday, April 20, 2024
 Popular · Latest · Hot · Upcoming
168
rated 0 times [  168] [ 0]  / answers: 1 / hits: 407349  / 2 Years ago, tue, january 25, 2022, 8:28:09

In my work there is a lot of computer and I want make a joke. I can close computer over the network but finding IP addresses is hard to me.



How can I easily find all online IP adresses from 192.168.1.aa to 192.168.1.zz?


More From » networking

 Answers
5

Generally, nmap is quite useful to quickly scan networks.



To install nmap, enter the following command in the terminal:



sudo apt-get install nmap


Once the application is installed, enter the following command:



nmap -sn 192.168.1.0/24


This will show you which hosts responded to ping requests on the network between 192.168.1.0 and 192.168.1.255.






For older versions of Nmap, use -sP:



nmap -sP 192.168.1.0/24





For additional references, see the following pages:



NMAP Installation Guide



NMAP Reference Guide



It is a very useful tool to learn.


[#33917] Wednesday, January 26, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
issfullus

Total Points: 264
Total Questions: 126
Total Answers: 107

Location: Comoros
Member since Mon, Dec 19, 2022
1 Year ago
;