D
D
DVoropaev2016-12-28 23:04:44
linux
DVoropaev, 2016-12-28 23:04:44

How to scan a range of ip addresses?

There is a range of ip addresses in the network (not in LAN). And you need to check them for the openness of port 80. What are the utilities for this in ubuntu? How to do it?

Answer the question

In order to leave comments, you need to log in

2 answer(s)
Z
zzamzam, 2016-12-28
@DVoropaev

Nmap utility
nmap -v -Pn -p80 192.168.0.1-254
-Pn - do not ping (treat server as available)
-v verbose
-p80 80 port
192.168.0.1-254 range from 192.168.0.1 to 192.168.0.254 Action
name - port scan , legal in Russia
nmap documentation https://nmap.org/man/ru/

T
Tremo, 2016-12-29
@tremo0880

read about nmap

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question