SSH Connection Problem: Can't Connect to Server
SSH connection troubleshooting guide: Path.net firewall rules, Default Block, creating a filter rule for SSH port, and step-by-step troubleshooting.
RDP connection troubleshooting guide: Path.net firewall rules, Default Block, creating a filter rule for RDP port, and step-by-step troubleshooting.
If you can't connect to your Windows Server via RDP (Remote Desktop Protocol), the most likely cause is that no filter rule has been created for the RDP port (3389) in the Path.net firewall.
On REXE Technology servers, the Path.net DDoS protection system works automatically based on rules. When an IP has no rules at all, all ports are open. However, if your IP has at least one rule, the system automatically applies Default Block and only the allowed ports stay open. For RDP access, you need to create a filter rule that opens the RDP port (3389).
This guide follows the same logic as the SSH troubleshooting guide. The only difference is the port number: SSH → 22, RDP → 3389.
When your IP has rules, Path.net automatically applies Default Block; in that case, if there is no rule for the RDP port (TCP 3389), it is blocked:
RDP Connection Request → Path.net Firewall
→ Rule for port 3389 exists?
→ No → Connection blocked (timeout)
→ Yes → Connection allowed
To access RDP, you need to create a port-specific filter rule via Path Panel or the Rule Management product in your customer panel. This rule only opens RDP port (3389) — all other ports remain closed with Default Block.
Log in to Path Panel or the Rule Management product in your customer panel
Click your server IP in IP Management
Create New Rule with the following settings:
Protocol: TCP
Destination Port: 3389
Description: RDP access
This rule only opens TCP port 3389. All other ports remain closed with Default Block.
The rule creation screen has two modes: standard filter (you just enter protocol + port) and hard filter (you pick one of the game or application filters). For RDP the standard mode is enough. Both modes operate at Layer7 and track connection state. TCP Symmetric is only one of the filters selectable as a hard filter; a hard filter is used when application-specific packet inspection is needed.
It may take 2-5 minutes for your rule to propagate to all Path.net network points. Track the rule status from the Path Panel:
Even if the panel shows the rule as not yet propagated (not updated), the rule has most likely already been deployed within 2-5 minutes. The status may update with a delay due to the panel's status-check interval or the time it takes for the rule to be applied across all nodes on the Path side (except ours). This is only a visual delay in the panel; the port has in fact already been opened in the system.
If you still can't connect after creating the filter rule:
Access the VNC/KVM console from the REXE customer panel and check:
Windows Firewall may be blocking RDP:
# Check RDP rule in Windows Firewall
Get-NetFirewallRule -DisplayName "Remote Desktop*" | Select-Object DisplayName, Enabled
# Allow RDP
Enable-NetFirewallRule -DisplayGroup "Remote Desktop"
The default RDP port is 3389. If you're using a different port:
# Check current RDP port
Get-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp' -Name PortNumber
If NLA is enabled and the client is incompatible, the connection may be refused:
# Check NLA status
Get-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp' -Name UserAuthentication
# Test port from your local computer
Test-NetConnection -ComputerName SERVER_IP -Port 3389
If you changed the RDP port, don't forget to update the port in your Path Panel filter rule as well.
If your IP has rules, Default Block is automatically active and disallowed ports are closed. You need to create a filter rule for the RDP port (3389) via Path Panel (x.rexe.tr) or the Rule Management product in your customer panel. When creating the rule, enter Protocol: TCP and Destination Port: 3389 (standard filter mode). If your IP has no rules at all, all ports are open and the problem may be on the server side.
For SSH/RDP the standard filter mode (protocol + port) is enough. Hard filter (Layer7) options like TCP Symmetric are only needed for highly sensitive applications; those filters track connection state, ensuring only responses to connections you initiated are allowed.
To improve RDP security: change the default port 3389 to a custom port, keep NLA (Network Level Authentication) enabled, use a strong password, and create a filter rule for the RDP port in Path Panel. Hard filter (Layer7) options like TCP Symmetric are only needed for highly sensitive applications. Consider using a VPN for RDP access when possible.
SSH connection troubleshooting guide: Path.net firewall rules, Default Block, creating a filter rule for SSH port, and step-by-step troubleshooting.
Guide to running MTR network tests with WinMTR and Linux MTR, creating ICMP filter rules, and submitting results to support. Diagnose packet loss and latency.
Packet capture guide using Linux tcpdump and Windows Wireshark. Create PCAP files for network analysis, troubleshoot connectivity issues, and submit to support.