For instance, my current ip address is 192.168.2.33 , but I want to check for open ports of the ip address 191.168.1.44 . If I enter How do I use netstat to probe the remote ip at 191.168.1.44 instead ? Also, for example is I want to check if FTP is open. If telnet Thanks in advance for any replies :) asked 01 May '13, 22:26 Dinged |
2 Answers:
You can't as netstat will only show LISTENing connections on the local machine and ESTABLISHed connections to a remote system, if there is an open session.
Please connect to port 21, as that's the FTP control connection. If you see the banner message of the FTP server, it means that there is a FTP server running. If you don't get any response, it means there is either no service running (look for TCP RESETs in Wireshark) or there is a firewall that blocks the connection. Regards answered 02 May '13, 04:09 Kurt Knochner ♦ |
Hi, you can always use nmap or any other port scanning web site to try check the remote port? but if i remember correct, you cant use telnet to check udp port. answered 01 May '13, 23:46 splibytes |
Thanks for the reply, it clarified my doubts. This may be off-topic, but is there any common software being used to probe for remote ip ? The software on my mind is Nmap.
namp is the 'standard' tool for port scanning. There is also a free Windows tool, called 'SoftPerfect Network Scanner' and numerous other tools. Just google for: port scanner