Skip to content


Using nmap to scan a subnet for a specific open port

Today I booted up a box and it’s DHCP assigend IP Address had moved so I had to find it again using this helpful
Use nmap to scan for ssh servers blog post.

After downloading the command line nmap for Windows from http://nmap.org/download.html.

I ran:

# locate ssh servers
# for a range of hosts on a subnet
nmap -p22 --open -sV 192.168.88.100-200
 
# for the entire subnet
nmap -p22 --open -sV 192.168.88.0/24
 
# locate ssh, web and https servers on the entire subnet
nmap -p22,80,443 --open -sV 192.168.88.0/24

No Problemo.

Bookmark and Share

Posted in IT Tips.


0 Responses

Stay in touch with the conversation, subscribe to the RSS feed for comments on this post.



Some HTML is OK

or, reply to this post via trackback.