particular port open on remote IP check : tcp 135

  • Thread starter Thread starter aaaa
  • Start date Start date
A

aaaa

how do I check from my home that if particular port on particular IP is open
or close ? I want to check if tcp135 is open or close ? what is the simplest
way to check this
 
assumptions, based on your text...

from your PC, there is no direct method of checking the port status of a
remote host.

however you can user "telnet <ipAddr> <port#>" command to check the
availability of that particular port.
 
is telnet support to answer to any port ?

Shiva said:
assumptions, based on your text...

from your PC, there is no direct method of checking the port status of a
remote host.

however you can user "telnet <ipAddr> <port#>" command to check the
availability of that particular port.
 
if you telnet to a port and that port is open you will get a blank telnet
screen. If the port is closed your connection will be refused.
 
Back
Top