I want to port scanning on telnet port in a range ip . for ex: i want to know is the 23 port open on 127.0.0.1/255 ? what am i going to do ? is there a option for Nmap to do this ? Thanks .
migrated from stackoverflow.com Aug 29 '11 at 14:01
|
Yes: nmap -p 23 127.0.0.0/24 Will scan port 23 on 127.0.0.0-127.0.0.255. The /24 is CIDR notation, more info on that here: |
|||||||
|
|
If you're scanning the range of 127.0.0.1/24 - you're only looking on your localhost (and unless you're doing something sorta funky, the only hit you should get is on 127.0.0.1). Are you sure that's the range you want to scan? It would be faster to run |
|||
|
|
|
sorry i cant send a comment but i test the option : nmap -p 23 127.0.0.0/24 and the result is : its looklike dont work well ... nmap -p 23 188.34.95.0/24 Starting Nmap 4.11 ( http://www.insecure.org/nmap/ ) at 2011-08-29 07:10 PDT Nmap finished: 256 IP addresses (0 hosts up) scanned in 20.399 seconds |
|||||||||||
|
telnet 127.0.0.1 23? – undur_gongor Aug 29 '11 at 13:56