Unable to open ports on Windows 10

Ron Walker 20 Reputation points
2025-01-24T02:43:16.1966667+00:00

I have set up rules to open ports 80, 500, 19284 on the Windows firewall. I have set up rules for UDP and TCP, however, I am unable to access the ports using the Telnet 127.0.0.1 command. I get the can't open port message. When I disable the firewall I am also unable to connect to these ports. I need the ports open to allow Active Sky 2016 to connect to Microsoft FSX.

I am running all programs as administrator.

What could be the issue?

Windows 10 Security
Windows 10 Security
Windows 10: A Microsoft operating system that runs on personal computers and tablets.Security: The precautions taken to guard against crime, attack, sabotage, espionage, or another threat.
2,987 questions
{count} votes

Accepted answer
  1. Robert Rathbun 155 Reputation points
    2025-01-24T04:58:22.78+00:00

    It's difficult to determine the problem without additional troubleshooting. I suggest using native commands for your port tests vs telnet. Below is an example of "Test-NetConnection"

    If you need specifics on the using type: get-help Test-NetConnection -examples in a powershell prompt. This will more effectively aid you in determining if a port is open.

    Example of usage:

    Test-NetConnection -ComputerName 127.0.0.1 -Port 80

    ComputerName : 127.0.0.1

    RemoteAddress : 127.0.0.1

    RemotePort : 80

    InterfaceAlias : Loopback Pseudo-Interface 1

    SourceAddress : 127.0.0.1

    TcpTestSucceeded : True

    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Hania Lian 21,001 Reputation points Microsoft Vendor
    2025-01-24T07:37:37.4633333+00:00

    Hello,

    To troubleshoot this issue, I would recommend the following steps:

    1. Check if the ports are open and listening by running the command "netstat -an" in the command prompt. This will display all open ports and their status.
    2. Verify that the rules you created are correct and are applied to the correct network profile (public, private, or domain).
    3. Check if any other security software or antivirus is blocking the ports. You may need to temporarily disable them to test if they are causing the issue.

    Best Regards,

    Hania Lian

    ============================================

    If the Answer is helpful, please click "Accept Answer" and upvote it.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.