How To Open A Port On The Windows VPS Firewall

How To Open A Port On The Windows VPS Firewall

To let the app or process work through a port, we need to open a port on the windows VPS firewall. As their name implies, ports are the gateway for server input and, therefore, should be monitored. Also, due to the possibility of gaining unauthorized access to the server, only the required ports should be inside the server.

Different firewalls manage ports on different operating systems. In Windows VPS, this is done by the Windows built-in firewall.

Ways To Open A port On The Windows VPS

There are 3 ways to open a port on the Windows VPS firewall, and they will be checked on this topic one by one.

  • Windows Firewall GUI

  • CMD (Command Line)

  • Windows PowerShell

Open A Port On The Windows VPS Firewall Through The Windows Firewall GUI

  1. At first, execute run using Windows key + R keys and type firewall.cpl and then press OK.
    open Windows firewall GUI through Run
  2. On the new page, click on the Advanced setting at the left.
    open a port on the Windows VPS firewall through Windows Firewall GUI
  3. Once the new page is opened, choose Inbound Rules and then click on the New Rule…
    Add new rule in Windows firewall
  4. Select the port on this page and then click on the Next.
    select rule type
  5. Write the port number that you want to be opened and click Next.
    Note: You should write the number that you want to open. In this topic, we have used 20875, for instance.
    select your desired port
  6. In this section, choose to Allow the connection and then click Next.
    Choose the action for the rule
  7. Choose in which situation the port should work, and then click Next.
    in which situation, the port should work
  8. In this part, write your desired name for the number you want to open and then click Next.
    choose a name for the port
  9. You’re already done. You have successfully opened your desired number.
    To see the result, you can check it on inbound rules.
    check the port we added
  10. Finally, reboot the server for the setting to be applied.

Open A Port On The Windows VPS Firewall Through CMD

  1. Open run using Windows key + R and type CMD and then press OK.
    open CMD through Run
  2. Now, try this code.
    netsh advfirewall firewall add rule name="Port 20875" dir=in action=allow protocol=TCP localport=20875

    Note: On the name section, you should write your desired port name, and on the local port section, you should write the number of the port you want to open.
    open a port on the Windows VPS firewall through CMD

  3. Reboot the server for the setting to be applied.

Open A Port On The Windows VPS Firewall Through PowerShell

  1. At first, execute run using Windows key + R, type PowerShell, and then press OK.
    open PowerShell in run
  2. You should use this command to open the port.
    New-NetFirewallRule -DisplayName "Port 20875" -Direction inbound -LocalPort 20875 -Protocol TCP -Action Allow

    Note: On the -DisplayName section, you should write your desired port name, and on the -LocalPort section, you should write the number of the port you want to open.
    open a port on the Windows VPS firewall through PowerShell

  3. Then reboot the server to apply the changes.

Summary

There are 3 ways to open a port on the Windows VPS firewall. You can use any of the above steps for this purpose. Consider that ports are sensitive gateways on the server, so be sure to secure any port that you open and close the ports that you don’t need, so check the network port requirements in Windows.

Leave a Reply

Your email address will not be published. Required fields are marked.