Scanning Local Network for Open SSH (or other) Ports

in linux •  6 years ago 

If you need to find any open SSH ports on your network, use the following command. Make sure you substitute 10.0.0.0/24 with whatever your home network is.

nmap -p 22 --open -sV 10.0.0.0/24

You can also scan for other ports by changing "-p 22" to whatever port you want to scan for. The following will look for port 80 which is used by web servers.

nmap -p 80 --open -sV 10.0.0.0/24

Authors get paid when people like you upvote their post.
If you enjoyed what you read here, create your account today and start earning FREE STEEM!