How to Find the NAT Ports for Your Server
This guide will help you identify the NAT ports available for your server. Each server has specific SSH and TCP/UDP port ranges assigned, which can be accessed using the Server Information provided in your email.
Step 1: Check Your Server's Assigned IP and Port Ranges
Refer to the Server Information email to locate the following details:
- Server IP: The private NAT IP assigned to your server.
- SSH Port: The SSH port number for remote access.
- TCP/UDP Ports: The range of ports available for external connections.
For example:
-
Server 10.10.10.10
- SSH Port:
1022
- TCP/UDP Ports:
1001-1020
- SSH Port:
-
Server 10.10.10.100
- SSH Port:
10022
- TCP/UDP Ports:
10001-10020
- SSH Port:
-
Server 10.10.10.213
- SSH Port:
21322
- TCP/UDP Ports:
21301-21320
- SSH Port:
Step 2: Connect to Your Server via SSH
To connect to your server, use the provided NAT IP and SSH port.
For example:
- If your server's IP is 152.89.168.181(Learn from the Server Information in the email) and SSH port is
XXX22
, the connection command is:ssh root@152.89.168.181 -p 1022
- For
10.10.10.100
, use:ssh root@152.89.168.181 -p 10022
- For
10.10.10.213
, use:ssh root@152.89.168.181 -p 21322
Step 3: Use Your Assigned TCP/UDP Ports
Each server is assigned a range of TCP/UDP ports for applications and services.
- Example:
- For
10.10.10.10
, you can use TCP/UDP ports1001
to1020
. - For
10.10.10.100
, you can use TCP/UDP ports10001
to10020
. - For
10.10.10.213
, you can use TCP/UDP ports21301
to21320
.
- For
Tips
- Make sure to allow the necessary ports in your firewall settings to ensure connectivity.
- If the NAT IP or port details are unclear, refer to the Server Information email or contact support for clarification.
By following these steps, you can efficiently locate and use the NAT ports assigned to your server.