I have a windows 2008 server with symantec antivirus only (not symantec firewall). Also, the Windows firewall is disabled. Despite of this I tried to telnet the server on port 383 and there is no. Using Add rule in windows firewall, i was able to open TCP port 15537. When i am trying to executing command 'netstat -ano' on terminal windows, this port is not listed. I tried to execute telnet c.
Using Add rule in windows firewall, i was able to open TCP port 15537. When i am trying to executing command 'netstat -ano' on terminal windows, this port is not listed. i tried to execute telnet command on terminal window (e.g. telnet IP port) but getting 'Connecting To localhost...Could not open connection to the host, on port 15537: Connect failed' Then i downloaded PortQry application and execute it from different machine, this machine is also in the same network, the result i received was 'Not Listening'. I already spent more than 2 days and asked internal group but could not find solution.
Port 80 Not Listening Windows
Note: both machines are having Windows 10 OS.
Awaiting for solution, Thanks in advanced.
Port Not Listening Windows 9
1 Answer
Use nmap instead of netstat for detecting opening port
nmap -p your_port_number your_local_ip
Run service on that port
For eg- In my case,in order to open port,I use 'service ssh start' or 'service apache2 start 'and it's open port 22 and 80 for connection respectively in my linux machine.
On using nmap in my lan network both ports opened.Hope it help