Oracle Cloud 韩国首尔 ARM VPS 评测

总结

CPU 单核性能很猛,但是 IO 是这几家大公有云供应商都有的问题。

机器配置

配置 详情
vCore 4
RAM 24GB
Disk 48GB HDD
流量@带宽 1Gbps
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
LemonBench Linux System Benchmark Utility Version 20201005 Intl BetaVersion 

Bench Start Time: 2021-05-26 05:33:37
Bench Finish Time: 2021-05-26 06:00:49
Test Mode: Full Mode

-> System Information

OS Release: Ubuntu 20.04.2 LTS (Focal Fossa) (aarch64)
CPU Model: 0.00 GHz
CPU Cache Size:
CPU Number: 0 vCPU
Virt Type: KVM
Memory Usage: 324.25 MB / 23.32 GB
Swap Usage: [ No Swapfile / Swap partition ]
Disk Usage: 1.87 GB / 50.64 GB
Boot Device: /dev/sda1
Load (1/5/15min): 0.43 0.21 0.12
CPU Usage: 1.6% used, 0.0% iowait, 0.0% steal
Kernel Version: 5.4.0-1045-oracle
Network CC Method: bbr + fq

-> Network Information

IPV4 - IP Address: [KR] 152.70.246.*
IPV4 - ASN Info: 31898 (ORACLE-BMC-31898 - Oracle Corporation, US)
IPV4 - Region: Republic of Korea Seoul

-> 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: No
Bilibili Taiwan Only: No

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

1 Thread Test: 3508 Scores
4 Threads Test: 14023 Scores

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

1 Thread - Read Test : 29932.73 MB/s
1 Thread - Write Test: 14642.66 MB/s

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

Test Name Write Speed Read Speed
10MB-4K Block 10.1 MB/s (2464 IOPS, 1.04 s) 9.9 MB/s (2419 IOPS, 1.06 s)
10MB-1M Block 244 MB/s (232 IOPS, 0.04 s) 345 MB/s (328 IOPS, 0.03 s)
100MB-4K Block 10.0 MB/s (2440 IOPS, 10.49 s) 11.9 MB/s (2911 IOPS, 8.79 s)
100MB-1M Block 329 MB/s (313 IOPS, 0.32 s) 79.1 MB/s (75 IOPS, 1.33 s)
1GB-4K Block 11.4 MB/s (2786 IOPS, 91.87 s) 11.2 MB/s (2729 IOPS, 93.78 s)
1GB-1M Block 56.1 MB/s (53 IOPS, 18.70 s) 52.5 MB/s (50 IOPS, 19.97 s)

-> Speedtest.net Network Speed Test

Node Name Upload Speed Download Speed Ping Latency Server Name
Speedtest Default 80.30 MB/s 70.99 MB/s 2.63 ms kdatacenter.com (South Korea Seoul)
China, Nanjing CU 13.76 MB/s 121.01 MB/s 63.80 ms China Unicom (China Nanjing)
China, Shanghai CU 26.16 MB/s 119.37 MB/s 35.79 ms China Unicom 5G (China ShangHai)
China, Hangzhou CT 17.01 MB/s 105.89 MB/s 63.95 ms China Telecom ZheJiang Branch (China Hangzhou)
China, Nanjing CT 28.30 MB/s 114.09 MB/s 29.12 ms China Telecom JiangSu 5G (China Nanjing)
China, Guangzhou CT Fail: Timeout Exceeded after 60 seconds
China, Wuhan CT Fail: Latency test failed for both TCP, and no HTTP URL available.
China, Shenyang CM Fail: Timeout Exceeded after 60 seconds
China, Hangzhou CM Fail: Timeout Exceeded after 60 seconds
China, Nanning CM 34.23 MB/s 105.71 MB/s 106.22 ms GX ChinaMobile (China Nanning)
China, Lanzhou CM 40.25 MB/s 89.62 MB/s 219.32 ms Lanzhou,China Mobile,Gansu (China Lanzhou)
Hong Kong, CSL 91.84 MB/s 90.35 MB/s 45.18 ms CSL (Hong Kong Kwai Chung)
Hong Kong, PCCW 116.95 MB/s 120.86 MB/s 44.93 ms STC (China Hong Kong)
Korea, South Korea 71.56 MB/s 33.43 MB/s 7.82 ms kdatacenter.com (South Korea Seoul)
Japan, GLBB 41.40 MB/s 121.72 MB/s 32.45 ms Allied Telesis Capital Corporation (Japan Fussa-shi)
Taiwan, FET Fail: Timeout Exceeded after 60 seconds
Taiwan, Chief 88.14 MB/s 118.25 MB/s 111.49 ms Chief Telecom (Taiwan Taoyuan)
Taiwan, TWM 118.50 MB/s 119.19 MB/s 75.01 ms Taiwan Mobile (Taiwan Taoyuan)
Singapore, Singtel 26.76 MB/s 120.71 MB/s 237.68 ms Singtel (Singapore Singapore)
Singapore, M1 54.82 MB/s 120.76 MB/s 79.29 ms M1 Limited (Singapore Singapore)
Singapore, NME 119.99 MB/s 105.14 MB/s 98.39 ms NewMedia Express (Republic of Singapore Singapore)
USA, Century Link 49.86 MB/s 42.11 MB/s 194.82 ms CenturyLink (United States Seattle, WA)

-> 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 140.91.214.29 0.32 ms AS31898 Republic of Korea, Seoul, oracle.com
2 121.78.30.14 0.83 ms AS9286 Republic of Korea, Seoul, kinx.net
3 121.78.30.13 1.01 ms AS9286 Republic of Korea, Seoul, kinx.net
4 121.78.30.73 1.56 ms AS9286 Republic of Korea, Seoul, kinx.net
5 218.185.245.61 2.30 ms AS4809 Republic of Korea, Seoul, ChinaTelecom
6 59.43.250.33 23.30 ms * China, ChinaTelecom
7 59.43.246.217 23.96 ms * China, ChinaTelecom
8 59.43.130.217 38.76 ms * China, ChinaTelecom
9 *
10 202.97.33.97 60.90 ms AS4134 China, ChinaTelecom
11 202.97.18.122 51.15 ms AS4134 China, ChinaTelecom
12 219.158.41.21 47.60 ms AS4837 China, ChinaUnicom
13 219.158.5.137 70.04 ms AS4837 China, ChinaUnicom
14 *
15 61.148.157.170 54.30 ms AS4808 China, Beijing, ChinaUnicom
16 61.148.158.102 50.00 ms AS4808 China, Beijing, ChinaUnicom
17 61.135.113.158 55.87 ms AS4808 China, Beijing, ChinaUnicom
18 *
19 *
20 123.125.99.1 57.79 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 140.91.214.26 0.28 ms AS31898 Republic of Korea, Seoul, oracle.com
2 121.78.30.14 0.99 ms AS9286 Republic of Korea, Seoul, kinx.net
3 121.78.30.13 0.95 ms AS9286 Republic of Korea, Seoul, kinx.net
4 203.195.115.17 2.00 ms AS4809 Republic of Korea, Seoul, ChinaTelecom
5 59.43.250.33 28.05 ms * China, ChinaTelecom
6 59.43.247.125 73.80 ms * China, ChinaTelecom
7 *
8 59.43.132.17 68.56 ms * China, ChinaTelecom
9 *
10 219.142.9.110 61.80 ms AS4847 China, Beijing, ChinaTelecom
11 180.149.128.1 79.61 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 140.91.214.1 0.52 ms AS31898 Republic of Korea, Seoul, oracle.com
2 121.78.30.14 0.75 ms AS9286 Republic of Korea, Seoul, kinx.net
3 121.78.30.13 0.93 ms AS9286 Republic of Korea, Seoul, kinx.net
4 223.119.19.153 33.76 ms AS58453 China, Hong Kong, ChinaMobile
5 223.120.3.117 41.59 ms AS58453 China, ChinaMobile
6 *
7 *
8 *
9 *
10 *
11 111.24.2.109 193.34 ms AS9808 China, ChinaMobile
12 111.24.14.54 194.73 ms AS9808 China, ChinaMobile
13 211.136.67.113 194.10 ms AS56048 China, Beijing, ChinaMobile
14 211.136.63.66 194.01 ms AS56048 China, Beijing, ChinaMobile
15 211.136.67.166 196.05 ms AS56048 China, Beijing, ChinaMobile
16 *
17 *
18 211.136.25.153 196.97 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 140.91.214.25 0.46 ms AS31898 Republic of Korea, Seoul, oracle.com
2 121.78.30.14 0.82 ms AS9286 Republic of Korea, Seoul, kinx.net
3 121.78.30.13 18.17 ms AS9286 Republic of Korea, Seoul, kinx.net
4 203.195.115.17 3.43 ms AS4809 Republic of Korea, Seoul, ChinaTelecom
5 59.43.247.41 38.74 ms * China, ChinaTelecom
6 59.43.187.57 31.56 ms * China, ChinaTelecom
7 59.43.130.205 36.94 ms * China, ChinaTelecom
8 219.158.40.173 31.84 ms AS4837 China, ChinaUnicom
9 219.158.9.97 26.11 ms AS4837 China, ChinaUnicom
10 *
11 112.64.252.197 54.64 ms AS17621 China, Shanghai, ChinaUnicom
12 58.247.0.49 28.26 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 140.91.214.6 0.47 ms AS31898 Republic of Korea, Seoul, oracle.com
2 121.78.30.14 0.84 ms AS9286 Republic of Korea, Seoul, kinx.net
3 121.78.30.13 20.19 ms AS9286 Republic of Korea, Seoul, kinx.net
4 203.195.115.17 5.64 ms AS4809 Republic of Korea, Seoul, ChinaTelecom
5 59.43.187.209 35.38 ms * China, ChinaTelecom
6 *
7 59.43.130.209 37.96 ms * China, ChinaTelecom
8 *
9 *
10 101.95.225.34 37.66 ms AS4811 China, Shanghai, ChinaTelecom
11 101.227.255.46 46.87 ms AS4812 China, Shanghai, ChinaTelecom
12 *
13 101.227.250.3 75.68 ms AS4812 China, Shanghai, ChinaTelecom
14 *
15 180.153.28.1 50.49 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 140.91.214.2 0.24 ms AS31898 Republic of Korea, Seoul, oracle.com
2 121.78.30.14 0.72 ms AS9286 Republic of Korea, Seoul, kinx.net
3 121.78.30.13 0.93 ms AS9286 Republic of Korea, Seoul, kinx.net
4 223.119.19.153 33.67 ms AS58453 China, Hong Kong, ChinaMobile
5 223.120.3.117 37.19 ms AS58453 China, ChinaMobile
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, Guangzhou CU (TCP Mode, Max 30 Hop)
============================================================
traceroute to 210.21.4.130 (210.21.4.130), 30 hops max, 32 byte packets
1 140.91.214.27 0.26 ms AS31898 Republic of Korea, Seoul, oracle.com
2 121.78.30.14 0.85 ms AS9286 Republic of Korea, Seoul, kinx.net
3 121.78.30.13 0.93 ms AS9286 Republic of Korea, Seoul, kinx.net
4 203.195.115.13 2.57 ms AS4809 Republic of Korea, Seoul, ChinaTelecom
5 59.43.187.209 32.56 ms * China, ChinaTelecom
6 59.43.187.57 43.81 ms * China, ChinaTelecom
7 59.43.130.213 30.81 ms * China, ChinaTelecom
8 59.43.46.78 61.92 ms * China, ChinaTelecom
9 219.158.38.245 71.44 ms AS4837 China, ChinaUnicom
10 219.158.10.249 52.16 ms AS4837 China, ChinaUnicom
11 120.86.0.182 74.27 ms AS17816 China, Guangdong, Foshan, ChinaUnicom
12 120.80.170.254 87.45 ms AS17622 China, Guangdong, Guangzhou, ChinaUnicom
13 *
14 *
15 *
16 *
17 *
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 140.91.214.7 0.24 ms AS31898 Republic of Korea, Seoul, oracle.com
2 121.78.30.14 0.68 ms AS9286 Republic of Korea, Seoul, kinx.net
3 121.78.30.13 0.98 ms AS9286 Republic of Korea, Seoul, kinx.net
4 203.195.115.13 70.02 ms AS4809 Republic of Korea, Seoul, ChinaTelecom
5 59.43.250.33 114.91 ms * China, ChinaTelecom
6 *
7 59.43.138.45 140.90 ms * China, ChinaTelecom
8 59.43.80.138 124.60 ms * China, ChinaTelecom
9 202.97.19.178 145.30 ms AS4134 China, ChinaTelecom
10 113.96.0.89 174.92 ms AS58466 China, Guangdong, Guangzhou, ChinaTelecom
11 113.108.209.1 185.57 ms AS58466 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 140.91.214.26 0.26 ms AS31898 Republic of Korea, Seoul, oracle.com
2 121.78.30.14 0.81 ms AS9286 Republic of Korea, Seoul, kinx.net
3 121.78.30.13 0.94 ms AS9286 Republic of Korea, Seoul, kinx.net
4 223.119.19.153 33.41 ms AS58453 China, Hong Kong, ChinaMobile
5 223.120.3.117 37.40 ms AS58453 China, ChinaMobile
6 *
7 *
8 221.183.55.90 78.10 ms AS9808 China, ChinaMobile
9 221.176.19.189 72.74 ms AS9808 China, ChinaMobile
10 221.183.68.138 72.66 ms AS9808 China, ChinaMobile
11 111.24.5.177 76.55 ms AS9808 China, ChinaMobile
12 111.24.5.210 76.54 ms AS9808 China, ChinaMobile
13 211.136.204.93 79.72 ms AS56040 China, Guangdong, Guangzhou, ChinaMobile
14 211.139.129.5 81.69 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 140.91.214.2 0.25 ms AS31898 Republic of Korea, Seoul, oracle.com
2 121.78.30.14 12.46 ms AS9286 Republic of Korea, Seoul, kinx.net
3 121.78.30.13 0.96 ms AS9286 Republic of Korea, Seoul, kinx.net
4 203.195.115.13 13.77 ms AS4809 Republic of Korea, Seoul, ChinaTelecom
5 *
6 59.43.187.61 98.62 ms Limit Exceeded! ([email protected])
7 *
8 59.43.80.110 121.36 ms Limit Exceeded! ([email protected])
9 202.97.46.14 121.82 ms Limit Exceeded! ([email protected])
10 202.97.16.66 136.39 ms Limit Exceeded! ([email protected])
11 *
12 218.105.2.210 73.16 ms Limit Exceeded! ([email protected])
13 *
14 210.13.66.237 72.51 ms Limit Exceeded! ([email protected])
15 210.13.66.238 102.12 ms Limit Exceeded! ([email protected])


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 140.91.214.5 0.27 ms Limit Exceeded! ([email protected])
2 121.78.30.14 0.68 ms Limit Exceeded! ([email protected])
3 121.78.30.13 0.93 ms Limit Exceeded! ([email protected])
4 203.195.115.17 24.93 ms Limit Exceeded! ([email protected])
5 59.43.247.41 41.47 ms Limit Exceeded! ([email protected])
6 59.43.187.57 26.83 ms Limit Exceeded! ([email protected])
7 59.43.130.217 102.96 ms Limit Exceeded! ([email protected])
8 101.95.88.62 85.77 ms Limit Exceeded! ([email protected])
9 58.32.0.1 47.41 ms Limit Exceeded! ([email protected])


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 140.91.214.6 0.39 ms Limit Exceeded! ([email protected])
2 121.78.30.14 5.80 ms Limit Exceeded! ([email protected])
3 121.78.30.13 0.90 ms Limit Exceeded! ([email protected])
4 203.195.115.13 38.58 ms Limit Exceeded! ([email protected])
5 59.43.187.209 69.06 ms Limit Exceeded! ([email protected])
6 59.43.246.217 91.98 ms Limit Exceeded! ([email protected])
7 59.43.138.45 98.61 ms Limit Exceeded! ([email protected])
8 59.43.141.145 83.55 ms Limit Exceeded! ([email protected])
9 *
10 119.121.0.1 153.59 ms Limit Exceeded! ([email protected])


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 140.91.214.25 0.33 ms Limit Exceeded! ([email protected])
2 121.78.30.14 0.84 ms Limit Exceeded! ([email protected])
3 121.78.30.13 21.07 ms Limit Exceeded! ([email protected])
4 121.78.30.73 1.61 ms Limit Exceeded! ([email protected])
5 218.185.245.61 1.88 ms Limit Exceeded! ([email protected])
6 59.43.250.33 23.29 ms Limit Exceeded! ([email protected])
7 *
8 59.43.130.193 68.93 ms Limit Exceeded! ([email protected])
9 59.43.80.138 29.19 ms Limit Exceeded! ([email protected])
10 202.97.56.145 51.75 ms Limit Exceeded! ([email protected])
11 202.97.91.93 90.01 ms Limit Exceeded! ([email protected])
12 219.158.44.113 62.95 ms Limit Exceeded! ([email protected])
13 219.158.13.77 95.94 ms Limit Exceeded! ([email protected])
14 202.96.12.122 57.16 ms Limit Exceeded! ([email protected])
15 202.96.13.178 93.98 ms Limit Exceeded! ([email protected])
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 140.91.214.6 0.57 ms Limit Exceeded! ([email protected])
2 121.78.30.14 0.84 ms Limit Exceeded! ([email protected])
3 121.78.30.13 0.94 ms Limit Exceeded! ([email protected])
4 203.195.115.17 14.23 ms Limit Exceeded! ([email protected])
5 59.43.250.33 23.18 ms Limit Exceeded! ([email protected])
6 *
7 *
8 59.43.80.14 68.40 ms Limit Exceeded! ([email protected])
9 202.97.97.233 55.77 ms Limit Exceeded! ([email protected])
10 202.97.88.246 114.39 ms Limit Exceeded! ([email protected])
11 219.158.41.21 68.36 ms Limit Exceeded! ([email protected])
12 219.158.13.77 60.63 ms Limit Exceeded! ([email protected])
13 202.96.12.90 76.89 ms Limit Exceeded! ([email protected])
14 202.96.13.198 95.47 ms Limit Exceeded! ([email protected])
15 61.51.37.206 51.97 ms Limit Exceeded! ([email protected])
16 218.241.244.6 60.93 ms Limit Exceeded! ([email protected])
17 218.241.255.86 50.80 ms Limit Exceeded! ([email protected])
18 218.241.245.94 68.73 ms Limit Exceeded! ([email protected])
19 218.241.245.158 77.88 ms Limit Exceeded! ([email protected])
20 *
21 211.167.230.100 49.69 ms Limit Exceeded! ([email protected])


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 140.91.214.3 0.27 ms Limit Exceeded! ([email protected])
2 121.78.30.14 0.75 ms Limit Exceeded! ([email protected])
3 121.78.30.13 0.96 ms Limit Exceeded! ([email protected])
4 203.195.115.17 1.94 ms Limit Exceeded! ([email protected])
5 59.43.250.33 37.69 ms Limit Exceeded! ([email protected])
6 59.43.186.245 54.58 ms Limit Exceeded! ([email protected])
7 *
8 202.97.70.237 57.25 ms Limit Exceeded! ([email protected])
9 202.97.82.86 74.36 ms Limit Exceeded! ([email protected])
10 202.97.63.198 68.98 ms Limit Exceeded! ([email protected])
11 *
12 101.4.117.33 83.82 ms Limit Exceeded! ([email protected])
13 101.4.112.38 88.39 ms Limit Exceeded! ([email protected])
14 101.4.117.38 101.48 ms Limit Exceeded! ([email protected])
15 101.4.112.1 89.71 ms Limit Exceeded! ([email protected])
16 101.4.113.110 100.68 ms Limit Exceeded! ([email protected])
17 219.224.102.230 123.60 ms Limit Exceeded! ([email protected])
18 202.112.38.82 112.61 ms Limit Exceeded! ([email protected])
19 202.205.109.205 103.29 ms Limit Exceeded! ([email protected])


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 140.91.214.25 0.34 ms Limit Exceeded! ([email protected])
2 121.78.89.146 0.79 ms Limit Exceeded! ([email protected])
3 121.78.89.145 1.09 ms Limit Exceeded! ([email protected])
4 203.246.163.93 1.15 ms Limit Exceeded! ([email protected])
5 *
6 159.226.254.213 46.46 ms Limit Exceeded! ([email protected])
7 159.226.254.9 61.13 ms Limit Exceeded! ([email protected])
8 159.226.254.1 70.04 ms Limit Exceeded! ([email protected])


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 140.91.214.2 0.59 ms Limit Exceeded! ([email protected])
2 121.78.30.14 19.68 ms Limit Exceeded! ([email protected])
3 121.78.30.13 1.03 ms Limit Exceeded! ([email protected])
4 203.195.115.17 2.30 ms Limit Exceeded! ([email protected])
5 59.43.247.41 50.24 ms Limit Exceeded! ([email protected])
6 59.43.247.125 69.35 ms Limit Exceeded! ([email protected])
7 *
8 59.43.131.253 60.00 ms Limit Exceeded! ([email protected])
9 *
10 106.120.252.154 74.94 ms Limit Exceeded! ([email protected])
11 60.247.93.254 46.83 ms Limit Exceeded! ([email protected])
12 211.156.128.249 61.37 ms Limit Exceeded! ([email protected])
13 211.156.128.230 62.26 ms Limit Exceeded! ([email protected])
14 211.156.140.17 60.87 ms Limit Exceeded! ([email protected])


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 140.91.214.7 0.25 ms Limit Exceeded!
2 121.78.30.14 0.76 ms Limit Exceeded!
3 121.78.30.13 0.98 ms Limit Exceeded!
4 203.195.115.17 3.78 ms Limit Exceeded!
5 59.43.250.33 23.34 ms Limit Exceeded!
6 59.43.246.213 25.73 ms Limit Exceeded!
7 59.43.130.217 42.54 ms Limit Exceeded!
8 219.158.38.241 35.73 ms Limit Exceeded!
9 219.158.113.197 36.65 ms Limit Exceeded!
10 219.158.6.214 64.94 ms Limit Exceeded!
11 219.158.8.114 56.92 ms Limit Exceeded!
12 219.158.98.94 76.36 ms Limit Exceeded!
13 219.158.10.54 81.03 ms Limit Exceeded!
14 202.77.23.26 72.63 ms Limit Exceeded!
15 119.252.139.14 65.96 ms Limit Exceeded!
16 202.77.22.89 71.79 ms Limit Exceeded!
17 203.160.95.218 65.20 ms Limit Exceeded!


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 140.91.214.31 0.23 ms Limit Exceeded!
2 116.0.77.10 0.70 ms Limit Exceeded!
3 116.0.77.9 2.66 ms Limit Exceeded!
4 180.87.181.92 177.87 ms Limit Exceeded!
5 180.87.181.73 69.99 ms Limit Exceeded!
6 64.86.252.216 177.77 ms Limit Exceeded!
7 64.86.252.63 181.47 ms Limit Exceeded!
8 202.97.83.237 149.79 ms Limit Exceeded!
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 140.91.214.5 0.21 ms Limit Exceeded!
2 1.255.14.55 0.79 ms Limit Exceeded!
3 1.255.14.54 0.95 ms Limit Exceeded!
4 1.255.36.50 1.47 ms Limit Exceeded!
5 *
6 58.229.15.97 35.57 ms Limit Exceeded!
7 1.254.241.33 58.14 ms Limit Exceeded!
8 59.43.187.22 42.82 ms Limit Exceeded!
9 203.8.25.187 43.00 ms Limit Exceeded!


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 140.91.214.27 0.35 ms Limit Exceeded!
2 121.78.30.14 0.76 ms Limit Exceeded!
3 121.78.30.13 1.02 ms Limit Exceeded!
4 223.119.19.153 35.68 ms Limit Exceeded!
5 223.120.3.117 34.82 ms Limit Exceeded!
6 223.120.3.98 41.47 ms Limit Exceeded!
7 223.120.3.90 39.73 ms Limit Exceeded!
8 223.119.17.1 40.52 ms Limit Exceeded!
9 *
10 203.142.126.6 42.69 ms Limit Exceeded!
11 203.142.126.18 40.57 ms Limit Exceeded!
12 203.142.100.22 40.30 ms Limit Exceeded!
13 203.142.105.9 40.58 ms Limit Exceeded!


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 140.91.214.1 0.30 ms Limit Exceeded!
2 116.0.77.10 0.70 ms Limit Exceeded!
3 116.0.77.9 6.73 ms Limit Exceeded!
4 116.0.67.37 52.14 ms Limit Exceeded!
5 180.87.112.142 53.26 ms Limit Exceeded!
6 120.29.216.42 56.10 ms Limit Exceeded!
7 218.189.5.24 53.37 ms Limit Exceeded!
8 218.188.104.30 54.14 ms Limit Exceeded!


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 140.91.214.7 0.40 ms Limit Exceeded!
2 116.0.77.10 0.87 ms Limit Exceeded!
3 116.0.77.9 2.26 ms Limit Exceeded!
4 116.0.67.37 52.29 ms Limit Exceeded!
5 180.87.112.229 53.41 ms Limit Exceeded!
6 61.244.225.100 45.90 ms Limit Exceeded!
7 203.186.235.137 57.31 ms Limit Exceeded!
8 *
9 210.6.23.239 49.66 ms Limit Exceeded!


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 140.91.214.26 0.30 ms Limit Exceeded!
2 121.78.89.146 1.10 ms Limit Exceeded!
3 121.78.89.145 0.96 ms Limit Exceeded!
4 203.246.163.93 1.22 ms Limit Exceeded!
5 123.255.91.17 47.47 ms Limit Exceeded!
6 202.153.103.69 47.17 ms Limit Exceeded!
7 202.153.99.203 50.29 ms Limit Exceeded!
8 203.215.244.33 46.64 ms Limit Exceeded!
9 202.85.125.60 47.54 ms Limit Exceeded!


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 140.91.214.5 0.25 ms Limit Exceeded!
2 121.78.89.146 0.78 ms Limit Exceeded!
3 121.78.89.145 1.09 ms Limit Exceeded!
4 203.246.163.93 1.02 ms Limit Exceeded!
5 *
6 203.78.72.192 200.74 ms Limit Exceeded!
7 203.78.73.75 195.25 ms Limit Exceeded!
8 *
9 202.123.76.239 206.84 ms Limit Exceeded!


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 140.91.214.25 0.55 ms Limit Exceeded!
2 116.0.77.10 0.77 ms Limit Exceeded!
3 116.0.77.9 2.07 ms Limit Exceeded!
4 116.0.67.37 54.43 ms Limit Exceeded!
5 180.87.112.142 53.05 ms Limit Exceeded!
6 116.0.93.245 53.85 ms Limit Exceeded!
7 115.160.187.110 55.07 ms Limit Exceeded!
8 *
9 59.152.252.196 53.58 ms Limit Exceeded!
10 59.152.252.242 58.05 ms Limit Exceeded!


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 140.91.214.25 0.34 ms Limit Exceeded!
2 116.0.77.10 0.92 ms Limit Exceeded!
3 116.0.77.9 2.19 ms Limit Exceeded!
4 180.87.181.92 178.30 ms Limit Exceeded!
5 180.87.181.73 78.18 ms Limit Exceeded!
6 64.86.252.56 170.38 ms Limit Exceeded!
7 64.86.252.63 180.27 ms Limit Exceeded!
8 202.97.92.161 165.70 ms Limit Exceeded!
9 202.97.59.169 148.60 ms Limit Exceeded!
10 203.215.233.1 211.65 ms Limit Exceeded!


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 140.91.214.25 0.29 ms Limit Exceeded!
2 1.255.14.55 0.94 ms Limit Exceeded!
3 1.255.14.54 0.83 ms Limit Exceeded!
4 175.126.127.189 8.23 ms Limit Exceeded!
5 *
6 58.229.15.97 35.57 ms Limit Exceeded!
7 1.254.241.33 42.68 ms Limit Exceeded!
8 59.43.249.190 76.61 ms Limit Exceeded!
9 183.91.61.1 85.71 ms Limit Exceeded!


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 140.91.214.3 0.32 ms Limit Exceeded!
2 116.0.77.10 0.78 ms Limit Exceeded!
3 116.0.77.9 2.11 ms Limit Exceeded!
4 116.0.67.37 54.15 ms Limit Exceeded!
5 116.0.67.170 52.06 ms Limit Exceeded!
6 203.208.171.230 222.54 ms Limit Exceeded!
7 203.208.172.214 237.01 ms Limit Exceeded!
8 203.208.177.214 237.54 ms Limit Exceeded!
9 165.21.138.86 243.55 ms Limit Exceeded!
10 165.21.138.66 244.53 ms Limit Exceeded!
11 *
12 165.21.49.126 230.42 ms Limit Exceeded!
13 203.125.232.130 227.44 ms Limit Exceeded!
14 118.201.1.11 227.49 ms Limit Exceeded!


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 140.91.214.6 0.36 ms Limit Exceeded!
2 116.0.77.10 1.17 ms Limit Exceeded!
3 116.0.77.9 2.24 ms Limit Exceeded!
4 116.0.67.37 86.15 ms Limit Exceeded!
5 116.0.93.138 86.26 ms Limit Exceeded!
6 180.87.15.80 88.46 ms Limit Exceeded!
7 61.8.243.1 86.61 ms Limit Exceeded!
8 *
9 203.116.46.33 88.50 ms Limit Exceeded!


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 140.91.214.31 0.53 ms Limit Exceeded!
2 116.0.77.10 0.73 ms Limit Exceeded!
3 116.0.77.9 2.41 ms Limit Exceeded!
4 180.87.181.92 177.98 ms Limit Exceeded!
5 180.87.180.1 176.79 ms Limit Exceeded!
6 64.86.252.216 177.26 ms Limit Exceeded!
7 63.243.250.56 176.36 ms Limit Exceeded!
8 *
9 *
10 62.115.125.163 146.80 ms Limit Exceeded!
11 62.115.125.163 146.62 ms Limit Exceeded!
12 202.65.246.222 188.20 ms Limit Exceeded!
13 202.65.246.186 196.30 ms Limit Exceeded!
14 *
15 202.65.246.186 199.48 ms Limit Exceeded!
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 140.91.214.31 0.24 ms Limit Exceeded!
2 121.78.89.146 0.76 ms Limit Exceeded!
3 121.78.89.145 1.07 ms Limit Exceeded!
4 210.173.176.139 239.25 ms Limit Exceeded!
5 87.245.234.154 264.05 ms Limit Exceeded!
6 87.245.240.221 109.72 ms Limit Exceeded!
7 203.211.159.149 103.43 ms Limit Exceeded!
8 118.189.38.17 107.02 ms Limit Exceeded!


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 140.91.214.30 0.63 ms Limit Exceeded!
2 1.255.14.55 2.33 ms Limit Exceeded!
3 1.255.14.54 0.83 ms Limit Exceeded!
4 1.255.36.60 3.66 ms Limit Exceeded!
5 *
6 1.255.24.179 1.18 ms Limit Exceeded!
7 211.210.54.89 1.35 ms Limit Exceeded!
8 52.93.137.75 1.98 ms Limit Exceeded!
9 52.93.137.220 1.62 ms Limit Exceeded!
10 54.239.123.218 73.19 ms Limit Exceeded!
11 54.239.45.5 72.86 ms Limit Exceeded!
12 *
13 *
14 *
15 *
16 52.93.11.111 70.89 ms Limit Exceeded!
17 52.93.9.159 73.58 ms Limit Exceeded!
18 203.83.223.200 74.82 ms Limit Exceeded!
19 *
20 *
21 *
22 *
23 *
24 *
25 13.228.0.251 76.60 ms Limit Exceeded!


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 140.91.214.26 0.28 ms Limit Exceeded!
2 121.78.89.146 1.04 ms Limit Exceeded!
3 121.78.89.145 1.05 ms Limit Exceeded!
4 203.246.163.93 1.10 ms Limit Exceeded!
5 61.251.96.9 69.31 ms Limit Exceeded!
6 129.250.4.4 68.97 ms Limit Exceeded!
7 129.250.3.22 67.09 ms Limit Exceeded!
8 61.213.179.34 67.08 ms Limit Exceeded!
9 *
10 *
11 61.213.155.84 87.52 ms Limit Exceeded!


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 140.91.214.6 0.38 ms Limit Exceeded!
2 116.0.77.10 0.81 ms Limit Exceeded!
3 116.0.77.9 2.22 ms Limit Exceeded!
4 116.0.67.37 52.28 ms Limit Exceeded!
5 180.87.112.150 52.11 ms Limit Exceeded!
6 58.138.80.246 52.11 ms Limit Exceeded!
7 58.138.81.173 68.61 ms Limit Exceeded!
8 58.138.101.14 68.26 ms Limit Exceeded!
9 210.130.142.114 68.80 ms Limit Exceeded!
10 202.232.15.70 69.35 ms Limit Exceeded!


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 140.91.214.1 0.45 ms Limit Exceeded!
2 116.0.77.10 0.85 ms Limit Exceeded!
3 116.0.77.9 2.12 ms Limit Exceeded!
4 180.87.181.92 31.14 ms Limit Exceeded!
5 120.29.217.10 31.38 ms Limit Exceeded!
6 *
7 221.110.34.229 31.72 ms Limit Exceeded!
8 *
9 143.90.232.241 33.74 ms Limit Exceeded!
10 143.90.47.9 32.20 ms Limit Exceeded!
11 143.90.161.50 32.30 ms Limit Exceeded!
12 143.90.54.30 32.74 ms Limit Exceeded!
13 210.175.32.123 32.97 ms Limit Exceeded!
14 210.175.32.26 33.05 ms Limit Exceeded!


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 140.91.214.6 0.33 ms Limit Exceeded!
2 116.0.77.10 0.98 ms Limit Exceeded!
3 116.0.77.9 7.00 ms Limit Exceeded!
4 180.87.181.92 31.11 ms Limit Exceeded!
5 116.0.90.86 36.06 ms Limit Exceeded!
6 116.0.90.86 31.74 ms Limit Exceeded!
7 27.85.133.213 31.69 ms Limit Exceeded!
8 27.85.133.234 34.53 ms Limit Exceeded!
9 182.248.164.94 31.51 ms Limit Exceeded!
10 59.128.99.97 31.61 ms Limit Exceeded!
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 140.91.214.27 0.52 ms Limit Exceeded!
2 116.0.77.10 0.78 ms Limit Exceeded!
3 116.0.77.9 17.87 ms Limit Exceeded!
4 180.87.181.92 177.77 ms Limit Exceeded!
5 180.87.181.73 68.96 ms Limit Exceeded!
6 *
7 64.86.252.63 173.12 ms Limit Exceeded!
8 202.97.92.161 172.11 ms Limit Exceeded!
9 202.97.6.89 156.06 ms Limit Exceeded!
10 203.215.236.3 141.08 ms Limit Exceeded!


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 140.91.214.26 0.22 ms Limit Exceeded!
2 1.255.14.55 0.95 ms Limit Exceeded!
3 1.255.14.54 0.88 ms Limit Exceeded!
4 1.255.26.105 1.65 ms Limit Exceeded!
5 *
6 58.229.15.97 35.55 ms Limit Exceeded!
7 1.254.241.33 42.74 ms Limit Exceeded!
8 59.43.184.198 65.95 ms Limit Exceeded!
9 202.55.27.4 70.41 ms Limit Exceeded!


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 140.91.214.25 0.25 ms Limit Exceeded!
2 1.255.14.55 1.92 ms Limit Exceeded!
3 1.255.14.54 0.88 ms Limit Exceeded!
4 *
5 *
6 1.255.24.173 1.18 ms Limit Exceeded!
7 211.210.54.85 1.45 ms Limit Exceeded!
8 *
9 *
10 52.93.46.51 2.36 ms Limit Exceeded!
11 54.239.123.27 5.63 ms Limit Exceeded!
12 150.222.244.19 34.19 ms Limit Exceeded!
13 *
14 52.95.31.148 33.16 ms Limit Exceeded!
15 *
16 *
17 52.95.31.212 38.66 ms Limit Exceeded!
18 52.95.31.92 33.85 ms Limit Exceeded!
19 52.93.72.209 35.30 ms Limit Exceeded!
20 52.93.250.36 34.08 ms Limit Exceeded!
21 *
22 *
23 *
24 *
25 *
26 13.112.63.251 34.79 ms Limit Exceeded!


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 140.91.214.31 0.52 ms Limit Exceeded!
2 121.189.3.238 0.82 ms Limit Exceeded!
3 121.189.3.237 1.00 ms Limit Exceeded!
4 *
5 112.174.21.70 5.53 ms Limit Exceeded!
6 112.188.246.210 1.92 ms Limit Exceeded!
7 220.90.203.6 2.78 ms Limit Exceeded!
8 211.37.137.22 3.12 ms Limit Exceeded!
9 210.114.41.101 2.37 ms Limit Exceeded!


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 140.91.214.3 0.48 ms Limit Exceeded!
2 1.255.14.55 0.93 ms Limit Exceeded!
3 1.255.14.54 0.95 ms Limit Exceeded!
4 1.255.36.48 1.59 ms Limit Exceeded!
5 *
6 175.122.253.62 0.99 ms Limit Exceeded!


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 140.91.214.31 0.19 ms Limit Exceeded!
2 1.255.14.55 0.98 ms Limit Exceeded!
3 1.255.14.54 0.83 ms Limit Exceeded!
4 *
5 *
6 210.107.53.117 1.63 ms Limit Exceeded!
7 1.208.112.121 10.54 ms Limit Exceeded!
8 1.208.164.166 1.88 ms Limit Exceeded!
9 *
10 *
11 *
12 211.174.62.44 2.24 ms Limit Exceeded!


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 140.91.214.27 0.58 ms Limit Exceeded!
2 1.255.14.55 0.84 ms Limit Exceeded!
3 1.255.14.54 0.77 ms Limit Exceeded!
4 1.255.36.42 4.08 ms Limit Exceeded!
5 58.229.11.198 5.36 ms Limit Exceeded!
6 110.9.3.82 1.65 ms Limit Exceeded!
7 59.43.184.10 2.74 ms Limit Exceeded!
8 218.185.246.3 1.94 ms Limit Exceeded!


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 140.91.214.31 0.27 ms Limit Exceeded!
2 1.255.14.55 0.78 ms Limit Exceeded!
3 1.255.14.54 0.90 ms Limit Exceeded!
4 1.255.23.253 3.13 ms Limit Exceeded!
5 52.93.248.14 1.95 ms Limit Exceeded!
6 52.93.248.87 1.60 ms Limit Exceeded!
7 52.93.137.183 2.64 ms Limit Exceeded!
8 54.239.41.237 3.28 ms Limit Exceeded!
9 52.93.248.136 4.64 ms Limit Exceeded!
10 52.93.248.162 2.34 ms Limit Exceeded!
11 54.239.45.5 20.21 ms Limit Exceeded!
12 54.239.122.177 5.27 ms Limit Exceeded!
13 52.93.248.199 4.28 ms Limit Exceeded!
14 54.239.123.141 2.34 ms Limit Exceeded!
15 *
16 *
17 *
18 *
19 *
20 *
21 13.124.63.251 2.72 ms Limit Exceeded!


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 140.91.214.26 0.28 ms Limit Exceeded!
2 121.78.30.14 0.86 ms Limit Exceeded!
3 121.78.30.13 0.95 ms Limit Exceeded!
4 223.119.19.153 33.51 ms Limit Exceeded!
5 223.120.3.117 33.72 ms Limit Exceeded!
6 223.120.3.98 46.58 ms Limit Exceeded!
7 *
8 223.120.2.62 40.39 ms Limit Exceeded!
9 223.118.4.238 63.30 ms Limit Exceeded!
10 *
11 103.123.253.13 76.32 ms Limit Exceeded!
12 113.21.95.72 71.28 ms Limit Exceeded!
13 103.123.254.38 71.48 ms Limit Exceeded!
14 202.133.242.114 70.18 ms Limit Exceeded!
15 202.133.242.116 71.74 ms Limit Exceeded!


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 140.91.214.5 0.27 ms Limit Exceeded!
2 116.0.77.10 0.74 ms Limit Exceeded!
3 116.0.77.9 2.23 ms Limit Exceeded!
4 116.0.67.37 53.27 ms Limit Exceeded!
5 180.87.112.138 86.87 ms Limit Exceeded!
6 175.41.60.57 101.54 ms Limit Exceeded!
7 203.78.181.134 104.25 ms Limit Exceeded!
8 203.78.187.78 73.20 ms Limit Exceeded!
9 211.76.96.176 81.32 ms Limit Exceeded!
10 211.76.100.53 74.54 ms Limit Exceeded!
11 210.200.80.254 74.37 ms Limit Exceeded!
12 210.200.80.254 76.97 ms Limit Exceeded!
13 210.200.69.90 74.82 ms Limit Exceeded!


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 140.91.214.30 0.47 ms Limit Exceeded!
2 116.0.77.10 0.83 ms Limit Exceeded!
3 116.0.77.9 2.24 ms Limit Exceeded!
4 116.0.67.37 52.33 ms Limit Exceeded!
5 116.0.93.138 52.68 ms Limit Exceeded!
6 211.22.33.178 79.26 ms Limit Exceeded!
7 220.128.3.146 74.06 ms Limit Exceeded!
8 220.128.2.14 81.35 ms Limit Exceeded!
9 220.128.1.225 77.05 ms Limit Exceeded!
10 211.22.229.45 82.89 ms Limit Exceeded!
11 1.1.1.2 75.77 ms Limit Exceeded!
12 *
13 *
14 203.75.129.162 77.84 ms Limit Exceeded!


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 140.91.214.5 0.49 ms Limit Exceeded!
2 116.0.77.10 16.36 ms Limit Exceeded!
3 116.0.77.9 5.94 ms Limit Exceeded!
4 116.0.77.17 1.66 ms Limit Exceeded!
5 63.223.19.162 74.69 ms Limit Exceeded!
6 63.223.19.162 74.87 ms Limit Exceeded!
7 63.222.54.34 66.21 ms Limit Exceeded!
8 60.199.18.10 75.20 ms Limit Exceeded!
9 60.199.3.122 66.28 ms Limit Exceeded!
10 60.199.16.62 75.01 ms Limit Exceeded!
11 219.87.66.3 68.39 ms Limit Exceeded!


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 140.91.214.26 0.33 ms Limit Exceeded!
2 121.78.89.146 1.05 ms Limit Exceeded!
3 121.78.89.145 1.00 ms Limit Exceeded!
4 210.173.176.139 227.84 ms Limit Exceeded!
5 87.245.232.200 261.36 ms Limit Exceeded!
6 87.245.240.49 70.33 ms Limit Exceeded!
7 192.72.155.25 73.65 ms Limit Exceeded!
8 192.72.155.86 68.69 ms Limit Exceeded!
9 *
10 *
11 *
12 211.73.144.38 71.81 ms Limit Exceeded!


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 140.91.214.1 0.65 ms Limit Exceeded!
2 116.0.77.10 0.77 ms Limit Exceeded!
3 116.0.77.9 2.40 ms Limit Exceeded!
4 116.0.67.37 52.19 ms Limit Exceeded!
5 180.87.112.138 86.98 ms Limit Exceeded!
6 175.41.60.57 103.67 ms Limit Exceeded!
7 175.41.61.174 104.23 ms Limit Exceeded!
8 175.41.61.166 105.52 ms Limit Exceeded!
9 203.187.6.193 104.14 ms Limit Exceeded!
10 203.187.9.226 104.56 ms Limit Exceeded!
11 58.86.1.174 103.51 ms Limit Exceeded!
12 61.63.63.6 101.68 ms Limit Exceeded!
13 58.86.0.206 116.97 ms Limit Exceeded!
14 61.63.0.123 106.00 ms Limit Exceeded!
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 140.91.214.7 0.39 ms Limit Exceeded!
2 121.78.89.146 0.86 ms Limit Exceeded!
3 121.78.89.145 1.15 ms Limit Exceeded!
4 113.29.48.89 9.15 ms Limit Exceeded!
5 4.69.206.174 93.07 ms Limit Exceeded!
6 211.22.33.202 136.89 ms Limit Exceeded!
7 220.128.6.205 138.10 ms Limit Exceeded!
8 220.128.6.198 136.98 ms Limit Exceeded!
9 220.128.12.38 111.43 ms Limit Exceeded!
10 220.128.27.78 111.85 ms Limit Exceeded!
11 220.128.1.237 111.47 ms Limit Exceeded!
12 210.242.214.5 112.28 ms Limit Exceeded!
13 *
14 103.31.197.66 109.43 ms Limit Exceeded!
15 *
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 140.91.214.2 0.29 ms Limit Exceeded!
2 116.0.77.10 0.98 ms Limit Exceeded!
3 116.0.77.9 2.38 ms Limit Exceeded!
4 180.87.181.92 177.90 ms Limit Exceeded!
5 180.87.181.73 68.97 ms Limit Exceeded!
6 64.86.252.216 169.96 ms Limit Exceeded!
7 64.86.252.63 171.94 ms Limit Exceeded!
8 202.97.93.161 148.24 ms Limit Exceeded!
9 218.30.33.17 227.28 ms Limit Exceeded!


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 140.91.214.1 0.26 ms Limit Exceeded!
2 116.0.77.10 1.11 ms Limit Exceeded!
3 116.0.77.9 6.30 ms Limit Exceeded!
4 180.87.181.92 178.23 ms Limit Exceeded!
5 180.87.180.1 176.80 ms Limit Exceeded!
6 120.29.217.67 102.10 ms Limit Exceeded!
7 63.243.250.56 176.31 ms Limit Exceeded!
8 *
9 62.115.125.163 146.52 ms Limit Exceeded!
10 80.239.128.214 145.96 ms Limit Exceeded!
11 62.115.125.163 148.74 ms Limit Exceeded!
12 66.102.252.100 145.62 ms Limit Exceeded!


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 140.91.214.30 0.32 ms Limit Exceeded!
2 116.0.77.10 0.86 ms Limit Exceeded!
3 116.0.77.9 5.17 ms Limit Exceeded!
4 116.0.77.17 1.83 ms Limit Exceeded!
5 *
6 *
7 *
8 *
9 63.218.42.81 180.27 ms Limit Exceeded!


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 140.91.214.31 0.44 ms Limit Exceeded!
2 121.78.89.146 0.87 ms Limit Exceeded!
3 121.78.89.145 0.98 ms Limit Exceeded!
4 203.246.163.93 1.11 ms Limit Exceeded!
5 27.50.33.213 136.70 ms Limit Exceeded!
6 184.105.64.65 145.79 ms Limit Exceeded!
7 184.104.195.1 163.39 ms Limit Exceeded!
8 72.52.92.121 131.96 ms Limit Exceeded!
9 66.220.18.42 131.73 ms Limit Exceeded!


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 140.91.214.30 0.20 ms Limit Exceeded!
2 116.0.77.10 0.82 ms Limit Exceeded!
3 116.0.77.9 5.04 ms Limit Exceeded!
4 180.87.181.92 177.84 ms Limit Exceeded!
5 180.87.181.73 78.36 ms Limit Exceeded!
6 64.86.252.216 177.16 ms Limit Exceeded!
7 64.86.252.66 170.88 ms Limit Exceeded!
8 206.82.129.251 163.69 ms Limit Exceeded!
9 23.203.155.191 174.33 ms Limit Exceeded!
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 140.91.214.5 0.33 ms Limit Exceeded!
2 116.0.77.10 0.74 ms Limit Exceeded!
3 116.0.77.9 3.97 ms Limit Exceeded!
4 180.87.181.92 168.69 ms Limit Exceeded!
5 180.87.181.73 68.87 ms Limit Exceeded!
6 120.29.217.67 69.65 ms Limit Exceeded!
7 209.58.86.142 166.12 ms Limit Exceeded!
8 63.243.205.72 169.14 ms Limit Exceeded!
9 192.205.37.69 175.32 ms Limit Exceeded!
10 12.122.114.6 187.81 ms Limit Exceeded!
11 12.122.149.85 179.18 ms Limit Exceeded!
12 12.244.156.30 180.78 ms Limit Exceeded!
13 12.169.215.33 176.19 ms Limit Exceeded!


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 140.91.214.2 0.84 ms Limit Exceeded!
2 116.0.77.10 0.90 ms Limit Exceeded!
3 116.0.77.9 8.57 ms Limit Exceeded!
4 180.87.181.92 230.55 ms Limit Exceeded!
5 180.87.181.73 70.45 ms Limit Exceeded!
6 120.29.211.2 68.54 ms Limit Exceeded!
7 209.58.86.142 233.98 ms Limit Exceeded!
8 63.243.205.72 231.75 ms Limit Exceeded!
9 63.243.128.28 231.32 ms Limit Exceeded!
10 63.243.128.142 251.00 ms Limit Exceeded!
11 216.6.90.73 231.97 ms Limit Exceeded!
12 209.58.75.198 232.31 ms Limit Exceeded!
13 *
14 66.198.181.100 232.88 ms Limit Exceeded!


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 140.91.214.2 0.27 ms Limit Exceeded!
2 116.0.77.10 0.70 ms Limit Exceeded!
3 116.0.77.9 2.18 ms Limit Exceeded!
4 180.87.181.92 177.59 ms Limit Exceeded!
5 180.87.181.73 77.45 ms Limit Exceeded!
6 64.86.252.56 171.62 ms Limit Exceeded!
7 64.86.252.63 176.57 ms Limit Exceeded!
8 202.97.93.161 140.20 ms Limit Exceeded!
9 218.30.33.17 215.87 ms Limit Exceeded!


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 140.91.214.26 0.33 ms Limit Exceeded!
2 121.78.89.146 0.74 ms Limit Exceeded!
3 121.78.89.145 1.02 ms Limit Exceeded!
4 203.246.163.93 1.04 ms Limit Exceeded!
5 61.251.96.9 69.55 ms Limit Exceeded!
6 129.250.4.4 69.22 ms Limit Exceeded!
7 129.250.5.78 135.34 ms Limit Exceeded!
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 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 140.91.214.30 0.27 ms Limit Exceeded!
2 121.78.89.146 1.13 ms Limit Exceeded!
3 121.78.89.145 0.97 ms Limit Exceeded!
4 203.246.163.93 1.00 ms Limit Exceeded!
5 27.50.33.213 136.66 ms Limit Exceeded!
6 184.105.64.65 145.70 ms Limit Exceeded!
7 184.104.194.37 146.06 ms Limit Exceeded!
8 184.105.213.158 159.67 ms Limit Exceeded!
9 72.52.104.74 145.13 ms Limit Exceeded!


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 140.91.214.5 0.22 ms Limit Exceeded!
2 121.78.89.146 0.76 ms Limit Exceeded!
3 121.78.89.145 0.97 ms Limit Exceeded!
4 113.29.48.89 2.40 ms Limit Exceeded!
5 *
6 4.68.75.122 175.61 ms Limit Exceeded!
7 67.14.54.174 214.77 ms Limit Exceeded!
8 216.34.172.42 201.14 ms Limit Exceeded!
9 216.39.66.4 208.92 ms Limit Exceeded!
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 ZAYO (TCP Mode, Max 30 Hop)
============================================================
traceroute to 64.125.191.31 (64.125.191.31), 30 hops max, 32 byte packets
1 140.91.214.31 0.35 ms Limit Exceeded!
2 116.0.77.10 1.05 ms Limit Exceeded!
3 116.0.77.9 2.24 ms Limit Exceeded!
4 180.87.181.92 177.80 ms Limit Exceeded!
5 180.87.181.73 68.95 ms Limit Exceeded!
6 *
7 64.86.252.66 172.32 ms Limit Exceeded!
8 *
9 64.125.25.122 209.28 ms Limit Exceeded!
10 64.125.29.52 211.52 ms Limit Exceeded!
11 64.125.28.98 216.98 ms Limit Exceeded!
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 140.91.214.26 0.35 ms Limit Exceeded!
2 121.78.89.146 0.80 ms Limit Exceeded!
3 121.78.89.145 1.01 ms Limit Exceeded!
4 203.246.163.93 1.06 ms Limit Exceeded!
5 223.119.19.49 33.70 ms Limit Exceeded!
6 223.120.3.117 33.93 ms Limit Exceeded!
7 223.120.3.102 36.12 ms Limit Exceeded!
8 223.120.2.137 33.38 ms Limit Exceeded!
9 223.120.12.49 145.11 ms Limit Exceeded!
10 223.120.6.2 143.10 ms Limit Exceeded!
11 223.120.6.218 145.10 ms Limit Exceeded!
12 38.104.85.161 143.43 ms Limit Exceeded!
13 154.54.27.117 144.87 ms Limit Exceeded!
14 154.54.44.85 156.76 ms Limit Exceeded!
15 154.54.42.66 165.02 ms Limit Exceeded!
16 154.54.29.221 181.35 ms Limit Exceeded!
17 154.54.28.129 194.10 ms Limit Exceeded!
18 154.54.24.221 202.97 ms Limit Exceeded!
19 154.54.46.194 203.67 ms Limit Exceeded!
20 38.140.164.58 204.11 ms Limit Exceeded!
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 140.91.214.26 0.24 ms Limit Exceeded!
2 116.0.77.10 8.27 ms Limit Exceeded!
3 116.0.77.9 2.17 ms Limit Exceeded!
4 180.87.181.92 177.69 ms Limit Exceeded!
5 180.87.181.73 69.00 ms Limit Exceeded!
6 *
7 64.86.252.66 165.29 ms Limit Exceeded!
8 80.150.168.245 176.14 ms Limit Exceeded!
9 91.23.215.9 267.04 ms Limit Exceeded!
10 80.146.191.1 272.17 ms Limit Exceeded!


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 140.91.214.7 0.31 ms Limit Exceeded!
2 116.0.77.10 0.76 ms Limit Exceeded!
3 116.0.77.9 6.14 ms Limit Exceeded!
4 180.87.181.92 240.14 ms Limit Exceeded!
5 180.87.181.73 69.08 ms Limit Exceeded!
6 *
7 216.6.87.110 235.71 ms Limit Exceeded!
8 63.243.137.134 237.30 ms Limit Exceeded!
9 216.6.87.171 222.92 ms Limit Exceeded!
10 94.142.98.241 281.70 ms Limit Exceeded!
11 176.52.248.140 260.66 ms Limit Exceeded!
12 176.52.252.29 261.33 ms Limit Exceeded!
13 62.53.8.188 262.93 ms Limit Exceeded!
14 62.53.28.152 280.64 ms Limit Exceeded!
15 62.53.2.45 268.50 ms Limit Exceeded!
16 62.53.236.49 270.60 ms Limit Exceeded!
17 82.113.108.25 266.67 ms Limit Exceeded!


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 140.91.214.1 0.31 ms Limit Exceeded!
2 121.78.89.146 1.01 ms Limit Exceeded!
3 121.78.89.145 1.09 ms Limit Exceeded!
4 27.50.33.193 168.66 ms Limit Exceeded!
5 184.105.222.102 188.79 ms Limit Exceeded!
6 184.105.65.14 256.69 ms Limit Exceeded!
7 184.105.80.134 251.50 ms Limit Exceeded!
8 72.52.92.85 243.29 ms Limit Exceeded!
9 80.81.193.117 231.79 ms Limit Exceeded!
10 *
11 145.253.5.57 235.04 ms Limit Exceeded!
12 92.79.230.2 232.41 ms Limit Exceeded!
13 139.7.148.84 238.00 ms Limit Exceeded!
14 *
15 *
16 *
17 *
18 139.7.146.11 235.64 ms Limit Exceeded!


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 140.91.214.5 0.46 ms Limit Exceeded!
2 116.0.77.10 0.78 ms Limit Exceeded!
3 116.0.77.9 2.30 ms Limit Exceeded!
4 180.87.181.92 177.80 ms Limit Exceeded!
5 180.87.181.73 68.69 ms Limit Exceeded!
6 64.86.252.216 169.80 ms Limit Exceeded!
7 64.86.252.63 172.85 ms Limit Exceeded!
8 202.97.93.161 148.06 ms Limit Exceeded!
9 202.97.90.138 227.23 ms Limit Exceeded!
10 118.85.205.101 244.85 ms Limit Exceeded!


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 140.91.214.31 0.31 ms Limit Exceeded!
2 116.0.77.10 0.79 ms Limit Exceeded!
3 116.0.77.9 2.20 ms Limit Exceeded!
4 180.87.181.92 177.93 ms Limit Exceeded!
5 180.87.181.73 69.06 ms Limit Exceeded!
6 120.29.211.2 68.33 ms Limit Exceeded!
7 66.110.59.1 169.90 ms Limit Exceeded!
8 *
9 63.243.250.63 177.56 ms Limit Exceeded!
10 62.115.114.87 254.38 ms Limit Exceeded!
11 62.115.141.245 209.03 ms Limit Exceeded!
12 *
13 80.239.193.226 241.57 ms Limit Exceeded!
14 59.43.180.113 238.87 ms Limit Exceeded!
15 59.43.180.113 239.11 ms Limit Exceeded!
16 5.10.138.33 246.70 ms Limit Exceeded!


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 140.91.214.3 0.30 ms Limit Exceeded!
2 116.0.77.10 0.66 ms Limit Exceeded!
3 116.0.77.9 2.52 ms Limit Exceeded!
4 180.87.181.92 178.63 ms Limit Exceeded!
5 180.87.181.73 69.30 ms Limit Exceeded!
6 *
7 213.200.65.70 255.51 ms Limit Exceeded!


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 140.91.214.30 0.29 ms Limit Exceeded!
2 121.78.89.146 0.91 ms Limit Exceeded!
3 121.78.89.145 0.97 ms Limit Exceeded!
4 154.18.20.33 1.42 ms Limit Exceeded!
5 154.54.30.206 37.84 ms Limit Exceeded!
6 154.54.1.117 193.15 ms Limit Exceeded!
7 130.117.50.165 229.87 ms Limit Exceeded!
8 154.54.58.233 212.57 ms Limit Exceeded!
9 154.54.56.34 239.03 ms Limit Exceeded!
10 212.20.150.5 239.01 ms Limit Exceeded!


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 140.91.214.25 0.25 ms Limit Exceeded!
2 116.0.77.10 0.99 ms Limit Exceeded!
3 116.0.77.9 2.15 ms Limit Exceeded!
4 116.0.67.37 232.91 ms Limit Exceeded!
5 116.0.93.146 234.36 ms Limit Exceeded!
6 116.0.93.142 244.43 ms Limit Exceeded!
7 180.87.12.1 235.75 ms Limit Exceeded!
8 *
9 80.231.217.6 242.84 ms Limit Exceeded!
10 80.231.153.49 239.30 ms Limit Exceeded!
11 80.231.153.21 246.36 ms Limit Exceeded!
12 80.231.153.21 246.97 ms Limit Exceeded!
13 195.2.9.94 260.31 ms Limit Exceeded!
14 *
15 *
16 *
17 194.62.232.211 261.81 ms Limit Exceeded!


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 140.91.214.27 0.34 ms Limit Exceeded!
2 116.0.77.10 1.09 ms Limit Exceeded!
3 116.0.77.9 2.00 ms Limit Exceeded!
4 116.0.67.37 238.17 ms Limit Exceeded!
5 116.0.93.138 250.78 ms Limit Exceeded!
6 116.0.93.142 249.62 ms Limit Exceeded!
7 180.87.12.1 242.25 ms Limit Exceeded!
8 80.231.217.90 252.66 ms Limit Exceeded!
9 80.231.217.2 253.65 ms Limit Exceeded!
10 195.219.87.168 247.20 ms Limit Exceeded!
11 195.219.87.168 248.72 ms Limit Exceeded!
12 195.219.87.18 245.20 ms Limit Exceeded!
13 166.49.208.34 266.33 ms Limit Exceeded!
14 166.49.209.195 241.87 ms Limit Exceeded!
15 217.32.170.171 254.03 ms Limit Exceeded!
16 62.6.201.174 253.37 ms Limit Exceeded!
17 194.72.7.101 241.44 ms Limit Exceeded!
18 *
19 *
20 *
21 *
22 213.121.43.24 255.13 ms Limit Exceeded!


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 140.91.214.7 0.34 ms Limit Exceeded!
2 116.0.77.10 0.90 ms Limit Exceeded!
3 116.0.77.9 2.04 ms Limit Exceeded!
4 116.0.67.37 52.02 ms Limit Exceeded!
5 116.0.93.136 52.26 ms Limit Exceeded!
6 116.0.82.63 52.05 ms Limit Exceeded!
7 180.87.12.1 88.68 ms Limit Exceeded!
8 80.231.217.196 226.45 ms Limit Exceeded!
9 80.231.217.2 230.65 ms Limit Exceeded!
10 80.231.200.14 261.20 ms Limit Exceeded!
11 80.231.131.34 260.17 ms Limit Exceeded!


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 140.91.214.25 0.43 ms Limit Exceeded!
2 116.0.77.10 0.74 ms Limit Exceeded!
3 116.0.77.9 2.25 ms Limit Exceeded!
4 180.87.181.92 177.88 ms Limit Exceeded!
5 180.87.181.73 69.11 ms Limit Exceeded!
6 *
7 64.86.252.63 176.98 ms Limit Exceeded!
8 202.97.50.82 174.47 ms Limit Exceeded!
9 202.97.52.13 165.94 ms Limit Exceeded!
10 202.97.30.226 200.65 ms Limit Exceeded!
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 140.91.214.27 0.31 ms Limit Exceeded!
2 116.0.77.10 0.80 ms Limit Exceeded!
3 116.0.77.9 2.45 ms Limit Exceeded!
4 180.87.181.92 178.10 ms Limit Exceeded!
5 180.87.180.1 176.81 ms Limit Exceeded!
6 180.87.180.13 73.12 ms Limit Exceeded!
7 63.243.250.56 176.16 ms Limit Exceeded!
8 63.243.250.63 176.97 ms Limit Exceeded!
9 62.115.121.221 201.99 ms Limit Exceeded!
10 *
11 62.115.136.200 203.77 ms Limit Exceeded!
12 62.115.120.239 237.02 ms Limit Exceeded!
13 62.115.120.239 241.16 ms Limit Exceeded!
14 *
15 185.75.173.17 233.07 ms Limit Exceeded!


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 140.91.214.3 0.41 ms Limit Exceeded!
2 116.0.77.10 0.95 ms Limit Exceeded!
3 116.0.77.9 5.95 ms Limit Exceeded!
4 180.87.181.92 190.12 ms Limit Exceeded!
5 180.87.181.73 69.19 ms Limit Exceeded!
6 120.29.211.2 68.33 ms Limit Exceeded!
7 66.110.59.1 178.01 ms Limit Exceeded!
8 66.110.59.8 177.81 ms Limit Exceeded!
9 *
10 62.115.121.221 201.18 ms Limit Exceeded!
11 80.91.254.90 270.57 ms Limit Exceeded!
12 80.91.254.90 270.85 ms Limit Exceeded!
13 *
14 80.91.250.98 270.57 ms Limit Exceeded!
15 80.91.250.98 269.42 ms Limit Exceeded!
16 185.140.151.245 236.61 ms Limit Exceeded!
17 *
18 62.115.139.172 294.36 ms Limit Exceeded!
19 87.226.162.77 230.78 ms Limit Exceeded!


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 140.91.214.26 0.34 ms Limit Exceeded!
2 116.0.77.10 0.90 ms Limit Exceeded!
3 116.0.77.9 2.31 ms Limit Exceeded!
4 116.0.67.37 234.24 ms Limit Exceeded!
5 116.0.93.144 238.52 ms Limit Exceeded!
6 180.87.15.80 240.78 ms Limit Exceeded!
7 180.87.12.1 236.52 ms Limit Exceeded!
8 80.231.217.90 254.58 ms Limit Exceeded!
9 80.231.217.2 237.74 ms Limit Exceeded!
10 80.231.217.2 241.80 ms Limit Exceeded!
11 195.219.156.150 235.51 ms Limit Exceeded!
12 195.219.156.146 233.14 ms Limit Exceeded!
13 188.43.202.234 283.20 ms Limit Exceeded!
14 188.43.202.233 391.42 ms Limit Exceeded!
15 *
16 *
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 140.91.214.31 0.20 ms Limit Exceeded!
2 116.0.77.10 1.40 ms Limit Exceeded!
3 116.0.77.9 2.21 ms Limit Exceeded!
4 180.87.181.92 177.70 ms Limit Exceeded!
5 180.87.181.73 68.96 ms Limit Exceeded!
6 *
7 *
8 4.69.135.162 284.19 ms Limit Exceeded!
9 213.242.69.98 283.67 ms Limit Exceeded!
10 212.188.54.1 277.51 ms Limit Exceeded!
11 212.188.2.38 278.40 ms Limit Exceeded!
12 195.34.50.150 288.40 ms Limit Exceeded!
13 195.34.53.253 286.73 ms Limit Exceeded!
14 195.34.32.71 280.98 ms Limit Exceeded!


Generated by LemonBench on 2021-05-26T06:00:50Z Version 20201005 Intl BetaVersion, Hosted by DMIT.IO


Oracle Cloud 韩国首尔 ARM VPS 评测
https://www.hostevaluate.com/2021/05/26/Blog/review_254/
作者
Paji
发布于
2021年5月26日
许可协议