Nmap
Links: 300 home
Scanning hosts¶
Multiple IP addresses¶
Range of IP addresses¶
# range of IP addresses
nmap 123.123.123.1-10
# exclude certain IPs
nmap 123.123.123.1-10 --exclude 123.123.123.4
Viewing service or port information¶
Detecting the operating system¶
Scan an entire subnet¶
The above command will take a lot of time depending on the number of devices in the network. To speed it up we can use the following option.
Faster scans¶
- T5 is one of the timing templates for
nmap
.- It is the fastest.
- There might be some inaccuracies.
T3 is the default when no option is specified.
Last updated: 2022-07-26