The most frustrating thing about buying an overseas server isn't choosing the configuration, but seeing a bunch of terms like "CN2 GIA for return" and "normal for outbound" that leave you completely bewildered. Latency tests show it's fast, but during peak hours it becomes incredibly laggy; the provider claims ample bandwidth, but domestic users can't even load a single image.
Where's the problem? It boils down to two terms: outbound and return. Understanding these two will prevent the provider's sales pitches from fooling you anymore.
First, understand: Outbound is like going out, return is like going home.
Outbound (China → Overseas): The path from domestic users sending requests to your overseas server. This route is largely controlled by domestic ISPs, and the server provider you buy from has little influence over it.
Return (Overseas → China): The path from the server returning data to domestic users. This route is controlled by the data center service provider, and this is the core metric for measuring optimized lines.
Understanding the difference between these two will resolve many common questions. For example, why is your server fast in tests, but domestic users are experiencing lag? Because your test focuses on the return journey (my local access to an overseas server), while the actual user experience is the overall data return from your server after the entire journey (outbound and return). Vendors often mislead users, optimizing only one side while the other remains congested. A truly good network must be stable in both the outbound and return journeys.
Mainstream Return Routes to China: Which is the Fastest, Which is the Most Stable?
The networks on the market that improve the domestic access experience are essentially the premium channels offered by the three major telecom operators.
China Telecom CN2 GIA
The upstream of the China Telecom CN2 line is divided into GT and GIA. The ordinary 163 backbone network (node IPs starting with 202.97) is congested and has limited bandwidth; packet loss rates of 3%~8% are common during peak hours. CN2 GT (Global Transit) is considered mid-range; the outbound journey uses CN2, but the return journey may revert to the ordinary 163 network—meaning domestic access is fast, but the server's return data may be stuck halfway. CN2 GIA is the highest-level dedicated line in the telecommunications system. Both outbound and return journeys use the CN2 backbone network (node IPs starting with 59.43), with equal priority and dedicated paths. Latency performance: Standard US West Coast lines are approximately 180-250ms with significant fluctuations, while CN2 GIA is stable at around 150-170ms, with a packet loss rate of less than 0.1% during peak evening hours—a very significant difference.
China Unicom AS9929
Unicom users often confuse the AS4837 and AS9929 lines. AS4837 is Unicom's regular 169 backbone network; it's fine during the day, but packet queuing occurs at night due to increased traffic. AS9929 is a high-end exit channel specifically designed by Unicom for enterprises, finance, and other industries, equivalent to Unicom's CN2 GIA. Unicom users accessing overseas servers via the 9929 line have shorter routes and a lower probability of congestion. During the day, latency to the US West Coast can be reduced to just over 150ms, and there is no significant speed drop during peak evening hours compared to regular lines.
China Mobile CMI / CMIN2
Regular CMI lines from China Mobile to North America typically route through Hong Kong, significantly increasing latency. CMIN2 is a premium network solution launched by China Mobile later, with typical IP addresses starting with 223.120. Among the three major operators, CMIN2's backhaul performance is the most remarkable, achieving a direct hop from overseas PoP to domestic destinations, reducing cross-border latency from approximately 190ms to around 130ms, and lowering packet loss rate from 3%-5% to less than 1%.
Hybrid BGP Backhaul for All Three Networks: Another configuration is a hybrid BGP strategy, where the data center implements intelligent routing on the routers—China Telecom uses CN2 GIA, China Unicom uses AS9929, and China Mobile uses CMIN2, each taking its optimal backhaul path. This solution automatically matches the optimal backhaul route to the server regardless of the user's access operator.
While the basic physical latency cannot be bypassed by any of the operators, this is already far better than domestic users experiencing numerous congested nodes. If the business primarily targets mainland China and a stable user experience is required, these premium lines are essential conditions that must be investigated. Let's look at the actual test results.
Practical Demonstration: Three Commands to Test the Real Line
Knowing the concept isn't enough; you need to verify it yourself.
Testing the Backhaul Route (What Route It Takes): After logging into your VPS, run the following command in the terminal, replacing the target IP with your local public IP.
Install traceroute
sudo apt install traceroute -y
View the Backhaul Route
traceroute -T your local public IP
This script is more recommended (automatically detects the backhaul route):
curl https://raw.githubusercontent.com/zhanghanyun/backtrace/main/install.sh -sSf | sh
How to interpret the results? Seeing 59.43 indicates it's using CN2. If the entire route is 202.97, it's a regular China Telecom 163. Seeing IP ranges starting with 218.105 or 210.51 with AS number 9929 indicates a China Unicom premium network. Seeing 223.120 indicates that the connection is using China Mobile's CMIN2.
Testing Bandwidth and Packet Loss
# Speedtest-cli Directly Measure Bandwidth
Speedtest-cli --list | grep -i china # Find a domestic node
Speedtest-cli --server nodeID
# Continuous MTR Monitoring, showing latency and packet loss for each hop
mtr -r -c 100 your local public IP
Testing Real Transmission Efficiency (iperf3): Install iperf3 on both servers. Run `iperf3 -s -D` on the server and `iperf3 -c serverIP -t 30` on the client. Focus on Bandwidth and Retr (TCP retransmission count). Higher Retr indicates a worse connection.
Ultimately, the choice of connection depends on your business scenario. For users primarily using China Unicom, focus on AS9929; for users primarily using China Telecom, target CN2 GIA; and for China Mobile users, don't ignore CMIN2. If your budget is tight, start with direct connection to all three major networks or regular BGP to get things running first, and upgrade as your business grows. In short, a word of advice: the return route determines the experience, and product testing determines the cost. Running the router and speed tests yourself before using it is far better than believing those exaggerated marketing claims from vendors.
EN
CN