CubeCloud 香港 VPS 评测

总结

性能还行。IO 挺不错的。电信移动回程走 NTT,联通走 tata。

机器配置

配置 详情
vCore 1
RAM 512MB
Disk 10G SSD
流量@带宽 1T @ 1Gbps
价格 ¥39 / Mo
LG lg.b.hk.cubecloud.net

购买地址

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
LemonBench Linux System Benchmark Utility Version 20201005 Intl BetaVersion 

Bench Start Time: 2022-02-16 12:11:31
Bench Finish Time: 2022-02-16 12:39:54
Test Mode: Full Mode

-> System Information

OS Release: Ubuntu 20.04.3 LTS (Focal Fossa) (x86_64)
CPU Model: Intel(R) Xeon(R) CPU E5-2670 0 @ 2.60GHz 2.60 GHz
CPU Cache Size: 16384 KB
CPU Number: 1 vCPU
Virt Type: KVM
Memory Usage: 188.27 MB / 473.54 MB
Swap Usage: 34.68 MB / 512.00 MB
Disk Usage: 3.18 GB / 9.74 GB
Boot Device: /dev/vda2
Load (1/5/15min): 0.29 0.10 0.12
CPU Usage: 11.2% used, 0.0% iowait, 5.6% steal
Kernel Version: 5.4.0-97-generic
Network CC Method: bbr + fq

-> Network Information

IPV4 - IP Address: [HK] 103.107.8.*
IPV4 - ASN Info: 136600 (FENGNIAO - Beijing Fengniao Network Technology Co., Ltd, CN)
IPV4 - Region: Hong Kong SAR
IPV6 - IP Address: [HK] 2403:27c0:1000::2f1a:*
IPV6 - ASN Info: 7586 (CLOUDFORTIT-AS-AP - Cloudfort IT, CN)
IPV6 - Region: Hong Kong SAR

-> Media Unlock Test

HBO Now: No
Bahamut Anime: No
Abema.TV: No
Princess Connect Re:Dive Japan: No
BBC: No
Bilibili China Mainland Only: No
Bilibili Hongkong/Macau/Taiwan: Yes
Bilibili Taiwan Only: No

-> CPU Performance Test (Standard Mode, 3-Pass @ 30sec)

1 Thread Test: 852 Scores

-> Memory Performance Test (Standard Mode, 3-Pass @ 30sec)

1 Thread - Read Test : 16109.54 MB/s
1 Thread - Write Test: 12624.43 MB/s

-> Disk Speed Test (4K Block/1M Block, Direct-Write)

Test Name Write Speed Read Speed
10MB-4K Block 38.8 MB/s (9470 IOPS, 0.27 s) 51.6 MB/s (12594 IOPS, 0.20 s)
10MB-1M Block 900 MB/s (858 IOPS, 0.01 s) 1.0 GB/s (965 IOPS, 0.01 s)
100MB-4K Block 43.9 MB/s (0.09 IOPS, 2.39 s) 57.2 MB/s (13976 IOPS, 1.83 s)
100MB-1M Block 686 MB/s (654 IOPS, 0.15 s) 2.9 GB/s (2724 IOPS, 0.04 s)
1GB-4K Block 45.2 MB/s (0.09 IOPS, 23.22 s) 59.4 MB/s (14496 IOPS, 17.66 s)
1GB-1M Block 883 MB/s (842 IOPS, 1.19 s) 391 MB/s (372 IOPS, 2.68 s)

-> Speedtest.net Network Speed Test

Node Name Upload Speed Download Speed Ping Latency Server Name
Speedtest Default 91.62 MB/s 20.71 MB/s 4.20 ms Nexet (Hong Kong Hong Kong)
China, Nanjing CU 18.62 MB/s 40.53 MB/s 133.95 ms China Unicom (China Nanjing)
China, Shanghai CU 28.95 MB/s 65.75 MB/s 89.64 ms China Unicom 5G (China ShangHai)
China, Hangzhou CT Fail: Timeout Exceeded after 60 seconds
China, Nanjing CT 22.35 MB/s 0.04 MB/s 237.42 ms China Telecom JiangSu 5G (China Nanjing)
China, Guangzhou CT Fail: Cannot read: Resource temporarily unavailable
China, Wuhan CT 20.13 MB/s 0.05 MB/s 225.27 ms China Telecom Wuhan Branch (China Wuhan)
China, Shenyang CM Fail: Timeout Exceeded after 60 seconds
China, Hangzhou CM 45.53 MB/s 74.20 MB/s 97.02 ms China Mobile Group Zhejiang Co.,Ltd (China Hangzhou)
China, Nanning CM 65.25 MB/s 87.12 MB/s 49.17 ms GX ChinaMobile (China Nanning)
China, Lanzhou CM 42.08 MB/s 98.13 MB/s 54.62 ms Lanzhou,China Mobile,Gansu (China Lanzhou)
Hong Kong, CSL 85.57 MB/s 73.85 MB/s 3.41 ms CSL (Hong Kong Kwai Chung)
Hong Kong, PCCW 87.52 MB/s 105.82 MB/s 6.24 ms STC (China Hong Kong)
Korea, South Korea 57.33 MB/s 86.13 MB/s 65.98 ms kdatacenter.com (South Korea Seoul)
Japan, GLBB 58.97 MB/s 8.82 MB/s 51.06 ms Allied Telesis Capital Corporation (Japan Fussa-shi)
Taiwan, FET Fail: Timeout Exceeded after 60 seconds
Taiwan, Chief 7.67 MB/s 105.28 MB/s 30.15 ms Chief Telecom (Taiwan Taoyuan)
Taiwan, TWM 76.80 MB/s 110.06 MB/s 33.96 ms Taiwan Mobile (Taiwan Taoyuan)
Singapore, Singtel Fail: Timeout Exceeded after 60 seconds
Singapore, M1 72.31 MB/s 100.29 MB/s 41.37 ms M1 Limited (Singapore Singapore)
Singapore, NME Fail: Timeout Exceeded after 60 seconds
USA, Century Link Fail: Timeout Exceeded after 60 seconds

-> Traceroute Test (IPV4)


Traceroute to China, Beijing CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 123.125.99.1 (123.125.99.1), 30 hops max, 32 byte packets
1 103.107.8.1 0.36 ms AS7586,AS136600 China, Hong Kong, fncloud.net
2 *
3 84.17.33.38 2.19 ms AS60068 cdn77.com
4 203.131.242.153 3.19 ms AS2914 China, Hong Kong, ntt.com
5 129.250.6.95 13.85 ms AS2914 China, Hong Kong, ntt.com
6 129.250.2.42 58.14 ms AS2914 Japan, Osaka, ntt.com
7 129.250.7.31 58.81 ms AS2914 Japan, Osaka, ntt.com
8 129.250.8.26 220.24 ms AS2914 Japan, Osaka, ntt.com
9 219.158.3.141 210.09 ms AS4837 China, Beijing, ChinaUnicom
10 *
11 *
12 124.65.63.34 160.30 ms AS4808 China, Beijing, ChinaUnicom
13 124.65.194.122 132.67 ms AS4808 China, Beijing, ChinaUnicom
14 61.135.113.158 106.81 ms AS4808 China, Beijing, ChinaUnicom
15 *
16 123.125.99.1 156.55 ms AS4808 China, Beijing, ChinaUnicom


Traceroute to China, Beijing CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 180.149.128.1 (180.149.128.1), 30 hops max, 32 byte packets
1 103.107.8.1 0.42 ms AS7586,AS136600 China, Hong Kong, fncloud.net
2 *
3 84.17.33.38 2.01 ms AS60068 cdn77.com
4 203.131.242.153 3.31 ms AS2914 China, Hong Kong, ntt.com
5 129.250.6.95 3.80 ms AS2914 China, Hong Kong, ntt.com
6 129.250.7.66 38.92 ms AS2914 Singapore, ntt.com
7 129.250.2.74 37.99 ms AS2914 Singapore, ntt.com
8 *
9 202.97.93.157 268.54 ms AS4134 China, Shanghai, ChinaTelecom
10 *
11 *
12 *
13 *
14 *
15 180.149.128.1 344.73 ms AS23724 China, Beijing, ChinaTelecom


Traceroute to China, Beijing CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.136.25.153 (211.136.25.153), 30 hops max, 32 byte packets
1 103.107.8.1 0.34 ms AS7586,AS136600 China, Hong Kong, fncloud.net
2 *
3 84.17.33.38 2.23 ms AS60068 cdn77.com
4 203.131.242.153 3.16 ms AS2914 China, Hong Kong, ntt.com
5 129.250.6.95 3.48 ms AS2914 China, Hong Kong, ntt.com
6 129.250.5.39 2.50 ms AS2914 China, Hong Kong, ntt.com
7 *
8 *
9 *
10 *
11 *
12 *
13 *
14 111.24.2.105 50.19 ms AS9808 China, Beijing, ChinaMobile
15 111.24.2.134 51.53 ms AS9808 China, Beijing, ChinaMobile
16 *
17 *
18 211.136.95.226 47.91 ms AS56048 China, Beijing, ChinaMobile
19 *
20 *
21 211.136.25.153 48.29 ms AS56048 China, Beijing, ChinaMobile


Traceroute to China, Shanghai CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 58.247.0.49 (58.247.0.49), 30 hops max, 32 byte packets
1 103.107.8.1 0.44 ms AS7586,AS136600 China, Hong Kong, fncloud.net
2 *
3 84.17.33.38 1.62 ms AS60068 cdn77.com
4 180.87.160.153 23.29 ms AS6453 China, Hong Kong, tatacommunications.com
5 116.0.67.86 160.71 ms AS6453 China, Hong Kong, tatacommunications.com
6 116.0.67.34 64.78 ms AS6453 Japan, Chiba, tatacommunications.com
7 209.58.86.142 168.02 ms AS6453 United States, California, Santa Clara, tatacommunications.com
8 *
9 63.243.205.90 151.34 ms AS6453 United States, California, San Jose, tatacommunications.com
10 219.158.98.53 303.29 ms AS4837 China, Beijing, ChinaUnicom
11 219.158.111.218 291.10 ms AS4837 China, Shanghai, ChinaUnicom
12 219.158.6.157 297.30 ms AS4837 China, Shanghai, ChinaUnicom
13 *
14 139.226.210.94 319.85 ms AS17621 China, Shanghai, ChinaUnicom
15 139.226.230.185 290.50 ms AS17621 China, Shanghai, ChinaUnicom
16 58.247.0.49 319.87 ms AS17621 China, Shanghai, ChinaUnicom


Traceroute to China, Shanghai CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 180.153.28.1 (180.153.28.1), 30 hops max, 32 byte packets
1 103.107.8.1 0.29 ms AS7586,AS136600 China, Hong Kong, fncloud.net
2 *
3 84.17.33.38 2.11 ms AS60068 cdn77.com
4 203.131.242.153 3.29 ms AS2914 China, Hong Kong, ntt.com
5 129.250.6.95 3.82 ms AS2914 China, Hong Kong, ntt.com
6 129.250.7.66 38.78 ms AS2914 Singapore, ntt.com
7 129.250.2.74 43.99 ms AS2914 Singapore, ntt.com
8 183.91.56.121 272.69 ms AS4134 Singapore, ChinaTelecom
9 *
10 202.97.12.181 315.84 ms AS4134 China, Shanghai, ChinaTelecom
11 *
12 *
13 *
14 124.74.232.62 315.85 ms AS4811 China, Shanghai, ChinaTelecom
15 101.227.255.46 289.41 ms AS4812 China, Shanghai, ChinaTelecom
16 *
17 180.153.28.1 289.31 ms AS4812 China, Shanghai, ChinaTelecom


Traceroute to China, Shanghai CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 221.183.55.22 (221.183.55.22), 30 hops max, 32 byte packets
1 103.107.8.1 2.91 ms AS7586,AS136600 China, Hong Kong, fncloud.net
2 *
3 84.17.33.38 8.13 ms AS60068 cdn77.com
4 203.131.242.153 10.21 ms AS2914 China, Hong Kong, ntt.com
5 *
6 223.120.2.117 9.35 ms AS58453 China, Hong Kong, ChinaMobile
7 223.120.2.41 9.71 ms AS58453 China, Hong Kong, ChinaMobile
8 *
9 *
10 221.183.55.22 51.60 ms AS9808 China, Shanghai, ChinaMobile


Traceroute to China, Guangzhou CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.21.4.130 (210.21.4.130), 30 hops max, 32 byte packets
1 103.107.8.1 0.39 ms AS7586,AS136600 China, Hong Kong, fncloud.net
2 *
3 84.17.33.38 2.31 ms AS60068 cdn77.com
4 180.87.160.153 3.10 ms AS6453 China, Hong Kong, tatacommunications.com
5 116.0.67.86 170.65 ms AS6453 China, Hong Kong, tatacommunications.com
6 116.0.67.34 62.50 ms AS6453 Japan, Chiba, tatacommunications.com
7 63.243.250.56 165.56 ms AS6453 United States, California, Santa Clara, tatacommunications.com
8 64.86.197.160 177.50 ms AS6453 United States, California, Los Angeles, tatacommunications.com
9 66.110.59.118 349.48 ms AS6453 United States, California, Los Angeles, tatacommunications.com
10 219.158.16.97 331.72 ms AS4837 China, Beijing, ChinaUnicom
11 219.158.111.134 309.73 ms AS4837 China, Shanghai, ChinaUnicom
12 219.158.19.90 328.35 ms AS4837 China, Shanghai, ChinaUnicom
13 219.158.19.90 328.83 ms AS4837 China, Shanghai, ChinaUnicom
14 219.158.19.81 325.29 ms AS4837 China, Shanghai, ChinaUnicom
15 *
16 112.96.0.146 358.61 ms AS17816 China, Guangdong, Guangzhou, ChinaUnicom
17 120.80.170.254 309.02 ms AS17622 China, Guangdong, Guangzhou, ChinaUnicom
18 *
19 *
20 *
21 *
22 *
23 *
24 *
25 *
26 *
27 *
28 *
29 *
30 *


Traceroute to China, Guangzhou CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 113.108.209.1 (113.108.209.1), 30 hops max, 32 byte packets
1 103.107.8.1 4.00 ms AS7586,AS136600 China, Hong Kong, fncloud.net
2 *
3 84.17.33.38 1.79 ms AS60068 cdn77.com
4 185.156.45.1 56.21 ms AS60068 datacamp.co.uk
5 185.156.45.17 161.98 ms AS60068 datacamp.co.uk
6 64.86.252.169 162.46 ms AS6453 United States, California, Los Angeles, tatacommunications.com
7 64.86.252.12 280.96 ms AS6453 United States, California, Los Angeles, tatacommunications.com
8 64.86.252.63 163.62 ms AS6453 United States, California, Los Angeles, tatacommunications.com
9 202.97.12.2 210.67 ms AS4134 China, Guangdong, Guangzhou, ChinaTelecom
10 202.97.94.113 213.11 ms AS4134 China, Guangdong, Guangzhou, ChinaTelecom
11 113.96.5.82 216.44 ms AS4134 China, Guangdong, Guangzhou, ChinaTelecom
12 113.96.5.82 221.99 ms AS4134 China, Guangdong, Guangzhou, ChinaTelecom
13 113.108.209.1 209.76 ms AS4134 China, Guangdong, Guangzhou, ChinaTelecom


Traceroute to China, Guangzhou CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.139.129.5 (211.139.129.5), 30 hops max, 32 byte packets
1 103.107.8.1 0.48 ms AS7586,AS136600 China, Hong Kong, fncloud.net
2 *
3 84.17.33.38 1.82 ms AS60068 cdn77.com
4 203.131.242.153 3.37 ms AS2914 China, Hong Kong, ntt.com
5 *
6 223.120.2.117 3.99 ms AS58453 China, Hong Kong, ChinaMobile
7 *
8 *
9 221.183.52.85 8.58 ms AS9808 China, Guangdong, Guangzhou, ChinaMobile
10 221.176.22.125 8.29 ms AS9808 China, Guangdong, Guangzhou, ChinaMobile
11 *
12 111.24.5.22 11.80 ms AS9808 China, Guangdong, Guangzhou, ChinaMobile
13 211.139.129.5 14.65 ms AS56040 China, Guangdong, Guangzhou, ChinaMobile


Traceroute to China, Shanghai CU AS9929 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.13.66.238 (210.13.66.238), 30 hops max, 32 byte packets
1 103.107.8.1 0.39 ms AS7586,AS136600 China, Hong Kong, fncloud.net
2 *
3 84.17.33.38 2.19 ms AS60068 cdn77.com
4 203.131.242.153 3.41 ms AS2914 China, Hong Kong, ntt.com
5 129.250.6.93 3.35 ms AS2914 China, Hong Kong, ntt.com
6 129.250.2.50 52.92 ms AS2914 Japan, Tokyo, ntt.com
7 129.250.3.22 81.71 ms AS2914 Japan, Tokyo, ntt.com
8 129.250.8.54 87.60 ms AS2914 ntt.com
9 218.105.2.205 112.93 ms AS9929 China, Shanghai, ChinaUnicom
10 218.105.2.210 87.25 ms http: 403 http: 403
11 210.13.75.138 90.02 ms http: 403 http: 403
12 210.13.64.109 137.49 ms http: 403 http: 403
13 210.13.64.110 90.03 ms http: 403 http: 403
14 210.13.66.237 118.76 ms http: 403 http: 403
15 210.13.66.238 91.01 ms http: 403 http: 403


Traceroute to China, Shanghai CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 58.32.0.1 (58.32.0.1), 30 hops max, 32 byte packets
1 103.107.8.1 0.28 ms http: 403 http: 403
2 *
3 84.17.33.38 2.09 ms http: 403 http: 403
4 203.131.242.153 3.48 ms http: 403 http: 403
5 129.250.6.93 3.36 ms http: 403 http: 403
6 129.250.6.123 4.11 ms http: 403 http: 403
7 203.131.241.66 40.63 ms http: 403 http: 403
8 59.43.188.229 29.16 ms http: 403 http: 403
9 *
10 59.43.138.69 28.68 ms http: 403 http: 403
11 59.43.77.154 58.28 ms http: 403 http: 403
12 101.95.95.58 56.28 ms http: 403 http: 403
13 58.32.0.1 30.90 ms http: 403 http: 403


Traceroute to China, Guangzhou CT CN2 Gaming Broadband (TCP Mode, Max 30 Hop)
============================================================
traceroute to 119.121.0.1 (119.121.0.1), 30 hops max, 32 byte packets
1 103.107.8.1 0.57 ms http: 403 http: 403
2 *
3 84.17.33.38 2.43 ms http: 403 http: 403
4 203.131.242.153 2.96 ms http: 403 http: 403
5 129.250.6.93 2.74 ms http: 403 http: 403
6 129.250.5.161 4.35 ms http: 403 http: 403
7 203.131.241.70 5.88 ms http: 403 http: 403
8 59.43.183.109 8.81 ms http: 403 http: 403
9 *
10 59.43.130.105 16.52 ms http: 403 http: 403
11 183.57.161.14 64.93 ms http: 403 http: 403
12 119.121.0.1 11.38 ms http: 403 http: 403


Traceroute to China, Beijing Dr.Peng Home Network (TCP Mode, Max 30 Hop)
============================================================
traceroute to 14.131.128.1 (14.131.128.1), 30 hops max, 32 byte packets
1 103.107.8.1 0.53 ms http: 403 http: 403
2 *
3 84.17.33.38 1.83 ms http: 403 http: 403
4 *
5 *
6 *
7 *
8 *
9 *
10 *
11 *
12 *
13 *
14 *
15 *
16 *
17 *
18 *
19 *
20 *
21 *
22 *
23 *
24 *
25 *
26 *
27 *
28 *
29 *
30 *


Traceroute to China, Beijing Dr.Peng Network IDC Network (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.167.230.100 (211.167.230.100), 30 hops max, 32 byte packets
1 103.107.8.1 0.45 ms http: 403 http: 403
2 *
3 84.17.33.38 2.08 ms http: 403 http: 403
4 203.131.242.153 3.33 ms http: 403 http: 403
5 129.250.6.95 5.42 ms http: 403 http: 403
6 129.250.2.42 57.62 ms http: 403 http: 403
7 129.250.7.31 57.97 ms http: 403 http: 403
8 219.158.34.153 233.47 ms http: 403 http: 403
9 219.158.3.141 226.95 ms http: 403 http: 403
10 219.158.4.173 212.07 ms http: 403 http: 403
11 *
12 202.96.13.218 232.82 ms http: 403 http: 403
13 61.149.212.242 240.45 ms http: 403 http: 403
14 202.99.1.234 180.88 ms http: 403 http: 403
15 124.205.97.138 243.65 ms http: 403 http: 403
16 218.241.245.98 245.27 ms http: 403 http: 403
17 218.241.245.54 184.00 ms http: 403 http: 403
18 *
19 211.167.230.100 193.59 ms http: 403 http: 403


Traceroute to China, Beijing CERNET (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.205.109.205 (202.205.109.205), 30 hops max, 32 byte packets
1 103.107.8.1 0.43 ms http: 403 http: 403
2 *
3 84.17.33.38 2.03 ms http: 403 http: 403
4 203.131.242.153 2.73 ms http: 403 http: 403
5 129.250.6.93 2.92 ms http: 403 http: 403
6 129.250.5.161 4.29 ms http: 403 http: 403
7 203.131.254.214 3.18 ms http: 403 http: 403
8 101.4.114.181 37.09 ms http: 403 http: 403
9 101.4.114.221 35.91 ms http: 403 http: 403
10 *
11 101.4.118.213 37.32 ms http: 403 http: 403
12 101.4.113.110 36.05 ms http: 403 http: 403
13 219.224.102.230 37.41 ms http: 403 http: 403
14 *
15 202.205.109.205 36.55 ms http: 403 http: 403


Traceroute to China, Beijing CSTNET (TCP Mode, Max 30 Hop)
============================================================
traceroute to 159.226.254.1 (159.226.254.1), 30 hops max, 32 byte packets
1 103.107.8.1 0.63 ms http: 403 http: 403
2 *
3 84.17.33.38 6.87 ms http: 403 http: 403
4 154.18.7.97 2.70 ms http: 403 http: 403
5 154.54.88.49 6.14 ms http: 403 http: 403
6 154.18.4.2 7.22 ms http: 403 http: 403
7 159.226.254.9 44.97 ms http: 403 http: 403
8 159.226.254.1 48.82 ms http: 403 http: 403


Traceroute to China, Beijing GCable (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.156.140.17 (211.156.140.17), 30 hops max, 32 byte packets
1 103.107.8.1 1.87 ms http: 403 http: 403
2 *
3 84.17.33.38 2.15 ms http: 403 http: 403
4 203.131.242.153 3.00 ms http: 403 http: 403
5 129.250.6.95 3.84 ms http: 403 http: 403
6 129.250.7.66 39.03 ms http: 403 http: 403
7 129.250.2.74 38.28 ms http: 403 http: 403
8 183.91.56.125 277.10 ms http: 403 http: 403
9 202.97.93.157 267.56 ms http: 403 http: 403
10 *
11 *
12 202.97.40.45 297.35 ms http: 403 http: 403
13 *
14 36.112.255.70 296.48 ms http: 403 http: 403
15 *
16 211.156.131.93 317.85 ms http: 403 http: 403
17 *
18 *
19 211.156.140.17 312.00 ms http: 403 http: 403


Traceroute to China, Hongkong CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.160.95.218 (203.160.95.218), 30 hops max, 32 byte packets
1 103.107.8.1 0.40 ms http: 403 http: 403
2 *
3 84.17.33.38 2.06 ms http: 403 http: 403
4 36.255.56.86 2.42 ms http: 403 http: 403
5 213.200.122.150 2.39 ms http: 403 http: 403
6 *
7 119.252.139.14 5.44 ms http: 403 http: 403
8 202.77.22.89 5.09 ms http: 403 http: 403
9 203.160.95.218 5.10 ms http: 403 http: 403


Traceroute to China, Hongkong CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.215.232.173 (203.215.232.173), 30 hops max, 32 byte packets
1 103.107.8.1 1.89 ms http: 403 http: 403
2 *
3 84.17.33.38 5.34 ms http: 403 http: 403
4 185.156.45.1 54.16 ms http: 403 http: 403
5 185.156.45.17 159.27 ms http: 403 http: 403
6 64.86.252.169 157.85 ms http: 403 http: 403
7 *
8 202.97.83.233 158.55 ms http: 403 http: 403
9 *
10 *
11 *
12 *
13 *
14 *
15 *
16 *
17 *
18 *
19 *
20 *
21 *
22 *
23 *
24 *
25 *
26 *
27 *
28 *
29 *
30 *


Traceroute to China, Hongkong CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.8.25.187 (203.8.25.187), 30 hops max, 32 byte packets
1 103.107.8.1 0.37 ms http: 403 http: 403
2 *
3 84.17.33.38 2.13 ms http: 403 http: 403
4 203.131.242.153 2.80 ms http: 403 http: 403
5 129.250.6.95 2.96 ms http: 403 http: 403
6 129.250.5.161 14.62 ms http: 403 http: 403
7 203.131.241.70 5.13 ms http: 403 http: 403
8 59.43.248.150 3.44 ms http: 403 http: 403
9 203.8.25.187 5.40 ms http: 403 http: 403


Traceroute to China, Hongkong CM (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.142.105.9 (203.142.105.9), 30 hops max, 32 byte packets
1 103.107.8.1 0.46 ms http: 403 http: 403
2 *
3 84.17.33.38 1.63 ms http: 403 http: 403
4 36.255.57.18 4.74 ms http: 403 http: 403
5 10.13.134.14 4.78 ms http: 403 http: 403
6 *
7 203.142.126.5 3.79 ms http: 403 http: 403
8 203.142.126.6 2.93 ms http: 403 http: 403
9 203.142.126.18 2.54 ms http: 403 http: 403
10 203.142.100.22 2.83 ms http: 403 http: 403
11 203.142.105.9 2.80 ms http: 403 http: 403


Traceroute to China, Hongkong HGC (TCP Mode, Max 30 Hop)
============================================================
traceroute to 218.188.104.30 (218.188.104.30), 30 hops max, 32 byte packets
1 103.107.8.1 0.30 ms http: 403 http: 403
2 *
3 84.17.33.38 1.99 ms http: 403 http: 403
4 84.17.32.149 61.45 ms http: 403 http: 403
5 175.41.60.217 81.74 ms http: 403 http: 403
6 203.78.181.198 81.75 ms http: 403 http: 403
7 175.41.58.226 23.83 ms http: 403 http: 403
8 10.171.188.29 52.09 ms http: 403 http: 403
9 218.189.5.56 80.35 ms http: 403 http: 403
10 218.188.104.30 80.96 ms http: 403 http: 403


Traceroute to China, Hongkong HKBN (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.6.23.239 (210.6.23.239), 30 hops max, 32 byte packets
1 103.107.8.1 0.46 ms http: 403 http: 403
2 *
3 84.17.33.38 2.61 ms http: 403 http: 403
4 84.17.32.23 6.32 ms http: 403 http: 403
5 61.244.225.96 3.09 ms http: 403 http: 403
6 203.186.235.137 4.36 ms http: 403 http: 403
7 *
8 210.6.23.239 2.35 ms http: 403 http: 403


Traceroute to China, Hongkong PCCW (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.85.125.60 (202.85.125.60), 30 hops max, 32 byte packets
1 103.107.8.1 0.36 ms http: 403 http: 403
2 *
3 84.17.33.38 1.84 ms http: 403 http: 403
4 63.217.254.209 2.09 ms http: 403 http: 403
5 63.223.20.33 3.60 ms http: 403 http: 403
6 63.222.45.38 3.37 ms http: 403 http: 403
7 202.153.103.69 3.85 ms http: 403 http: 403
8 202.153.99.203 4.18 ms http: 403 http: 403
9 203.215.244.33 3.89 ms http: 403 http: 403
10 202.85.125.60 4.17 ms http: 403 http: 403


Traceroute to China, Hongkong TGT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.123.76.239 (202.123.76.239), 30 hops max, 32 byte packets
1 103.107.8.1 0.45 ms http: 403 http: 403
2 *
3 84.17.33.38 2.28 ms http: 403 http: 403
4 36.255.56.16 4.11 ms http: 403 http: 403
5 123.255.91.116 4.38 ms http: 403 http: 403
6 203.78.72.192 4.11 ms http: 403 http: 403
7 203.78.73.75 4.06 ms http: 403 http: 403
8 *
9 202.123.76.239 4.45 ms http: 403 http: 403


Traceroute to China, Hongkong WTT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 59.152.252.242 (59.152.252.242), 30 hops max, 32 byte packets
1 103.107.8.1 0.37 ms http: 403 http: 403
2 *
3 84.17.33.38 1.87 ms http: 403 http: 403
4 84.17.32.23 2.72 ms http: 403 http: 403
5 203.80.81.213 4.13 ms http: 403 http: 403
6 115.160.187.54 3.80 ms http: 403 http: 403
7 *
8 59.152.252.196 3.86 ms http: 403 http: 403
9 59.152.252.242 3.98 ms http: 403 http: 403


Traceroute to Singapore, China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.215.233.1 (203.215.233.1), 30 hops max, 32 byte packets
1 103.107.8.1 0.63 ms http: 403 http: 403
2 *
3 84.17.33.38 2.00 ms http: 403 http: 403
4 185.156.45.1 54.42 ms http: 403 http: 403
5 185.156.45.17 159.77 ms http: 403 http: 403
6 66.110.59.160 158.05 ms http: 403 http: 403
7 64.86.252.63 159.95 ms http: 403 http: 403
8 *
9 203.215.233.1 270.67 ms http: 403 http: 403


Traceroute to Singapore, China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 183.91.61.1 (183.91.61.1), 30 hops max, 32 byte packets
1 103.107.8.1 0.57 ms http: 403 http: 403
2 *
3 84.17.33.38 2.35 ms http: 403 http: 403
4 203.131.242.153 3.03 ms http: 403 http: 403
5 129.250.6.93 7.22 ms http: 403 http: 403
6 129.250.5.177 3.61 ms http: 403 http: 403
7 203.131.241.66 3.52 ms http: 403 http: 403
8 59.43.249.241 39.27 ms http: 403 http: 403
9 183.91.61.1 38.49 ms http: 403 http: 403


Traceroute to Singapore, Singtel (TCP Mode, Max 30 Hop)
============================================================
traceroute to 118.201.1.11 (118.201.1.11), 30 hops max, 32 byte packets
1 103.107.8.1 0.48 ms http: 403 http: 403
2 *
3 84.17.33.38 1.81 ms http: 403 http: 403
4 203.131.242.153 3.29 ms http: 403 http: 403
5 129.250.6.95 6.29 ms http: 403 http: 403
6 129.250.6.125 3.19 ms http: 403 http: 403
7 129.250.66.154 2.82 ms http: 403 http: 403
8 203.208.183.250 36.94 ms http: 403 http: 403
9 203.208.172.214 67.48 ms http: 403 http: 403
10 203.208.177.214 43.22 ms http: 403 http: 403
11 165.21.138.86 43.52 ms http: 403 http: 403
12 203.208.177.214 37.21 ms http: 403 http: 403
13 165.21.138.82 35.82 ms http: 403 http: 403
14 165.21.138.66 43.24 ms http: 403 http: 403
15 *
16 118.201.1.11 44.48 ms http: 403 http: 403


Traceroute to Singapore, StarHub (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.116.46.33 (203.116.46.33), 30 hops max, 32 byte packets
1 103.107.8.1 0.40 ms http: 403 http: 403
2 *
3 84.17.33.38 2.10 ms http: 403 http: 403
4 185.156.45.6 45.69 ms http: 403 http: 403
5 138.199.0.221 46.05 ms http: 403 http: 403
6 37.19.192.191 39.95 ms http: 403 http: 403
7 203.118.6.125 42.11 ms http: 403 http: 403
8 203.118.5.77 41.41 ms http: 403 http: 403
9 203.117.164.209 40.13 ms http: 403 http: 403
10 61.8.243.1 41.85 ms http: 403 http: 403
11 172.24.20.97 41.69 ms http: 403 http: 403
12 203.116.46.33 42.21 ms http: 403 http: 403


Traceroute to Singapore, M1 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 118.189.184.1 (118.189.184.1), 30 hops max, 32 byte packets
1 103.107.8.1 0.41 ms http: 403 http: 403
2 *
3 84.17.33.38 2.19 ms http: 403 http: 403
4 63.217.254.209 2.15 ms http: 403 http: 403
5 63.223.34.134 38.91 ms http: 403 http: 403
6 63.217.59.46 35.91 ms http: 403 http: 403
7 202.65.246.137 36.62 ms http: 403 http: 403
8 202.65.246.137 37.52 ms http: 403 http: 403
9 *
10 *
11 *
12 *
13 *
14 *
15 *
16 *
17 *
18 *
19 *
20 *
21 *
22 *
23 *
24 *
25 *
26 *
27 *
28 *
29 *
30 *


Traceroute to Singapore, M1 GamePro (TCP Mode, Max 30 Hop)
============================================================
traceroute to 118.189.38.17 (118.189.38.17), 30 hops max, 32 byte packets
1 103.107.8.1 0.41 ms http: 403 http: 403
2 *
3 84.17.33.38 1.69 ms http: 403 http: 403
4 63.217.254.209 2.42 ms http: 403 http: 403
5 63.223.58.78 42.25 ms http: 403 http: 403
6 63.223.58.70 37.96 ms http: 403 http: 403
7 63.218.249.254 37.23 ms http: 403 http: 403
8 203.211.158.72 37.56 ms http: 403 http: 403
9 203.211.159.151 37.34 ms http: 403 http: 403
10 129.126.64.122 38.06 ms http: 403 http: 403
11 *
12 *
13 *
14 *
15 *
16 *
17 *
18 *
19 *
20 *
21 *
22 *
23 *
24 *
25 *
26 *
27 *
28 *
29 *
30 *


Traceroute to Singapore, AWS (TCP Mode, Max 30 Hop)
============================================================
traceroute to 13.228.0.251 (13.228.0.251), 30 hops max, 32 byte packets
1 103.107.8.1 0.45 ms http: 403 http: 403
2 *
3 84.17.33.38 2.33 ms http: 403 http: 403
4 63.217.254.209 2.52 ms http: 403 http: 403
5 63.223.15.70 3.34 ms http: 403 http: 403
6 63.217.17.42 3.98 ms http: 403 http: 403
7 63.217.17.42 2.91 ms http: 403 http: 403
8 52.93.35.116 3.65 ms http: 403 http: 403
9 52.93.35.31 3.55 ms http: 403 http: 403
10 *
11 *
12 *
13 *
14 *
15 150.222.240.77 43.70 ms http: 403 http: 403
16 *
17 *
18 *
19 *
20 *
21 52.93.8.128 44.14 ms http: 403 http: 403
22 52.93.8.88 45.30 ms http: 403 http: 403
23 52.93.11.49 44.10 ms http: 403 http: 403
24 150.222.3.205 46.78 ms http: 403 http: 403
25 150.222.3.196 41.24 ms http: 403 http: 403
26 *
27 *
28 *
29 *
30 *


Traceroute to Japan, NTT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 61.213.155.84 (61.213.155.84), 30 hops max, 32 byte packets
1 103.107.8.1 0.43 ms http: 403 http: 403
2 *
3 84.17.33.38 1.67 ms http: 403 http: 403
4 203.131.242.153 2.90 ms http: 403 http: 403
5 129.250.6.93 6.66 ms http: 403 http: 403
6 *
7 *
8 *
9 *
10 *
11 *
12 *
13 *
14 *
15 *
16 *
17 *
18 *
19 *
20 *
21 *
22 *
23 *
24 *
25 *
26 *
27 *
28 *
29 *
30 *


Traceroute to Japan, IIJ (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.232.15.70 (202.232.15.70), 30 hops max, 32 byte packets
1 103.107.8.1 0.42 ms http: 403 http: 403
2 *
3 84.17.33.38 2.24 ms http: 403 http: 403
4 63.217.254.209 2.37 ms http: 403 http: 403
5 63.218.210.74 3.05 ms http: 403 http: 403
6 63.218.211.250 3.10 ms http: 403 http: 403
7 63.218.211.250 2.60 ms http: 403 http: 403
8 58.138.80.246 3.50 ms http: 403 http: 403
9 58.138.102.214 55.76 ms http: 403 http: 403
10 58.138.102.214 55.90 ms http: 403 http: 403
11 210.130.142.114 56.50 ms http: 403 http: 403
12 202.232.15.70 57.31 ms http: 403 http: 403


Traceroute to Japan, SoftBank (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.175.32.26 (210.175.32.26), 30 hops max, 32 byte packets
1 103.107.8.1 0.38 ms http: 403 http: 403
2 *
3 84.17.33.38 2.22 ms http: 403 http: 403
4 185.156.45.2 54.42 ms http: 403 http: 403
5 138.199.0.39 54.43 ms http: 403 http: 403
6 221.110.131.9 54.85 ms http: 403 http: 403
7 *
8 143.90.232.241 56.68 ms http: 403 http: 403
9 143.90.47.9 56.62 ms http: 403 http: 403
10 143.90.161.50 54.99 ms http: 403 http: 403
11 143.90.54.30 57.45 ms http: 403 http: 403
12 210.175.32.123 55.65 ms http: 403 http: 403
13 210.175.32.26 55.62 ms http: 403 http: 403


Traceroute to Japan, KDDI (TCP Mode, Max 30 Hop)
============================================================
traceroute to 106.162.242.108 (106.162.242.108), 30 hops max, 32 byte packets
1 103.107.8.1 0.42 ms http: 403 http: 403
2 *
3 84.17.33.38 1.64 ms http: 403 http: 403
4 185.156.45.1 54.44 ms http: 403 http: 403
5 138.199.0.35 54.26 ms http: 403 http: 403
6 175.129.54.57 55.39 ms http: 403 http: 403
7 27.86.121.29 57.43 ms http: 403 http: 403
8 27.85.133.234 59.26 ms http: 403 http: 403
9 111.87.220.242 55.85 ms http: 403 http: 403
10 *
11 *
12 *
13 *
14 *
15 *
16 *
17 *
18 *
19 *
20 *
21 *
22 *
23 *
24 *
25 *
26 *
27 *
28 *
29 *
30 *


Traceroute to Japan, China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.215.236.3 (203.215.236.3), 30 hops max, 32 byte packets
1 103.107.8.1 0.47 ms http: 403 http: 403
2 *
3 84.17.33.38 2.20 ms http: 403 http: 403
4 185.156.45.1 54.44 ms http: 403 http: 403
5 185.156.45.17 159.69 ms http: 403 http: 403
6 64.86.252.169 159.67 ms http: 403 http: 403
7 64.86.252.63 161.58 ms http: 403 http: 403
8 64.86.252.63 164.61 ms http: 403 http: 403
9 *
10 *
11 *
12 *
13 *
14 *
15 *
16 *
17 *
18 *
19 *
20 *
21 *
22 *
23 *
24 *
25 *
26 *
27 *
28 *
29 *
30 *


Traceroute to Japan, China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.55.27.4 (202.55.27.4), 30 hops max, 32 byte packets
1 103.107.8.1 0.35 ms http: 403 http: 403
2 *
3 84.17.33.38 2.02 ms http: 403 http: 403
4 203.131.242.153 3.06 ms http: 403 http: 403
5 129.250.6.95 2.49 ms http: 403 http: 403
6 129.250.5.177 3.93 ms http: 403 http: 403
7 203.131.241.70 4.08 ms http: 403 http: 403
8 59.43.249.17 4.02 ms http: 403 http: 403
9 59.43.187.250 83.83 ms http: 403 http: 403
10 202.55.27.4 54.89 ms http: 403 http: 403


Traceroute to Japan, Amazon AWS (TCP Mode, Max 30 Hop)
============================================================
traceroute to 13.112.63.251 (13.112.63.251), 30 hops max, 32 byte packets
1 103.107.8.1 1.48 ms http: 403 http: 403
2 *
3 84.17.33.38 1.70 ms http: 403 http: 403
4 63.217.254.209 2.21 ms http: 403 http: 403
5 63.218.210.74 3.52 ms http: 403 http: 403
6 63.223.15.190 3.04 ms http: 403 http: 403
7 63.217.17.42 4.06 ms http: 403 http: 403
8 52.93.35.68 5.17 ms http: 403 http: 403
9 52.93.35.97 3.77 ms http: 403 http: 403
10 *
11 *
12 *
13 *
14 *
15 150.222.253.182 53.27 ms http: 403 http: 403
16 *
17 52.93.72.139 52.13 ms http: 403 http: 403
18 *
19 52.95.31.184 54.10 ms http: 403 http: 403
20 52.95.31.237 53.55 ms http: 403 http: 403
21 15.230.154.70 54.15 ms http: 403 http: 403
22 *
23 *
24 *
25 *
26 *
27 *
28 13.112.63.251 54.99 ms http: 403 http: 403


Traceroute to South Korea, KT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.114.41.101 (210.114.41.101), 30 hops max, 32 byte packets
1 103.107.8.1 0.37 ms http: 403 http: 403
2 *
3 84.17.33.38 1.72 ms http: 403 http: 403
4 203.131.242.153 3.21 ms http: 403 http: 403
5 129.250.6.93 3.21 ms http: 403 http: 403
6 129.250.2.50 56.18 ms http: 403 http: 403
7 129.250.2.101 81.84 ms http: 403 http: 403
8 121.189.3.5 531.16 ms http: 403 http: 403
9 112.174.91.153 83.79 ms http: 403 http: 403
10 *
11 112.174.60.94 89.87 ms http: 403 http: 403
12 112.188.245.242 88.35 ms http: 403 http: 403
13 220.90.203.10 90.69 ms http: 403 http: 403
14 211.37.130.73 86.60 ms http: 403 http: 403
15 211.37.137.22 89.10 ms http: 403 http: 403
16 210.114.41.101 113.68 ms http: 403 http: 403


Traceroute to South Korea, SK (TCP Mode, Max 30 Hop)
============================================================
traceroute to 175.122.253.62 (175.122.253.62), 30 hops max, 32 byte packets
1 103.107.8.1 0.38 ms http: 403 http: 403
2 *
3 84.17.33.38 2.19 ms http: 403 http: 403
4 203.131.242.153 2.84 ms http: 403 http: 403
5 129.250.6.93 2.53 ms http: 403 http: 403
6 129.250.2.50 55.75 ms http: 403 http: 403
7 129.250.6.127 87.39 ms http: 403 http: 403
8 *
9 *
10 211.178.182.194 89.47 ms http: 403 http: 403
11 *
12 *
13 *
14 175.122.253.62 63.59 ms http: 403 http: 403


Traceroute to South Korea, LG (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.174.62.44 (211.174.62.44), 30 hops max, 32 byte packets
1 103.107.8.1 0.52 ms http: 403 http: 403
2 *
3 84.17.33.38 2.19 ms http: 403 http: 403
4 203.131.242.153 3.54 ms http: 403 http: 403
5 129.250.6.93 3.87 ms http: 403 http: 403
6 129.250.2.50 53.28 ms http: 403 http: 403
7 129.250.6.127 84.84 ms http: 403 http: 403
8 129.250.8.2 87.02 ms http: 403 http: 403
9 1.208.146.117 87.72 ms http: 403 http: 403
10 *
11 *
12 1.208.151.214 87.35 ms http: 403 http: 403
13 *
14 *
15 *
16 *
17 *
18 211.174.62.44 88.51 ms http: 403 http: 403


Traceroute to South Korea, China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 218.185.246.3 (218.185.246.3), 30 hops max, 32 byte packets
1 103.107.8.1 0.34 ms http: 403 http: 403
2 *
3 84.17.33.38 2.23 ms http: 403 http: 403
4 203.131.242.153 3.00 ms http: 403 http: 403
5 129.250.6.95 4.09 ms http: 403 http: 403
6 129.250.5.161 4.29 ms http: 403 http: 403
7 203.131.241.70 4.09 ms http: 403 http: 403
8 59.43.249.13 33.01 ms http: 403 http: 403
9 59.43.247.54 55.77 ms http: 403 http: 403
10 59.43.181.165 56.36 ms http: 403 http: 403
11 218.185.246.3 105.19 ms http: 403 http: 403


Traceroute to South Korea, Amazon AWS (TCP Mode, Max 30 Hop)
============================================================
traceroute to 13.124.63.251 (13.124.63.251), 30 hops max, 32 byte packets
1 103.107.8.1 0.38 ms http: 403 http: 403
2 *
3 84.17.33.38 2.28 ms http: 403 http: 403
4 63.217.254.209 2.31 ms http: 403 http: 403
5 63.218.250.37 58.48 ms http: 403 http: 403
6 63.218.251.182 63.52 ms http: 403 http: 403
7 52.93.250.131 56.97 ms http: 403 http: 403
8 *
9 54.239.52.87 57.46 ms http: 403 http: 403
10 52.95.30.60 58.04 ms http: 403 http: 403
11 *
12 *
13 *
14 52.93.128.14 85.55 ms http: 403 http: 403
15 *
16 54.239.122.126 90.53 ms http: 403 http: 403
17 52.93.248.162 88.79 ms http: 403 http: 403
18 52.93.248.151 99.05 ms http: 403 http: 403
19 54.239.122.111 88.85 ms http: 403 http: 403
20 54.239.122.20 90.37 ms http: 403 http: 403
21 *
22 *
23 *
24 *
25 *
26 *
27 13.124.63.251 88.03 ms http: 403 http: 403


Traceroute to China, Taiwan Chief (TCP Mode, Max 30 Hop)
============================================================
traceroute to 202.133.242.116 (202.133.242.116), 30 hops max, 32 byte packets
1 103.107.8.1 0.50 ms http: 403 http: 403
2 *
3 84.17.33.38 1.77 ms http: 403 http: 403
4 84.17.32.149 61.95 ms http: 403 http: 403
5 175.41.60.233 3.45 ms http: 403 http: 403
6 175.41.60.57 111.39 ms http: 403 http: 403
7 *
8 *
9 103.123.253.9 55.59 ms http: 403 http: 403
10 113.21.95.72 56.62 ms http: 403 http: 403
11 103.123.254.38 57.01 ms http: 403 http: 403
12 202.133.242.114 57.36 ms http: 403 http: 403
13 202.133.242.116 80.88 ms http: 403 http: 403


Traceroute to China, Taiwan APTG (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.200.69.90 (210.200.69.90), 30 hops max, 32 byte packets
1 103.107.8.1 0.39 ms http: 403 http: 403
2 *
3 84.17.33.38 2.29 ms http: 403 http: 403
4 84.17.32.149 61.86 ms http: 403 http: 403
5 175.41.60.233 2.76 ms http: 403 http: 403
6 175.41.60.57 111.08 ms http: 403 http: 403
7 203.78.181.134 82.31 ms http: 403 http: 403
8 203.78.187.78 50.42 ms http: 403 http: 403
9 211.76.96.76 58.30 ms http: 403 http: 403
10 210.200.80.254 50.33 ms http: 403 http: 403
11 210.200.80.254 53.06 ms http: 403 http: 403
12 210.200.80.254 54.70 ms http: 403 http: 403
13 210.200.69.90 50.57 ms http: 403 http: 403


Traceroute to China, Taiwan CHT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 203.75.129.162 (203.75.129.162), 30 hops max, 32 byte packets
1 103.107.8.1 0.54 ms http: 403 http: 403
2 *
3 84.17.33.38 2.46 ms http: 403 http: 403
4 203.131.242.153 2.93 ms http: 403 http: 403
5 211.72.233.74 63.02 ms http: 403 http: 403
6 220.128.3.182 54.42 ms http: 403 http: 403
7 220.128.4.154 53.97 ms http: 403 http: 403
8 220.128.4.17 30.12 ms http: 403 http: 403
9 211.22.229.45 30.76 ms http: 403 http: 403
10 1.1.1.2 31.45 ms http: 403 http: 403
11 *
12 *
13 203.75.129.162 54.96 ms http: 403 http: 403


Traceroute to China, Taiwan TFN (TCP Mode, Max 30 Hop)
============================================================
traceroute to 219.87.66.3 (219.87.66.3), 30 hops max, 32 byte packets
1 103.107.8.1 0.38 ms http: 403 http: 403
2 *
3 84.17.33.38 2.38 ms http: 403 http: 403
4 63.217.254.209 3.37 ms http: 403 http: 403
5 63.223.19.238 24.68 ms http: 403 http: 403
6 63.222.54.34 23.95 ms http: 403 http: 403
7 60.199.4.150 33.57 ms http: 403 http: 403
8 60.199.3.138 33.34 ms http: 403 http: 403
9 60.199.28.6 24.50 ms http: 403 http: 403
10 219.87.66.3 34.16 ms http: 403 http: 403


Traceroute to China,Taiwan FET (TCP Mode, Max 30 Hop)
============================================================
traceroute to 211.73.144.38 (211.73.144.38), 30 hops max, 32 byte packets
1 103.107.8.1 0.36 ms http: 403 http: 403
2 *
3 84.17.33.38 1.80 ms http: 403 http: 403
4 203.131.242.153 2.94 ms http: 403 http: 403
5 129.250.6.93 3.59 ms http: 403 http: 403
6 129.250.2.50 56.29 ms http: 403 http: 403
7 129.250.5.22 55.91 ms http: 403 http: 403
8 129.250.7.6 56.33 ms http: 403 http: 403
9 129.250.2.63 54.34 ms http: 403 http: 403
10 129.250.6.84 56.57 ms http: 403 http: 403
11 199.245.24.37 50.29 ms http: 403 http: 403
12 192.72.155.209 58.96 ms http: 403 http: 403
13 139.175.58.166 64.78 ms http: 403 http: 403
14 *
15 *
16 *
17 211.73.144.38 59.19 ms http: 403 http: 403


Traceroute to China, Taiwan KBT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 61.63.0.102 (61.63.0.102), 30 hops max, 32 byte packets
1 103.107.8.1 0.32 ms http: 403 http: 403
2 *
3 84.17.33.38 2.21 ms http: 403 http: 403
4 84.17.32.149 61.45 ms http: 403 http: 403
5 175.41.60.217 82.48 ms http: 403 http: 403
6 175.41.61.182 54.46 ms http: 403 http: 403
7 175.41.61.210 80.23 ms http: 403 http: 403
8 175.41.61.166 80.83 ms http: 403 http: 403
9 203.187.9.226 81.74 ms http: 403 http: 403
10 203.187.9.226 54.83 ms http: 403 http: 403
11 61.63.63.6 103.50 ms http: 403 http: 403
12 58.86.0.206 82.06 ms http: 403 http: 403
13 58.86.0.206 81.16 ms http: 403 http: 403
14 *
15 *
16 *
17 *
18 *
19 *
20 *
21 *
22 *
23 *
24 *
25 *
26 *
27 *
28 *
29 *
30 *


Traceroute to China, Taiwan TAIFO (TCP Mode, Max 30 Hop)
============================================================
traceroute to 103.31.196.203 (103.31.196.203), 30 hops max, 32 byte packets
1 103.107.8.1 0.58 ms http: 403 http: 403
2 *
3 84.17.33.38 1.81 ms http: 403 http: 403
4 185.156.45.6 46.00 ms http: 403 http: 403
5 138.199.0.223 45.64 ms http: 403 http: 403
6 185.229.189.109 41.96 ms http: 403 http: 403
7 62.216.128.222 137.57 ms http: 403 http: 403
8 62.216.128.70 182.49 ms http: 403 http: 403
9 80.77.2.198 194.55 ms http: 403 http: 403
10 103.123.253.9 189.37 ms http: 403 http: 403
11 113.21.95.123 189.68 ms http: 403 http: 403
12 113.21.84.210 151.84 ms http: 403 http: 403
13 103.31.197.122 153.74 ms http: 403 http: 403
14 10.0.10.235 159.98 ms http: 403 http: 403
15 103.31.197.70 154.94 ms http: 403 http: 403
16 *
17 *
18 *
19 *
20 *
21 *
22 *
23 *
24 *
25 *
26 *
27 *
28 *
29 *
30 *


Traceroute to United States, Los Angeles China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 218.30.33.17 (218.30.33.17), 30 hops max, 32 byte packets
1 103.107.8.1 0.53 ms http: 403 http: 403
2 *
3 84.17.33.38 2.01 ms http: 403 http: 403
4 185.156.45.1 54.14 ms http: 403 http: 403
5 185.156.45.17 159.80 ms http: 403 http: 403
6 66.110.59.160 158.42 ms http: 403 http: 403
7 64.86.252.12 159.26 ms http: 403 http: 403
8 64.86.252.63 158.51 ms http: 403 http: 403
9 218.30.33.17 226.73 ms http: 403 http: 403


Traceroute to United States, Los Angeles China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 66.102.252.100 (66.102.252.100), 30 hops max, 32 byte packets
1 103.107.8.1 0.41 ms http: 403 http: 403
2 *
3 84.17.33.38 1.74 ms http: 403 http: 403
4 63.217.254.209 2.47 ms http: 403 http: 403
5 63.223.43.198 151.26 ms http: 403 http: 403
6 *
7 *
8 4.71.136.202 158.89 ms http: 403 http: 403
9 66.102.252.100 157.72 ms http: 403 http: 403


Traceroute to United States, Los Angeles PCCW (TCP Mode, Max 30 Hop)
============================================================
traceroute to 63.218.42.81 (63.218.42.81), 30 hops max, 32 byte packets
1 103.107.8.1 0.37 ms http: 403 http: 403
2 *
3 84.17.33.38 2.13 ms http: 403 http: 403
4 63.217.254.209 2.35 ms http: 403 http: 403
5 *
6 63.218.42.81 155.36 ms http: 403 http: 403


Traceroute to United States, Los Angeles HE (TCP Mode, Max 30 Hop)
============================================================
traceroute to 66.220.18.42 (66.220.18.42), 30 hops max, 32 byte packets
1 103.107.8.1 0.37 ms http: 403 http: 403
2 *
3 84.17.33.38 1.88 ms http: 403 http: 403
4 184.104.194.66 2.53 ms http: 403 http: 403
5 184.105.223.118 3.11 ms http: 403 http: 403
6 184.105.223.117 1.98 ms http: 403 http: 403
7 184.104.197.90 5.91 ms http: 403 http: 403
8 184.104.197.49 141.67 ms http: 403 http: 403
9 184.104.197.49 142.09 ms http: 403 http: 403
10 184.104.197.109 142.80 ms http: 403 http: 403
11 66.220.18.42 141.88 ms http: 403 http: 403


Traceroute to United States, Los Angeles GTT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 173.205.77.98 (173.205.77.98), 30 hops max, 32 byte packets
1 103.107.8.1 0.39 ms http: 403 http: 403
2 *
3 84.17.33.38 2.07 ms http: 403 http: 403
4 154.18.7.97 2.78 ms http: 403 http: 403
5 154.54.88.49 3.77 ms http: 403 http: 403
6 154.54.87.225 40.54 ms http: 403 http: 403
7 154.54.140.46 40.46 ms http: 403 http: 403
8 89.149.187.114 180.29 ms http: 403 http: 403
9 208.116.132.26 177.27 ms http: 403 http: 403
10 *
11 *
12 *
13 *
14 *
15 *
16 *
17 *
18 *
19 *
20 *
21 *
22 *
23 *
24 *
25 *
26 *
27 *
28 *
29 *
30 *


Traceroute to United States, San Fransico ATT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 12.169.215.33 (12.169.215.33), 30 hops max, 32 byte packets
1 103.107.8.1 0.39 ms http: 403 http: 403
2 *
3 84.17.33.38 1.77 ms http: 403 http: 403
4 185.156.45.2 54.14 ms http: 403 http: 403
5 185.156.45.17 159.56 ms http: 403 http: 403
6 *
7 154.54.25.149 158.95 ms http: 403 http: 403
8 154.54.3.70 163.75 ms http: 403 http: 403
9 154.54.13.150 160.19 ms http: 403 http: 403
10 12.122.128.98 170.36 ms http: 403 http: 403
11 12.122.28.122 170.81 ms http: 403 http: 403
12 12.122.149.85 160.70 ms http: 403 http: 403
13 12.244.156.30 170.46 ms http: 403 http: 403
14 12.169.215.33 172.28 ms http: 403 http: 403


Traceroute to United States, New York TATA (TCP Mode, Max 30 Hop)
============================================================
traceroute to 66.198.181.100 (66.198.181.100), 30 hops max, 32 byte packets
1 103.107.8.1 0.53 ms http: 403 http: 403
2 *
3 84.17.33.38 2.06 ms http: 403 http: 403
4 180.87.160.153 3.49 ms http: 403 http: 403
5 116.0.67.86 227.27 ms http: 403 http: 403
6 116.0.67.34 53.97 ms http: 403 http: 403
7 209.58.86.142 235.31 ms http: 403 http: 403
8 63.243.205.72 216.66 ms http: 403 http: 403
9 63.243.205.187 223.11 ms http: 403 http: 403
10 63.243.128.26 215.95 ms http: 403 http: 403
11 216.6.90.73 227.40 ms http: 403 http: 403
12 209.58.75.198 221.12 ms http: 403 http: 403
13 *
14 66.198.181.100 231.35 ms http: 403 http: 403


Traceroute to United States, San Jose China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 218.30.33.17 (218.30.33.17), 30 hops max, 32 byte packets
1 103.107.8.1 0.40 ms http: 403 http: 403
2 *
3 84.17.33.38 2.09 ms http: 403 http: 403
4 185.156.45.2 54.49 ms http: 403 http: 403
5 185.156.45.17 159.54 ms http: 403 http: 403
6 66.110.59.160 158.02 ms http: 403 http: 403
7 64.86.252.63 160.59 ms http: 403 http: 403
8 64.86.252.63 160.14 ms http: 403 http: 403
9 218.30.33.17 227.16 ms http: 403 http: 403


Traceroute to United States, San Jose NTT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 23.11.26.62 (23.11.26.62), 30 hops max, 32 byte packets
1 103.107.8.1 0.32 ms http: 403 http: 403
2 *
3 84.17.33.38 2.06 ms http: 403 http: 403
4 180.87.160.153 3.55 ms http: 403 http: 403
5 116.0.67.86 203.53 ms http: 403 http: 403
6 116.0.67.34 53.37 ms http: 403 http: 403
7 209.58.86.142 200.21 ms http: 403 http: 403
8 63.243.205.72 195.84 ms http: 403 http: 403
9 63.243.205.2 195.68 ms http: 403 http: 403
10 63.243.129.20 208.62 ms http: 403 http: 403
11 23.11.26.62 195.64 ms http: 403 http: 403


Traceroute to United States, Fremont HE (TCP Mode, Max 30 Hop)
============================================================
traceroute to 72.52.104.74 (72.52.104.74), 30 hops max, 32 byte packets
1 103.107.8.1 0.52 ms http: 403 http: 403
2 *
3 84.17.33.38 1.80 ms http: 403 http: 403
4 184.104.194.66 2.54 ms http: 403 http: 403
5 184.105.223.118 2.28 ms http: 403 http: 403
6 184.105.64.130 55.25 ms http: 403 http: 403
7 184.104.194.37 161.87 ms http: 403 http: 403
8 184.104.194.37 162.18 ms http: 403 http: 403
9 184.105.213.158 162.94 ms http: 403 http: 403
10 72.52.104.74 162.39 ms http: 403 http: 403


Traceroute to United States, Las Vegas Level3 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 205.216.62.38 (205.216.62.38), 30 hops max, 32 byte packets
1 103.107.8.1 0.42 ms http: 403 http: 403
2 *
3 84.17.33.38 1.73 ms http: 403 http: 403
4 63.217.254.209 2.21 ms http: 403 http: 403
5 *
6 *
7 *
8 4.68.110.142 163.55 ms http: 403 http: 403
9 67.14.54.178 190.21 ms http: 403 http: 403
10 216.34.172.42 189.60 ms http: 403 http: 403
11 216.39.66.3 199.95 ms http: 403 http: 403
12 *
13 *
14 *
15 *
16 *
17 *
18 *
19 *
20 *
21 *
22 *
23 *
24 *
25 *
26 *
27 *
28 *
29 *
30 *


Traceroute to United States, San Jose ZAYO (TCP Mode, Max 30 Hop)
============================================================
traceroute to 64.125.191.31 (64.125.191.31), 30 hops max, 32 byte packets
1 103.107.8.1 0.47 ms http: 403 http: 403
2 *
3 84.17.33.38 2.26 ms http: 403 http: 403
4 36.255.57.55 2.45 ms http: 403 http: 403
5 64.125.24.20 3.57 ms http: 403 http: 403
6 64.125.26.243 50.80 ms http: 403 http: 403
7 64.125.27.152 208.26 ms http: 403 http: 403
8 *
9 64.125.26.141 213.05 ms http: 403 http: 403
10 64.125.23.119 200.49 ms http: 403 http: 403
11 *
12 *
13 *
14 *
15 *
16 *
17 *
18 *
19 *
20 *
21 *
22 *
23 *
24 *
25 *
26 *
27 *
28 *
29 *
30 *


Traceroute to United States, Ashburn Cogentco (TCP Mode, Max 30 Hop)
============================================================
traceroute to 149.127.109.166 (149.127.109.166), 30 hops max, 32 byte packets
1 103.107.8.1 0.56 ms http: 403 http: 403
2 *
3 84.17.33.38 1.92 ms http: 403 http: 403
4 154.18.7.97 2.51 ms http: 403 http: 403
5 154.54.88.49 3.16 ms http: 403 http: 403
6 154.54.0.5 163.93 ms http: 403 http: 403
7 154.54.44.85 175.99 ms http: 403 http: 403
8 154.54.42.66 183.05 ms http: 403 http: 403
9 154.54.30.161 197.88 ms http: 403 http: 403
10 154.54.28.129 209.89 ms http: 403 http: 403
11 154.54.24.221 225.33 ms http: 403 http: 403
12 154.54.46.194 230.34 ms http: 403 http: 403
13 38.140.164.58 222.19 ms http: 403 http: 403
14 *
15 *
16 *
17 *
18 *
19 *
20 *
21 *
22 *
23 *
24 *
25 *
26 *
27 *
28 *
29 *
30 *


Traceroute to German, Telekom (TCP Mode, Max 30 Hop)
============================================================
traceroute to 80.146.191.1 (80.146.191.1), 30 hops max, 32 byte packets
1 103.107.8.1 0.41 ms http: 403 http: 403
2 *
3 84.17.33.38 1.76 ms http: 403 http: 403
4 63.217.254.209 2.60 ms http: 403 http: 403
5 63.223.54.30 227.82 ms http: 403 http: 403
6 80.150.169.73 208.04 ms http: 403 http: 403
7 87.137.218.25 263.93 ms http: 403 http: 403
8 80.146.191.1 272.62 ms http: 403 http: 403


Traceroute to German, Frankfurt O2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 82.113.108.25 (82.113.108.25), 30 hops max, 32 byte packets
1 103.107.8.1 0.47 ms http: 403 http: 403
2 *
3 84.17.33.38 5.70 ms http: 403 http: 403
4 63.217.254.209 2.41 ms http: 403 http: 403
5 *
6 63.223.32.62 189.46 ms http: 403 http: 403
7 63.218.23.238 195.40 ms http: 403 http: 403
8 94.142.117.129 225.82 ms http: 403 http: 403
9 94.142.127.42 297.75 ms http: 403 http: 403
10 176.52.248.240 250.79 ms http: 403 http: 403
11 176.52.252.33 249.70 ms http: 403 http: 403
12 62.53.8.186 252.29 ms http: 403 http: 403
13 62.53.28.152 256.70 ms http: 403 http: 403
14 62.53.2.51 249.80 ms http: 403 http: 403
15 62.53.2.55 252.64 ms http: 403 http: 403
16 82.113.108.25 248.68 ms http: 403 http: 403


Traceroute to German, Frankfurt Vodafone (TCP Mode, Max 30 Hop)
============================================================
traceroute to 139.7.146.11 (139.7.146.11), 30 hops max, 32 byte packets
1 103.107.8.1 0.54 ms http: 403 http: 403
2 *
3 84.17.33.38 2.37 ms http: 403 http: 403
4 154.18.7.97 2.24 ms http: 403 http: 403
5 154.54.88.49 3.21 ms http: 403 http: 403
6 154.54.87.225 40.14 ms http: 403 http: 403
7 154.54.87.222 35.60 ms http: 403 http: 403
8 154.54.140.18 32.50 ms http: 403 http: 403
9 195.2.2.57 163.99 ms http: 403 http: 403
10 195.2.25.190 179.13 ms http: 403 http: 403
11 195.2.18.218 203.49 ms http: 403 http: 403
12 145.253.5.57 197.47 ms http: 403 http: 403
13 92.79.230.2 191.79 ms http: 403 http: 403
14 139.7.148.84 196.06 ms http: 403 http: 403
15 *
16 *
17 *
18 *
19 139.7.146.11 189.50 ms http: 403 http: 403


Traceroute to German, Frankfurt China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 118.85.205.101 (118.85.205.101), 30 hops max, 32 byte packets
1 103.107.8.1 0.53 ms http: 403 http: 403
2 *
3 84.17.33.38 1.81 ms http: 403 http: 403
4 185.156.45.2 54.21 ms http: 403 http: 403
5 185.156.45.17 159.40 ms http: 403 http: 403
6 62.115.47.97 156.30 ms http: 403 http: 403
7 62.115.185.213 153.88 ms http: 403 http: 403
8 202.97.66.234 231.17 ms http: 403 http: 403
9 118.85.205.101 305.83 ms http: 403 http: 403


Traceroute to German, Frankfurt China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 5.10.138.33 (5.10.138.33), 30 hops max, 32 byte packets
1 103.107.8.1 0.40 ms http: 403 http: 403
2 *
3 84.17.33.38 2.28 ms http: 403 http: 403
4 63.217.254.209 3.46 ms http: 403 http: 403
5 63.223.43.198 151.55 ms http: 403 http: 403
6 *
7 *
8 217.163.44.234 289.80 ms http: 403 http: 403
9 59.43.180.113 243.36 ms http: 403 http: 403
10 5.10.138.33 242.78 ms http: 403 http: 403


Traceroute to German, Frankfurt GTT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 213.200.65.70 (213.200.65.70), 30 hops max, 32 byte packets
1 103.107.8.1 0.44 ms http: 403 http: 403
2 *
3 84.17.33.38 2.18 ms http: 403 http: 403
4 154.18.7.97 2.21 ms http: 403 http: 403
5 154.54.88.49 3.16 ms http: 403 http: 403
6 154.54.87.225 35.36 ms http: 403 http: 403
7 154.54.140.46 41.44 ms http: 403 http: 403
8 213.200.114.177 257.26 ms http: 403 http: 403
9 213.200.65.70 255.35 ms http: 403 http: 403


Traceroute to German, FrankfurtCogentco (TCP Mode, Max 30 Hop)
============================================================
traceroute to 212.20.150.5 (212.20.150.5), 30 hops max, 32 byte packets
1 103.107.8.1 0.39 ms http: 403 http: 403
2 *
3 84.17.33.38 2.17 ms http: 403 http: 403
4 63.217.254.209 2.38 ms http: 403 http: 403
5 154.54.140.65 2.81 ms http: 403 http: 403
6 154.54.88.49 3.25 ms http: 403 http: 403
7 154.54.0.41 241.13 ms http: 403 http: 403
8 154.54.72.225 190.86 ms http: 403 http: 403
9 154.54.58.233 181.94 ms http: 403 http: 403
10 154.54.56.34 263.01 ms http: 403 http: 403
11 212.20.150.5 239.06 ms http: 403 http: 403


Traceroute to United Kingdom, Vodafone (TCP Mode, Max 30 Hop)
============================================================
traceroute to 194.62.232.211 (194.62.232.211), 30 hops max, 32 byte packets
1 103.107.8.1 0.39 ms http: 403 http: 403
2 *
3 84.17.33.38 1.76 ms http: 403 http: 403
4 154.18.7.97 2.66 ms http: 403 http: 403
5 154.54.88.49 3.37 ms http: 403 http: 403
6 154.54.87.225 35.51 ms http: 403 http: 403
7 154.54.87.222 34.99 ms http: 403 http: 403
8 154.54.140.18 31.81 ms http: 403 http: 403
9 195.2.2.57 182.62 ms http: 403 http: 403
10 195.2.25.17 179.41 ms http: 403 http: 403
11 195.2.8.225 186.38 ms http: 403 http: 403
12 *
13 *
14 194.62.232.211 183.94 ms http: 403 http: 403


Traceroute to United Kingdom, BT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 213.121.43.24 (213.121.43.24), 30 hops max, 32 byte packets
1 103.107.8.1 0.31 ms http: 403 http: 403
2 *
3 84.17.33.38 2.16 ms http: 403 http: 403
4 63.217.254.209 2.76 ms http: 403 http: 403
5 63.223.54.30 233.21 ms http: 403 http: 403
6 166.49.169.101 224.34 ms http: 403 http: 403
7 166.49.195.142 253.19 ms http: 403 http: 403
8 166.49.209.133 259.33 ms http: 403 http: 403
9 62.6.201.249 264.49 ms http: 403 http: 403
10 217.32.170.148 252.65 ms http: 403 http: 403
11 194.72.7.101 264.36 ms http: 403 http: 403
12 *
13 *
14 *
15 *
16 213.121.43.24 275.61 ms http: 403 http: 403


Traceroute to United Kingdom, London TATA (TCP Mode, Max 30 Hop)
============================================================
traceroute to 80.231.131.34 (80.231.131.34), 30 hops max, 32 byte packets
1 103.107.8.1 0.56 ms http: 403 http: 403
2 *
3 84.17.33.38 1.89 ms http: 403 http: 403
4 180.87.160.153 5.66 ms http: 403 http: 403
5 116.0.67.86 2.96 ms http: 403 http: 403
6 116.0.93.136 2.67 ms http: 403 http: 403
7 180.87.15.80 35.58 ms http: 403 http: 403
8 116.0.93.169 34.40 ms http: 403 http: 403
9 80.231.217.196 181.18 ms http: 403 http: 403
10 80.231.217.196 170.58 ms http: 403 http: 403
11 80.231.200.14 193.27 ms http: 403 http: 403
12 80.231.131.34 198.80 ms http: 403 http: 403


Traceroute to Russia, China CT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 118.85.205.181 (118.85.205.181), 30 hops max, 32 byte packets
1 103.107.8.1 0.41 ms http: 403 http: 403
2 *
3 84.17.33.38 2.22 ms http: 403 http: 403
4 185.156.45.2 54.09 ms http: 403 http: 403
5 185.156.45.18 158.13 ms http: 403 http: 403
6 213.248.70.22 158.80 ms http: 403 http: 403
7 62.115.185.213 152.27 ms http: 403 http: 403
8 202.97.83.238 164.44 ms http: 403 http: 403
9 202.97.52.9 236.89 ms http: 403 http: 403
10 202.97.30.230 398.68 ms http: 403 http: 403
11 *
12 *
13 *
14 *
15 *
16 *
17 *
18 *
19 *
20 *
21 *
22 *
23 *
24 *
25 *
26 *
27 *
28 *
29 *
30 *


Traceroute to Russia, China CT CN2 (TCP Mode, Max 30 Hop)
============================================================
traceroute to 185.75.173.17 (185.75.173.17), 30 hops max, 32 byte packets
1 103.107.8.1 0.59 ms http: 403 http: 403
2 *
3 84.17.33.38 1.78 ms http: 403 http: 403
4 180.87.160.153 2.70 ms http: 403 http: 403
5 116.0.67.86 182.08 ms http: 403 http: 403
6 116.0.93.136 185.02 ms http: 403 http: 403
7 116.0.93.169 185.12 ms http: 403 http: 403
8 *
9 *
10 80.231.217.53 183.86 ms http: 403 http: 403
11 195.219.87.168 183.23 ms http: 403 http: 403
12 195.219.156.150 184.80 ms http: 403 http: 403
13 195.219.156.146 248.31 ms http: 403 http: 403
14 195.219.156.146 283.51 ms http: 403 http: 403
15 217.150.59.250 218.84 ms http: 403 http: 403
16 185.75.173.17 228.14 ms http: 403 http: 403


Traceroute to Russia, Moscow RT (TCP Mode, Max 30 Hop)
============================================================
traceroute to 87.226.162.77 (87.226.162.77), 30 hops max, 32 byte packets
1 103.107.8.1 0.41 ms http: 403 http: 403
2 *
3 84.17.33.38 1.98 ms http: 403 http: 403
4 63.217.254.209 2.10 ms http: 403 http: 403
5 154.54.140.65 2.38 ms http: 403 http: 403
6 154.54.88.49 3.47 ms http: 403 http: 403
7 154.54.0.41 241.79 ms http: 403 http: 403
8 154.54.72.109 172.72 ms http: 403 http: 403
9 154.54.58.233 209.94 ms http: 403 http: 403
10 154.54.56.190 249.00 ms http: 403 http: 403
11 149.11.84.250 186.29 ms http: 403 http: 403
12 185.140.151.251 244.49 ms http: 403 http: 403
13 87.226.140.2 222.78 ms http: 403 http: 403
14 10.30.254.57 224.67 ms http: 403 http: 403
15 87.226.162.77 234.14 ms http: 403 http: 403


Traceroute to Russia, Moscow TTK (TCP Mode, Max 30 Hop)
============================================================
traceroute to 217.150.32.2 (217.150.32.2), 30 hops max, 32 byte packets
1 103.107.8.1 0.46 ms http: 403 http: 403
2 *
3 84.17.33.38 1.84 ms http: 403 http: 403
4 180.87.160.153 3.59 ms http: 403 http: 403
5 116.0.67.86 182.18 ms http: 403 http: 403
6 180.87.112.142 184.26 ms http: 403 http: 403
7 116.0.93.169 183.46 ms http: 403 http: 403
8 180.87.12.1 187.80 ms http: 403 http: 403
9 80.231.217.196 183.75 ms http: 403 http: 403
10 80.231.217.2 183.87 ms http: 403 http: 403
11 80.231.200.78 184.15 ms http: 403 http: 403
12 195.219.87.2 188.29 ms http: 403 http: 403
13 195.219.156.146 243.28 ms http: 403 http: 403
14 188.43.202.234 221.34 ms http: 403 http: 403
15 188.43.202.233 217.75 ms http: 403 http: 403
16 188.43.202.233 346.58 ms http: 403 http: 403
17 *
18 *
19 *
20 *
21 *
22 *
23 *
24 *
25 *
26 *
27 *
28 *
29 *
30 *


Traceroute to Russia, Moscow MTS (TCP Mode, Max 30 Hop)
============================================================
traceroute to 195.34.32.71 (195.34.32.71), 30 hops max, 32 byte packets
1 103.107.8.1 0.41 ms http: 403 http: 403
2 *
3 84.17.33.38 1.74 ms http: 403 http: 403
4 63.217.254.209 2.52 ms http: 403 http: 403
5 63.223.43.198 157.87 ms http: 403 http: 403
6 *
7 4.69.135.162 274.74 ms http: 403 http: 403
8 213.242.69.98 267.65 ms http: 403 http: 403
9 212.188.54.1 275.22 ms http: 403 http: 403
10 212.188.2.38 292.73 ms http: 403 http: 403
11 195.34.50.150 280.93 ms http: 403 http: 403
12 195.34.53.253 284.13 ms http: 403 http: 403
13 195.34.32.71 285.11 ms http: 403 http: 403


-> Traceroute Test (IPV6)

Traceroute to China, Beijing CU IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2408:80f0:4100:2005::3 (2408:80f0:4100:2005::3), 30 hops max, 32 byte packets
1 2403:27c0:1000::1 1.48 ms http: 403 http: 403
2 fc00:1::2:1 3.66 ms http: 403 http: 403
3 fc00:8::1:1 0.87 ms http: 403 http: 403
4 2001:470:1:2e8::1 1.29 ms http: 403 http: 403
5 *
6 2001:470:0:613::2 40.13 ms http: 403 http: 403
7 *
8 2001:470:0:5ef::1 142.12 ms http: 403 http: 403
9 *
10 *
11 *
12 *
13 *
14 2408:8000:1100:320::3 306.82 ms http: 403 http: 403
15 2408:8000:1120:28f::3 297.09 ms http: 403 http: 403
16 2408:8000:1f10:3d01::3 302.94 ms http: 403 http: 403
17 2408:80f0:4100:2006::1 383.38 ms http: 403 http: 403
18 2408:80f0:4100:2006::b 416.91 ms http: 403 http: 403
19 *
20 *
21 *
22 *
23 *
24 *
25 *
26 *
27 *
28 *
29 *
30 *

Traceroute to China, Beijing CT IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2400:da00:2::29 (2400:da00:2::29), 30 hops max, 32 byte packets
1 2403:27c0:1000::1 1.14 ms http: 403 http: 403
2 fc00:1::2:1 1.53 ms http: 403 http: 403
3 fc00:8::1:1 4.79 ms http: 403 http: 403
4 2001:418:0:5000::10e9 161.71 ms http: 403 http: 403
5 2001:218:0:2000::266 156.55 ms http: 403 http: 403
6 2001:218:0:2000::235 182.81 ms http: 403 http: 403
7 2001:218:0:2000::c1 186.11 ms http: 403 http: 403
8 *
9 *
10 *
11 240e:0:a::c9:59c8 356.41 ms http: 403 http: 403
12 *
13 240e:1f:5000:f007::3 394.21 ms http: 403 http: 403
14 240e:1f:5800:4::3 364.17 ms http: 403 http: 403
15 240e:ff:ef80:3f:: 385.00 ms http: 403 http: 403
16 *
17 *
18 *
19 *
20 *
21 *
22 *
23 *
24 *
25 *
26 *
27 *
28 *
29 *
30 *

Traceroute to China, Beijing CM IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2409:8089:1020:50ff:1000::fd01 (2409:8089:1020:50ff:1000::fd01), 30 hops max, 32 byte packets
1 2403:27c0:1000::1 0.63 ms http: 403 http: 403
2 fc00:1::2:1 1.30 ms http: 403 http: 403
3 fc00:8::1:1 0.93 ms http: 403 http: 403
4 2001:470:1:2e8::1 1.08 ms http: 403 http: 403
5 2001:470:0:3c0::2 54.06 ms http: 403 http: 403
6 2001:470:0:268::1 135.02 ms http: 403 http: 403
7 *
8 *
9 2402:4f00:1000:100::72e 167.55 ms http: 403 http: 403
10 2409:8080:0:4:2f6:294:1:1 356.25 ms http: 403 http: 403
11 2409:8080:0:4:2c6:2f6:2:1 168.60 ms http: 403 http: 403
12 2409:8080:0:1:204:2c6:: 169.28 ms http: 403 http: 403
13 2409:8080:1:2:104:204:: 400.97 ms http: 403 http: 403
14 2409:8080:1:2:104:104:0:1 198.77 ms http: 403 http: 403
15 2409:8080:0:2:104:1b2:0:1 195.27 ms http: 403 http: 403
16 2409:8089:1020:50ff:1000::fd01 193.95 ms http: 403 http: 403

Traceroute to China, Shanghai CU IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2408:8000:9000:20e6::b7 (2408:8000:9000:20e6::b7), 30 hops max, 32 byte packets
1 2403:27c0:1000::1 0.61 ms http: 403 http: 403
2 fc00:1::2:1 1.79 ms http: 403 http: 403
3 fc00:8::1:1 0.75 ms http: 403 http: 403
4 2001:470:1:2e8::1 1.14 ms http: 403 http: 403
5 *
6 2001:470:0:613::2 40.31 ms http: 403 http: 403
7 *
8 2001:470:0:5ef::1 141.00 ms http: 403 http: 403
9 *
10 2408:8000:2:70b:: 295.44 ms http: 403 http: 403
11 *
12 2408:8000:2:805a:: 293.94 ms http: 403 http: 403
13 2408:8000:2:501:: 311.47 ms http: 403 http: 403
14 2408:8000:9000:20e6::b7 312.87 ms http: 403 http: 403

Traceroute to China, Shanghai CT IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 240e:18:10:a01::1 (240e:18:10:a01::1), 30 hops max, 32 byte packets
1 2403:27c0:1000::1 1.23 ms http: 403 http: 403
2 fc00:1::2:1 1.17 ms http: 403 http: 403
3 fc00:8::1:1 0.65 ms http: 403 http: 403
4 2001:470:1:2e8::1 1.55 ms http: 403 http: 403
5 *
6 2001:470:0:613::2 40.32 ms http: 403 http: 403
7 *
8 2001:470:0:5ef::1 140.66 ms http: 403 http: 403
9 *
10 240e:0:a::cb:34e4 274.16 ms http: 403 http: 403
11 *
12 240e:0:a::c9:5385 275.73 ms http: 403 http: 403
13 240e:18:10:a01::1 294.95 ms http: 403 http: 403

Traceroute to China, Shanghai CM IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2409:801e:5c03:2000::207 (2409:801e:5c03:2000::207), 30 hops max, 32 byte packets
1 2403:27c0:1000::1 0.79 ms http: 403 http: 403
2 fc00:1::2:1 0.75 ms http: 403 http: 403
3 fc00:8::1:1 0.73 ms http: 403 http: 403
4 2001:470:1:2e8::1 1.27 ms http: 403 http: 403
5 2001:470:0:3c0::2 54.18 ms http: 403 http: 403
6 2001:470:0:268::1 135.12 ms http: 403 http: 403
7 *
8 *
9 2402:4f00:1000:100::72e 167.33 ms http: 403 http: 403
10 2409:8080:0:4:2f6:294:1:1 356.65 ms http: 403 http: 403
11 2409:8080:0:4:2c6:2f6:2:1 169.13 ms http: 403 http: 403
12 2409:8080:0:1:206:2c6:: 169.99 ms http: 403 http: 403
13 2409:8080:0:2:206:276:0:1 368.47 ms http: 403 http: 403
14 2409:801e:f0:1::55f 170.85 ms http: 403 http: 403
15 2409:801e:5c01:2000::31 361.35 ms http: 403 http: 403
16 *
17 2409:801e:5c03:2000::207 369.23 ms http: 403 http: 403

Traceroute to China, Guangzhou CU IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2408:8001:3011:310::3 (2408:8001:3011:310::3), 30 hops max, 32 byte packets
1 2403:27c0:1000::1 0.70 ms http: 403 http: 403
2 fc00:1::2:1 1.67 ms http: 403 http: 403
3 fc00:8::1:1 0.80 ms http: 403 http: 403
4 2001:470:1:2e8::1 1.27 ms http: 403 http: 403
5 *
6 2001:470:0:613::2 55.97 ms http: 403 http: 403
7 *
8 2001:470:0:5ef::1 157.13 ms http: 403 http: 403
9 *
10 *
11 *
12 *
13 *
14 *
15 *
16 *
17 *
18 *
19 *
20 *
21 *
22 *
23 *
24 *
25 *
26 *
27 *
28 *
29 *
30 *

Traceroute to China, Guangzhou CT IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 240e:ff:e02c:1:21:: (240e:ff:e02c:1:21::), 30 hops max, 32 byte packets
1 2403:27c0:1000::1 2.83 ms http: 403 http: 403
2 fc00:1::2:1 0.75 ms http: 403 http: 403
3 fc00:8::1:1 0.73 ms http: 403 http: 403
4 2001:470:1:2e8::1 1.13 ms http: 403 http: 403
5 *
6 2001:470:0:613::2 40.31 ms http: 403 http: 403
7 *
8 2001:470:0:5ef::1 140.78 ms http: 403 http: 403
9 *
10 240e:0:a::cb:3360 289.01 ms http: 403 http: 403
11 240e:0:a::c9:5e74 323.85 ms http: 403 http: 403
12 240e:0:a::c9:5240 302.31 ms http: 403 http: 403
13 *
14 *
15 *
16 *
17 *
18 *
19 *
20 *
21 *
22 *
23 *
24 *
25 *
26 *
27 *
28 *
29 *
30 *

Traceroute to China, Guangzhou CM IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2409:8057:5c00:30::6 (2409:8057:5c00:30::6), 30 hops max, 32 byte packets
1 2403:27c0:1000::1 0.64 ms http: 403 http: 403
2 fc00:1::2:1 0.56 ms http: 403 http: 403
3 fc00:8::1:1 4.66 ms http: 403 http: 403
4 2001:470:1:2e8::1 1.16 ms http: 403 http: 403
5 2001:470:0:3c0::2 54.30 ms http: 403 http: 403
6 2001:470:0:268::1 135.10 ms http: 403 http: 403
7 *
8 *
9 2402:4f00:1000:100::72e 168.14 ms http: 403 http: 403
10 2409:8080:0:4:2f6:294:1:1 356.58 ms http: 403 http: 403
11 2409:8080:0:4:2c6:2f6:2:1 179.59 ms http: 403 http: 403
12 *
13 2409:8080:1:2:203:301:0:1 195.49 ms http: 403 http: 403
14 2409:8080:1:2:301:375:0:1 202.79 ms http: 403 http: 403
15 2409:8055:0:130e:: 387.30 ms http: 403 http: 403
16 2409:8055:1:b305:: 388.12 ms http: 403 http: 403
17 2409:8055:5c00:0:4c30::1 208.52 ms http: 403 http: 403
18 2409:8055:5c00:0:4c00::1 213.51 ms http: 403 http: 403
19 *
20 *
21 *
22 2409:8057:5c00:30::6 208.14 ms http: 403 http: 403

Traceroute to China, Beijing Dr.Peng IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2403:8880:400f::2 (2403:8880:400f::2), 30 hops max, 32 byte packets
1 2403:27c0:1000::1 0.75 ms http: 403 http: 403
2 fc00:1::2:1 0.72 ms http: 403 http: 403
3 fc00:8::1:1 0.84 ms http: 403 http: 403
4 2001:470:1:2e8::1 1.22 ms http: 403 http: 403
5 *
6 2001:7fa:0:1::ca28:a1be 36.63 ms http: 403 http: 403
7 *
8 2001:252:0:1::1 37.37 ms http: 403 http: 403
9 2001:da8:2:801::2 36.90 ms http: 403 http: 403
10 2400:a980:ff:29::2 37.58 ms http: 403 http: 403
11 2403:8880:400f::2 38.45 ms http: 403 http: 403

Traceroute to China, Beijing CERNET2 IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2001:da8:a0:1001::1 (2001:da8:a0:1001::1), 30 hops max, 32 byte packets
1 2403:27c0:1000::1 0.70 ms http: 403 http: 403
2 fc00:1::2:1 0.74 ms http: 403 http: 403
3 fc00:8::1:1 0.69 ms http: 403 http: 403
4 2001:470:1:2e8::1 1.20 ms http: 403 http: 403
5 *
6 *
7 *
8 2001:252:0:100::1 49.27 ms http: 403 http: 403
9 2001:252:0:1::1 37.24 ms http: 403 http: 403
10 2001:da8:a0:1001::1 36.33 ms http: 403 http: 403

Traceroute to China, Beijing CSTNET IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2400:dd00:0:37::213 (2400:dd00:0:37::213), 30 hops max, 32 byte packets
1 2403:27c0:1000::1 0.62 ms http: 403 http: 403
2 fc00:1::2:1 23.39 ms http: 403 http: 403
3 fc00:8::1:1 0.70 ms http: 403 http: 403
4 2001:418:0:5000::10e9 161.26 ms http: 403 http: 403
5 2001:218:0:2000::179 162.63 ms http: 403 http: 403
6 2001:218:0:2000::189 161.35 ms http: 403 http: 403
7 2001:218:0:2000::51 160.54 ms http: 403 http: 403
8 2001:418:0:2000::f6 161.14 ms http: 403 http: 403
9 *
10 *
11 *
12 *
13 2402:4480:2:3::1f:2 165.66 ms http: 403 http: 403
14 2400:dd00:0:41::195 204.11 ms http: 403 http: 403
15 2400:dd00:0:35::200 204.27 ms http: 403 http: 403
16 2400:dd00:0:37::213 198.99 ms http: 403 http: 403

Traceroute to China, Hongkong HKIX IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2001:7fa:0:1::ca28:a1a9 (2001:7fa:0:1::ca28:a1a9), 30 hops max, 32 byte packets
1 2403:27c0:1000::1 0.69 ms http: 403 http: 403
2 fc00:1::2:1 0.70 ms http: 403 http: 403
3 fc00:8::2:1 0.74 ms http: 403 http: 403
4 2001:7fa:0:1::ca28:a1a9 257.51 ms http: 403 http: 403

Traceroute to China, Hongkong HE IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2001:470:0:490::2 (2001:470:0:490::2), 30 hops max, 32 byte packets
1 2403:27c0:1000::1 0.65 ms http: 403 http: 403
2 fc00:1::2:1 0.81 ms http: 403 http: 403
3 fc00:8::1:1 4.36 ms http: 403 http: 403
4 2001:470:1:2e8::1 1.09 ms http: 403 http: 403
5 2001:470:0:490::2 4.03 ms http: 403 http: 403

Traceroute to United States, San Jose HE IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2001:470:1:ff::1 (2001:470:1:ff::1), 30 hops max, 32 byte packets
1 2403:27c0:1000::1 0.70 ms http: 403 http: 403
2 fc00:1::2:1 0.72 ms http: 403 http: 403
3 fc00:8::1:1 0.70 ms http: 403 http: 403
4 2001:470:1:2e8::1 20.45 ms http: 403 http: 403
5 2001:470:0:3c0::2 54.18 ms http: 403 http: 403
6 2001:470:0:4d9::1 161.02 ms http: 403 http: 403
7 2001:470:1:ff::1 162.23 ms http: 403 http: 403

Traceroute to United States, Chicago NTT IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2001:418:0:5000::1026 (2001:418:0:5000::1026), 30 hops max, 32 byte packets
1 2403:27c0:1000::1 1.62 ms http: 403 http: 403
2 fc00:1::2:1 0.75 ms http: 403 http: 403
3 fc00:8::1:1 0.83 ms http: 403 http: 403
4 2001:418:0:5000::10e9 161.45 ms http: 403 http: 403
5 2001:218:0:2000::179 162.20 ms http: 403 http: 403
6 2001:218:0:2000::189 159.84 ms http: 403 http: 403
7 2001:218:0:2000::199 162.01 ms http: 403 http: 403
8 2001:418:0:2000::27a 169.93 ms http: 403 http: 403
9 2001:418:0:2000::16 198.08 ms http: 403 http: 403
10 2001:418:0:2000::235 186.47 ms http: 403 http: 403
11 2001:418:0:5000::1026 188.27 ms http: 403 http: 403

Traceroute to United States, Los Angeles Telia IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2001:2000:3080:1e96::2 (2001:2000:3080:1e96::2), 30 hops max, 32 byte packets
1 2403:27c0:1000::1 0.53 ms http: 403 http: 403
2 fc00:1::2:1 0.70 ms http: 403 http: 403
3 fc00:8::1:1 0.89 ms http: 403 http: 403
4 2001:470:1:2e8::1 1.02 ms http: 403 http: 403
5 2001:470:0:166::2 1.26 ms http: 403 http: 403
6 *
7 2001:2034:0:133::1 164.23 ms http: 403 http: 403
8 2001:2034:0:16f::1 164.02 ms http: 403 http: 403
9 2001:2000:3080:1e96::2 150.96 ms http: 403 http: 403

Traceroute to United States, Los Angeles GTT IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2001:668:0:3:ffff:0:d8dd:9d5a (2001:668:0:3:ffff:0:d8dd:9d5a), 30 hops max, 32 byte packets
1 2403:27c0:1000::1 0.54 ms http: 403 http: 403
2 fc00:1::2:1 0.79 ms http: 403 http: 403
3 fc00:8::1:1 0.75 ms http: 403 http: 403
4 2001:470:1:2e8::1 1.13 ms http: 403 http: 403
5 *
6 *
7 *
8 2001:470:0:336::2 192.27 ms http: 403 http: 403
9 2001:470:0:433::2 184.14 ms http: 403 http: 403
10 *
11 2001:7f8::cb9:0:3 2204.53 ms http: 403 http: 403
12 *
13 *
14 *
15 *
16 *
17 *
18 *
19 *
20 *
21 *
22 *
23 *
24 *
25 *
26 *
27 *
28 *
29 *
30 *

Traceroute to United States, Kansas City Sprint IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2600:0:1:1239:144:228:241:71 (2600:0:1:1239:144:228:241:71), 30 hops max, 32 byte packets
1 2403:27c0:1000::1 0.55 ms http: 403 http: 403
2 fc00:1::2:1 0.81 ms http: 403 http: 403
3 fc00:8::1:1 0.66 ms http: 403 http: 403
4 2001:470:1:2e8::1 1.19 ms http: 403 http: 403
5 *
6 2001:7fa:0:1::ca28:a1bb 3.06 ms http: 403 http: 403
7 2600:0:2:1239:203:222:33:148 52.58 ms http: 403 http: 403
8 2600:0:2:1239:203:222:36:49 52.58 ms http: 403 http: 403
9 2600:0:2:1239:144:232:0:80 156.55 ms http: 403 http: 403
10 2600:0:2:1239:144:232:22:179 159.27 ms http: 403 http: 403
11 2600:0:2:1239:144:232:15:238 158.11 ms http: 403 http: 403
12 2600:0:2:1239:144:232:15:166 190.88 ms http: 403 http: 403
13 2600:0:1:1239:144:228:241:71 192.45 ms http: 403 http: 403

Traceroute to United States, Los Angeles Verizon IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2600:80a:2::15 (2600:80a:2::15), 30 hops max, 32 byte packets
1 2403:27c0:1000::1 0.73 ms http: 403 http: 403
2 fc00:1::2:1 1.70 ms http: 403 http: 403
3 fc00:8::1:1 6.26 ms http: 403 http: 403
4 2001:470:1:2e8::1 1.15 ms http: 403 http: 403
5 2001:470:0:3c0::2 54.10 ms http: 403 http: 403
6 2001:470:0:268::1 135.17 ms http: 403 http: 403
7 2001:470:0:3be::2 135.31 ms http: 403 http: 403
8 2600:80a:2::15 150.92 ms http: 403 http: 403

Traceroute to United Status, Ashburn Cogentco IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2001:550:0:1000::9a36:4215 (2001:550:0:1000::9a36:4215), 30 hops max, 32 byte packets
1 2403:27c0:1000::1 0.61 ms http: 403 http: 403
2 fc00:1::2:1 0.80 ms http: 403 http: 403
3 fc00:8::1:1 0.71 ms http: 403 http: 403
4 2001:418:0:5000::10e9 161.27 ms http: 403 http: 403
5 2001:218:0:2000::179 162.32 ms http: 403 http: 403
6 2001:218:0:2000::189 161.78 ms http: 403 http: 403
7 2001:218:0:2000::51 164.93 ms http: 403 http: 403
8 2001:418:0:2000::f6 162.45 ms http: 403 http: 403
9 *
10 *
11 *
12 *
13 *
14 *
15 *
16 *
17 *
18 *
19 *
20 *
21 *
22 *
23 *
24 *
25 *
26 *
27 *
28 *
29 *
30 *

Traceroute to United States, San Jose Level3 IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2001:1900:2100::2eb5 (2001:1900:2100::2eb5), 30 hops max, 32 byte packets
1 2403:27c0:1000::1 0.58 ms http: 403 http: 403
2 fc00:1::2:1 0.81 ms http: 403 http: 403
3 fc00:8::1:1 0.63 ms http: 403 http: 403
4 2001:470:1:2e8::1 1.00 ms http: 403 http: 403
5 *
6 2001:1900:7:3::31 2.04 ms http: 403 http: 403
7 2001:1900:2100::2eb5 138.96 ms http: 403 http: 403

Traceroute to United States, Seattle Zayo IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2001:438:ffff::407d:d6a (2001:438:ffff::407d:d6a), 30 hops max, 32 byte packets
1 2403:27c0:1000::1 0.59 ms http: 403 http: 403
2 fc00:1::2:1 0.61 ms http: 403 http: 403
3 fc00:8::1:1 0.77 ms http: 403 http: 403
4 2001:470:1:2e8::1 1.03 ms http: 403 http: 403
5 2001:470:0:3c0::2 54.19 ms http: 403 http: 403
6 2001:470:0:268::1 135.41 ms http: 403 http: 403
7 2001:504:16::193d 135.63 ms http: 403 http: 403
8 2001:438:ffff::407d:1d69 135.70 ms http: 403 http: 403
9 2001:438:ffff::407d:d6a 157.36 ms http: 403 http: 403

Traceroute to France, Paris HE IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2001:470:0:349::1 (2001:470:0:349::1), 30 hops max, 32 byte packets
1 2403:27c0:1000::1 0.65 ms http: 403 http: 403
2 fc00:1::2:1 0.82 ms http: 403 http: 403
3 fc00:8::1:1 1.09 ms http: 403 http: 403
4 2001:470:1:2e8::1 1.77 ms http: 403 http: 403
5 *
6 *
7 *
8 2001:470:0:349::1 178.30 ms http: 403 http: 403

Traceroute to German, Frankfurt NTT IPV6 (ICMP Mode, Max 30 Hop)
============================================================
traceroute to 2001:728:0:5000::6f6 (2001:728:0:5000::6f6), 30 hops max, 32 byte packets
1 2403:27c0:1000::1 0.64 ms http: 403 http: 403
2 fc00:1::2:1 1.70 ms http: 403 http: 403
3 fc00:8::1:1 0.79 ms http: 403 http: 403
4 2001:418:0:5000::10e9 161.18 ms http: 403 http: 403
5 2001:218:0:2000::266 156.28 ms http: 403 http: 403
6 *
7 2001:218:0:2000::16 187.69 ms http: 403 http: 403
8 2001:728:0:2000::1c2 187.83 ms http: 403 http: 403
9 2001:728:0:2000::176 188.66 ms http: 403 http: 403
10 2001:728:0:2000::32 193.78 ms http: 403 http: 403
11 2001:728:0:5000::6f6 192.02 ms http: 403 http: 403


Generated by LemonBench on 2022-02-16T12:39:56Z Version 20201005 Intl BetaVersion, Hosted by DMIT.IO

CubeCloud 香港 VPS 评测
https://www.hostevaluate.com/2022/02/16/Blog/review_274/
作者
Paji
发布于
2022年2月16日
许可协议