0

Could anyone please help me with steps how to verify if port is open/available to use.

Basically we have to verify in one of our server (windows) that 7200 port is open for use.

we have one deployment coming up, and team have end point like htts://servername::7200/index.html

Mark Rotteveel
  • 100,966
  • 191
  • 140
  • 197
Amol Saraf
  • 25
  • 4

1 Answers1

0

If you are trying to use TCP(Transmission Control Protocol) port then run the telnet host port and see the result

  1. connection refused means that nothing is running on that port
  2. accepted means that something is running on that port
  3. timeout means that a firewall is blocking access
backdoor
  • 891
  • 1
  • 6
  • 18