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
| LemonBench Linux System Benchmark Utility Version 20201005 Intl BetaVersion Bench Start Time: 2021-05-26 08:52:46 Bench Finish Time: 2021-05-26 09:16:01 Test Mode: Full Mode -> System Information OS Release: Oracle Linux Linux (aarch64) CPU Model: 0.00 GHz CPU Cache Size: CPU Number: 0 vCPU Virt Type: KVM Memory Usage: 689.94 MB / 22.57 GB Swap Usage: 0 KB / 8.00 GB Disk Usage: 11.99 GB / 37.18 GB Boot Device: /dev/mapper/ocivolume-root Load (1/5/15min): 2.10 0.65 0.24 CPU Usage: 6.4% used, 0.0% iowait, 0.0% steal Kernel Version: 5.4.17-2102.201.3.el8uek.aarch64 Network CC Method: cubic + fq_codel
-> Network Information
IPV4 - IP Address: [DE] 130.61.98.* IPV4 - ASN Info: 31898 (ORACLE-BMC-31898 - Oracle Corporation, US) IPV4 - Region: Germany Hesse Frankfurt
-> 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: 0 Scores 4 Threads Test: 0 Scores
-> Memory Performance Test (Standard Mode, 3-Pass @ 30sec)
1 Thread - Read Test : 0.00 MB/s 1 Thread - Write Test: 0.00 MB/s
-> Disk Speed Test (4K Block/1M Block, Direct-Write)
Test Name Write Speed Read Speed 10MB-4K Block 9.2 MB/s (2238 IOPS, 1.14 s) 9.1 MB/s (2218 IOPS, 1.15 s) 10MB-1M Block 230 MB/s (219 IOPS, 0.05 s) 390 MB/s (372 IOPS, 0.03 s) 100MB-4K Block 9.0 MB/s (2206 IOPS, 11.60 s) 9.4 MB/s (2289 IOPS, 11.18 s) 100MB-1M Block 296 MB/s (282 IOPS, 0.35 s) 71.0 MB/s (67 IOPS, 1.48 s) 1GB-4K Block 9.9 MB/s (2423 IOPS, 105.61 s) 10.3 MB/s (2513 IOPS, 101.86 s) 1GB-1M Block 55.5 MB/s (52 IOPS, 18.89 s) 52.4 MB/s (49 IOPS, 20.02 s)
-> Speedtest.net Network Speed Test
Node Name Upload Speed Download Speed Ping Latency Server Name Speedtest Default 112.06 MB/s 108.32 MB/s 0.68 ms HessenKom GmbH & Co. KG (Germany Frankfurt) China, Nanjing CU 27.40 MB/s 43.73 MB/s 178.42 ms China Unicom (China Nanjing) China, Shanghai CU 27.76 MB/s 124.49 MB/s 176.93 ms China Unicom 5G (China ShangHai) China, Hangzhou CT 10.67 MB/s 35.76 MB/s 223.80 ms China Telecom ZheJiang Branch (China Hangzhou) China, Nanjing CT 26.63 MB/s 122.90 MB/s 201.75 ms China Telecom JiangSu 5G (China Nanjing) China, Guangzhou CT 0.28 MB/s 8.50 MB/s 200.00 ms ChinaTelecom 5G (China Guangzhou) 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 20.66 MB/s 122.15 MB/s 262.36 ms GX ChinaMobile (China Nanning) China, Lanzhou CM 20.28 MB/s 74.11 MB/s 250.86 ms Lanzhou,China Mobile,Gansu (China Lanzhou) Hong Kong, CSL 28.22 MB/s 44.52 MB/s 249.28 ms CSL (Hong Kong Kwai Chung) Hong Kong, PCCW 31.78 MB/s 122.43 MB/s 172.26 ms STC (China Hong Kong) Korea, South Korea 17.48 MB/s 53.84 MB/s 240.77 ms kdatacenter.com (South Korea Seoul) Japan, GLBB 25.18 MB/s 72.53 MB/s 216.87 ms Allied Telesis Capital Corporation (Japan Fussa-shi) Taiwan, FET Fail: Timeout Exceeded after 60 seconds Taiwan, Chief 0.91 MB/s 0.36 MB/s 288.13 ms Chief Telecom (Taiwan Taoyuan) Taiwan, TWM 25.77 MB/s 122.12 MB/s 250.31 ms Taiwan Mobile (Taiwan Taoyuan) Singapore, Singtel 15.12 MB/s 110.16 MB/s 335.49 ms Singtel (Singapore Singapore) Singapore, M1 0.48 MB/s 73.32 MB/s 163.42 ms M1 Limited (Singapore Singapore) Singapore, NME 19.90 MB/s 53.37 MB/s 174.08 ms NewMedia Express (Republic of Singapore Singapore) USA, Century Link 23.53 MB/s 103.21 MB/s 153.53 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.198.109 0.29 ms AS31898 Germany, Hesse, Frankfurt, oracle.com 2 154.14.43.66 0.74 ms AS286,AS3257 Germany, Hesse, Frankfurt, interoute.com 3 154.14.43.65 0.74 ms AS286,AS3257 Germany, Hesse, Frankfurt, interoute.com 4 * 5 219.158.14.85 157.87 ms AS4837 China, ChinaUnicom 6 219.158.103.33 156.65 ms AS4837 China, ChinaUnicom 7 219.158.103.217 162.63 ms AS4837 China, ChinaUnicom 8 219.158.8.85 191.13 ms AS4837 China, ChinaUnicom 9 * 10 61.148.158.10 203.38 ms AS4808 China, Beijing, ChinaUnicom 11 124.65.194.122 201.19 ms AS4808 China, Beijing, ChinaUnicom 12 61.135.113.154 177.45 ms AS4808 China, Beijing, ChinaUnicom 13 * 14 * 15 * 16 * 17 * 18 * 19 * 20 * 21 * 22 * 23 * 24 * 25 * 26 * 27 * 28 * 29 * 30 *
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.198.106 0.33 ms AS31898 Germany, Hesse, Frankfurt, oracle.com 2 212.119.27.162 0.51 ms AS2914 Germany, Hesse, Frankfurt, ntt.com 3 212.119.27.161 0.98 ms AS2914 Germany, Hesse, Frankfurt, ntt.com 4 * 5 129.250.2.61 0.72 ms AS2914 United States, ntt.com 6 129.250.9.154 2.51 ms AS2914 United States, ntt.com 7 202.97.52.97 156.28 ms AS4134 China, ChinaTelecom 8 202.97.12.129 156.69 ms AS4134 China, ChinaTelecom 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 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.198.100 0.27 ms AS31898 Germany, Hesse, Frankfurt, oracle.com 2 213.248.69.249 0.85 ms AS1299 Netherlands, telia.com 3 213.248.69.248 1.05 ms AS1299 Netherlands, telia.com 4 62.115.124.116 147.73 ms AS1299 Sweden, Stockholm County, Stockholm, telia.com 5 62.115.114.98 144.40 ms AS1299 Sweden, Stockholm County, Stockholm, telia.com 6 62.115.112.242 91.66 ms AS1299 Sweden, Stockholm County, Stockholm, telia.com 7 62.115.121.220 153.15 ms AS1299 Sweden, Stockholm County, Stockholm, telia.com 8 62.115.171.219 144.48 ms AS1299 Sweden, Stockholm County, Stockholm, telia.com 9 223.120.6.17 147.94 ms AS58453 China, ChinaMobile 10 * 11 * 12 * 13 * 14 111.24.2.105 236.20 ms AS9808 China, ChinaMobile 15 111.24.2.134 241.74 ms AS9808 China, ChinaMobile 16 211.136.67.113 238.98 ms AS56048 China, Beijing, ChinaMobile 17 211.136.63.66 237.69 ms AS56048 China, Beijing, ChinaMobile 18 211.136.67.166 239.23 ms AS56048 China, Beijing, ChinaMobile 19 211.136.95.226 237.09 ms AS56048 China, Beijing, ChinaMobile 20 * 21 * 22 211.136.25.153 239.11 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.198.102 0.30 ms AS31898 Germany, Hesse, Frankfurt, oracle.com 2 213.248.69.249 12.29 ms AS1299 Netherlands, telia.com 3 213.248.69.248 0.88 ms AS1299 Netherlands, telia.com 4 * 5 219.158.98.37 162.56 ms AS4837 China, ChinaUnicom 6 219.158.96.206 162.95 ms AS4837 China, ChinaUnicom 7 219.158.97.1 166.02 ms AS4837 China, ChinaUnicom 8 219.158.111.253 186.04 ms AS4837 China, ChinaUnicom 9 * 10 139.226.210.53 176.20 ms AS17621 China, Shanghai, ChinaUnicom 11 58.247.0.49 195.02 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.198.101 0.23 ms AS31898 Germany, Hesse, Frankfurt, oracle.com 2 212.119.27.162 1.91 ms AS2914 Germany, Hesse, Frankfurt, ntt.com 3 212.119.27.161 1.00 ms AS2914 Germany, Hesse, Frankfurt, ntt.com 4 129.250.6.13 1.63 ms AS2914 United States, ntt.com 5 129.250.2.61 0.68 ms AS2914 United States, ntt.com 6 129.250.9.154 1.18 ms AS2914 United States, ntt.com 7 202.97.86.229 209.46 ms AS4134 China, ChinaTelecom 8 202.97.50.194 215.54 ms AS4134 China, ChinaTelecom 9 202.97.94.238 202.53 ms AS4134 China, ChinaTelecom 10 * 11 101.95.207.250 233.69 ms AS4812 China, Shanghai, ChinaTelecom 12 101.95.225.158 204.56 ms AS4811 China, Shanghai, ChinaTelecom 13 101.227.255.34 202.51 ms AS4812 China, Shanghai, ChinaTelecom 14 * 15 180.153.28.1 216.84 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.198.102 0.27 ms AS31898 Germany, Hesse, Frankfurt, oracle.com 2 62.67.24.18 0.54 ms AS3356 Germany, Hesse, Frankfurt, level3.com 3 62.67.24.17 3.50 ms AS3356 Germany, Hesse, Frankfurt, level3.com 4 4.69.167.118 1.47 ms AS3356 United States, level3.com 5 4.68.110.26 1.32 ms AS3356 United States, level3.com 6 223.120.10.85 1.44 ms AS58453 China, ChinaMobile 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.198.111 0.24 ms AS31898 Germany, Hesse, Frankfurt, oracle.com 2 62.115.182.106 1.63 ms AS1299 Sweden, Stockholm County, Stockholm, telia.com 3 62.115.182.105 1.17 ms AS1299 Sweden, Stockholm County, Stockholm, telia.com 4 62.115.114.88 1.13 ms AS1299 Sweden, Stockholm County, Stockholm, telia.com 5 62.115.142.205 0.94 ms AS1299 Sweden, Stockholm County, Stockholm, telia.com 6 * 7 219.158.11.165 161.20 ms AS4837 China, ChinaUnicom 8 219.158.3.141 151.28 ms AS4837 China, ChinaUnicom 9 219.158.5.157 196.85 ms AS4837 China, ChinaUnicom 10 219.158.8.86 224.97 ms AS4837 China, ChinaUnicom 11 112.96.0.146 193.08 ms AS17816 China, Guangdong, Guangzhou, ChinaUnicom 12 * 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.198.111 0.27 ms AS31898 Germany, Hesse, Frankfurt, oracle.com 2 62.67.24.22 0.80 ms AS3356 Germany, Hesse, Frankfurt, level3.com 3 * 4 * 5 195.122.182.218 2.11 ms AS3356 Germany, Hesse, Frankfurt, level3.com 6 202.97.86.141 231.93 ms AS4134 China, ChinaTelecom 7 * 8 * 9 113.108.209.1 193.04 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.198.110 0.36 ms AS31898 Germany, Hesse, Frankfurt, oracle.com 2 213.248.69.249 0.68 ms AS1299 Netherlands, telia.com 3 213.248.69.248 22.01 ms AS1299 Netherlands, telia.com 4 62.115.124.118 17.80 ms AS1299 Sweden, Stockholm County, Stockholm, telia.com 5 * 6 62.115.135.24 16.18 ms AS1299 Sweden, Stockholm County, Stockholm, telia.com 7 62.115.117.123 16.83 ms AS1299 Sweden, Stockholm County, Stockholm, telia.com 8 62.115.171.223 15.16 ms AS1299 Sweden, Stockholm County, Stockholm, telia.com 9 223.120.10.197 15.08 ms AS58453 China, ChinaMobile 10 * 11 221.183.55.66 213.42 ms AS9808 China, ChinaMobile 12 221.183.52.85 202.34 ms AS9808 China, ChinaMobile 13 221.176.22.157 205.30 ms AS9808 China, ChinaMobile 14 111.24.5.177 204.48 ms AS9808 China, ChinaMobile 15 111.24.5.26 210.02 ms AS9808 China, ChinaMobile 16 211.136.249.153 216.27 ms AS56040 China, Guangdong, Guangzhou, ChinaMobile 17 120.198.206.198 223.67 ms AS56040 China, Guangdong, Guangzhou, ChinaMobile 18 211.139.129.5 228.86 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.198.111 0.26 ms AS31898 Germany, Hesse, Frankfurt, oracle.com 2 213.198.82.246 0.88 ms AS2914 Germany, Hesse, Frankfurt, ntt.com 3 213.198.82.245 1.10 ms AS2914 Germany, Hesse, Frankfurt, ntt.com 4 129.250.4.76 1.81 ms AS2914 United States, ntt.com 5 129.250.6.14 1.31 ms AS2914 United States, ntt.com 6 130.117.14.129 1.00 ms AS174 Germany, Hesse, Frankfurt, cogentco.com 7 130.117.0.1 1.17 ms AS174 Germany, Hesse, Frankfurt, cogentco.com 8 154.54.37.30 1.29 ms AS174 United States, cogentco.com 9 154.25.12.77 1.43 ms Limit Exceeded! ([email protected]) 10 149.11.84.106 156.56 ms Limit Exceeded! ([email protected]) 11 210.78.28.145 154.64 ms Limit Exceeded! ([email protected]) 12 * 13 218.105.2.198 193.32 ms Limit Exceeded! ([email protected]) 14 210.13.75.138 172.63 ms Limit Exceeded! ([email protected]) 15 210.13.66.237 200.74 ms Limit Exceeded! ([email protected]) 16 210.13.66.238 179.07 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.198.109 0.22 ms Limit Exceeded! ([email protected]) 2 213.198.82.246 0.72 ms Limit Exceeded! ([email protected]) 3 213.198.82.245 1.22 ms Limit Exceeded! ([email protected]) 4 129.250.4.76 1.85 ms Limit Exceeded! ([email protected]) 5 129.250.3.12 11.83 ms Limit Exceeded! ([email protected]) 6 129.250.2.182 13.49 ms Limit Exceeded! ([email protected]) 7 129.250.6.147 79.88 ms Limit Exceeded! ([email protected]) 8 129.250.6.177 138.92 ms Limit Exceeded! ([email protected]) 9 129.250.4.143 231.10 ms Limit Exceeded! ([email protected]) 10 129.250.5.22 244.29 ms Limit Exceeded! ([email protected]) 11 129.250.6.133 236.44 ms Limit Exceeded! ([email protected]) 12 129.250.2.250 240.95 ms Limit Exceeded! ([email protected]) 13 120.88.54.134 231.11 ms Limit Exceeded! ([email protected]) 14 59.43.250.226 318.45 ms Limit Exceeded! ([email protected]) 15 59.43.246.213 227.17 ms Limit Exceeded! ([email protected]) 16 59.43.130.217 233.50 ms Limit Exceeded! ([email protected]) 17 101.95.88.222 235.68 ms Limit Exceeded! ([email protected]) 18 58.32.0.1 233.00 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.198.111 0.32 ms Limit Exceeded! ([email protected]) 2 213.248.86.97 0.72 ms Limit Exceeded! ([email protected]) 3 213.248.86.96 0.72 ms Limit Exceeded! ([email protected]) 4 62.115.114.88 16.29 ms Limit Exceeded! ([email protected]) 5 * 6 62.115.135.24 15.77 ms Limit Exceeded! ([email protected]) 7 * 8 80.239.193.226 16.05 ms Limit Exceeded! ([email protected]) 9 59.43.184.125 182.76 ms Limit Exceeded! ([email protected]) 10 * 11 59.43.130.145 185.96 ms Limit Exceeded! ([email protected]) 12 59.43.70.6 196.85 ms Limit Exceeded! ([email protected]) 13 119.121.0.1 187.78 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.198.154 0.30 ms Limit Exceeded! ([email protected]) 2 62.67.24.22 0.87 ms Limit Exceeded! ([email protected]) 3 * 4 * 5 4.26.2.162 236.50 ms Limit Exceeded! ([email protected]) 6 219.158.102.85 252.87 ms Limit Exceeded! ([email protected]) 7 219.158.16.77 232.05 ms Limit Exceeded! ([email protected]) 8 219.158.5.145 240.81 ms Limit Exceeded! ([email protected]) 9 61.149.203.46 237.06 ms Limit Exceeded! ([email protected]) 10 202.106.193.42 246.81 ms Limit Exceeded! ([email protected]) 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 140.91.198.111 0.25 ms Limit Exceeded! ([email protected]) 2 213.248.69.249 1.00 ms Limit Exceeded! ([email protected]) 3 213.248.69.248 1.28 ms Limit Exceeded! ([email protected]) 4 * 5 219.158.20.173 148.21 ms Limit Exceeded! ([email protected]) 6 219.158.97.26 152.06 ms Limit Exceeded! ([email protected]) 7 219.158.97.1 156.03 ms Limit Exceeded! ([email protected]) 8 219.158.7.17 183.67 ms Limit Exceeded! ([email protected]) 9 * 10 202.96.13.242 206.90 ms Limit Exceeded! ([email protected]) 11 61.51.37.206 184.95 ms Limit Exceeded! ([email protected]) 12 218.241.244.2 182.03 ms Limit Exceeded! ([email protected]) 13 218.241.255.86 197.63 ms Limit Exceeded! ([email protected]) 14 218.241.245.94 201.57 ms Limit Exceeded! ([email protected]) 15 218.241.245.54 191.84 ms Limit Exceeded! ([email protected]) 16 * 17 211.167.230.100 206.19 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.198.110 0.31 ms Limit Exceeded! ([email protected]) 2 213.198.82.246 9.51 ms Limit Exceeded! ([email protected]) 3 213.198.82.245 1.20 ms Limit Exceeded! ([email protected]) 4 129.250.4.184 1.38 ms Limit Exceeded! ([email protected]) 5 129.250.3.182 10.28 ms Limit Exceeded! ([email protected]) 6 129.250.3.156 9.61 ms Limit Exceeded! ([email protected]) 7 * 8 129.250.7.67 200.46 ms Limit Exceeded! ([email protected]) 9 129.250.5.161 193.18 ms Limit Exceeded! ([email protected]) 10 203.131.254.214 188.70 ms Limit Exceeded! ([email protected]) 11 101.4.114.181 221.24 ms Limit Exceeded! ([email protected]) 12 * 13 101.4.118.217 223.55 ms Limit Exceeded! ([email protected]) 14 101.4.116.125 220.13 ms Limit Exceeded! ([email protected]) 15 219.224.102.230 234.22 ms Limit Exceeded! ([email protected]) 16 202.112.38.158 220.11 ms Limit Exceeded! ([email protected]) 17 202.205.109.205 233.64 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.198.107 0.25 ms Limit Exceeded! ([email protected]) 2 213.248.86.97 9.60 ms Limit Exceeded! ([email protected]) 3 213.248.86.96 0.77 ms Limit Exceeded! ([email protected]) 4 130.117.14.197 1.07 ms Limit Exceeded! ([email protected]) 5 130.117.0.1 2.70 ms Limit Exceeded! ([email protected]) 6 154.54.58.238 9.78 ms Limit Exceeded! ([email protected]) 7 130.117.50.166 18.68 ms Limit Exceeded! ([email protected]) 8 154.54.1.118 179.00 ms Limit Exceeded! ([email protected]) 9 154.18.4.2 194.69 ms Limit Exceeded! ([email protected]) 10 159.226.254.61 229.92 ms Limit Exceeded! ([email protected]) 11 159.226.254.49 216.67 ms Limit Exceeded! ([email protected]) 12 159.226.254.1 216.44 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.198.154 0.32 ms Limit Exceeded! ([email protected]) 2 213.248.69.249 0.75 ms Limit Exceeded! ([email protected]) 3 213.248.69.248 1.16 ms Limit Exceeded! ([email protected]) 4 202.97.58.149 2.02 ms Limit Exceeded! ([email protected]) 5 202.97.99.157 168.92 ms Limit Exceeded! ([email protected]) 6 202.97.12.61 161.96 ms Limit Exceeded! ([email protected]) 7 * 8 219.141.147.229 172.92 ms Limit Exceeded! ([email protected]) 9 * 10 60.247.93.254 177.39 ms Limit Exceeded! ([email protected]) 11 60.247.93.254 177.06 ms Limit Exceeded! 12 211.156.128.174 177.11 ms Limit Exceeded! ([email protected]) 13 211.156.140.17 177.83 ms Limit Exceeded!
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.198.154 0.28 ms Limit Exceeded! 2 80.81.196.168 0.47 ms Limit Exceeded! 3 80.81.194.117 1.61 ms Limit Exceeded! 4 217.150.59.246 165.72 ms Limit Exceeded! 5 217.150.59.245 173.57 ms Limit Exceeded! 6 43.252.86.65 179.41 ms Limit Exceeded! 7 119.252.139.14 178.83 ms Limit Exceeded! 8 202.77.22.89 181.35 ms Limit Exceeded! 9 203.160.95.218 175.28 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.198.159 0.27 ms Limit Exceeded! 2 213.248.86.97 9.91 ms Limit Exceeded! 3 213.248.86.96 1.20 ms Limit Exceeded! 4 118.85.205.81 2.35 ms Limit Exceeded! 5 202.97.52.97 150.18 ms Limit Exceeded! 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, 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.198.99 0.27 ms Limit Exceeded! 2 213.248.69.249 0.83 ms Limit Exceeded! 3 213.248.69.248 0.91 ms Limit Exceeded! 4 62.115.124.118 17.11 ms Limit Exceeded! 5 * 6 62.115.135.24 15.80 ms Limit Exceeded! 7 62.115.120.239 17.30 ms Limit Exceeded! 8 80.239.193.226 17.02 ms Limit Exceeded! 9 59.43.183.141 194.21 ms Limit Exceeded! 10 59.43.187.26 192.24 ms Limit Exceeded! 11 203.8.25.187 194.45 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.198.107 0.25 ms Limit Exceeded! 2 62.67.24.18 2.15 ms Limit Exceeded! 3 62.67.24.17 0.85 ms Limit Exceeded! 4 4.69.167.114 0.94 ms Limit Exceeded! 5 4.68.110.26 1.36 ms Limit Exceeded! 6 223.120.10.41 1.89 ms Limit Exceeded! 7 223.120.15.174 174.22 ms Limit Exceeded! 8 * 9 * 10 223.119.17.1 185.38 ms Limit Exceeded! 11 * 12 203.142.126.6 196.82 ms Limit Exceeded! 13 203.142.126.18 196.39 ms Limit Exceeded! 14 203.142.100.22 196.27 ms Limit Exceeded! 15 203.142.105.9 184.59 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.198.103 0.29 ms Limit Exceeded! 2 62.67.24.22 0.92 ms Limit Exceeded! 3 * 4 * 5 80.231.65.22 1.14 ms Limit Exceeded! 6 195.219.219.72 192.69 ms Limit Exceeded! 7 80.231.245.6 199.62 ms Limit Exceeded! 8 80.231.153.20 187.59 ms Limit Exceeded! 9 80.231.153.50 188.68 ms Limit Exceeded! 10 * 11 80.231.217.95 190.36 ms Limit Exceeded! 12 180.87.38.2 209.93 ms Limit Exceeded! 13 180.87.15.81 190.17 ms Limit Exceeded! 14 116.0.82.62 205.39 ms Limit Exceeded! 15 120.29.216.42 190.50 ms Limit Exceeded! 16 218.189.5.24 186.93 ms Limit Exceeded! 17 218.188.104.30 286.93 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.198.107 0.42 ms Limit Exceeded! 2 213.198.82.246 13.80 ms Limit Exceeded! 3 213.198.82.245 1.27 ms Limit Exceeded! 4 129.250.4.184 1.74 ms Limit Exceeded! 5 129.250.3.182 9.77 ms Limit Exceeded! 6 129.250.3.156 15.81 ms Limit Exceeded! 7 * 8 129.250.7.67 199.60 ms Limit Exceeded! 9 129.250.5.177 210.50 ms Limit Exceeded! 10 203.131.254.134 191.55 ms Limit Exceeded! 11 61.244.225.102 180.09 ms Limit Exceeded! 12 203.186.235.137 217.02 ms Limit Exceeded! 13 * 14 210.6.23.239 192.63 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.198.156 0.29 ms Limit Exceeded! 2 62.67.24.18 0.49 ms Limit Exceeded! 3 62.67.24.17 2.35 ms Limit Exceeded! 4 * 5 63.218.233.37 1.23 ms Limit Exceeded! 6 63.223.20.45 249.94 ms Limit Exceeded! 7 63.223.20.45 249.43 ms Limit Exceeded! 8 63.222.45.38 249.21 ms Limit Exceeded! 9 202.153.103.69 250.56 ms Limit Exceeded! 10 202.153.99.203 250.44 ms Limit Exceeded! 11 203.215.244.33 250.66 ms Limit Exceeded! 12 202.85.125.60 250.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.198.107 0.28 ms Limit Exceeded! 2 154.14.43.74 0.75 ms Limit Exceeded! 3 154.14.43.65 1.38 ms Limit Exceeded! 4 89.149.184.38 179.02 ms Limit Exceeded! 5 69.174.125.70 179.78 ms Limit Exceeded! 6 203.78.72.52 179.72 ms Limit Exceeded! 7 203.78.73.75 179.77 ms Limit Exceeded! 8 * 9 202.123.76.239 179.95 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.198.103 0.34 ms Limit Exceeded! 2 80.81.196.168 0.63 ms Limit Exceeded! 3 80.81.195.39 167.52 ms Limit Exceeded! 4 115.160.187.110 178.38 ms Limit Exceeded! 5 * 6 59.152.252.196 178.29 ms Limit Exceeded! 7 59.152.252.242 180.01 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.198.108 0.25 ms Limit Exceeded! 2 213.248.86.97 5.32 ms Limit Exceeded! 3 213.248.86.96 0.87 ms Limit Exceeded! 4 118.85.205.81 3.49 ms Limit Exceeded! 5 202.97.64.109 166.26 ms Limit Exceeded! 6 203.215.233.1 163.88 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.198.106 0.19 ms Limit Exceeded! 2 213.248.86.97 0.69 ms Limit Exceeded! 3 213.248.86.96 1.17 ms Limit Exceeded! 4 62.115.114.88 16.38 ms Limit Exceeded! 5 62.115.122.138 16.75 ms Limit Exceeded! 6 62.115.135.24 15.89 ms Limit Exceeded! 7 62.115.120.239 16.46 ms Limit Exceeded! 8 80.239.193.226 15.89 ms Limit Exceeded! 9 59.43.249.213 207.38 ms Limit Exceeded! 10 183.91.61.1 208.61 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.198.99 0.34 ms Limit Exceeded! 2 213.248.69.249 0.68 ms Limit Exceeded! 3 213.248.69.248 0.82 ms Limit Exceeded! 4 62.115.124.118 145.59 ms Limit Exceeded! 5 62.115.122.138 144.28 ms Limit Exceeded! 6 62.115.122.159 144.54 ms Limit Exceeded! 7 * 8 62.115.8.203 153.30 ms Limit Exceeded! 9 203.208.171.117 147.56 ms Limit Exceeded! 10 203.208.171.118 162.20 ms Limit Exceeded! 11 203.208.151.181 320.64 ms Limit Exceeded! 12 203.208.182.254 327.87 ms Limit Exceeded! 13 165.21.138.86 324.85 ms Limit Exceeded! 14 165.21.138.66 327.54 ms Limit Exceeded! 15 * 16 165.21.138.70 332.08 ms Limit Exceeded! 17 * 18 165.21.49.126 318.17 ms Limit Exceeded! 19 203.125.232.130 332.46 ms Limit Exceeded! 20 118.201.1.11 333.77 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.198.100 0.36 ms Limit Exceeded! 2 213.248.69.249 0.83 ms Limit Exceeded! 3 62.115.182.105 1.37 ms Limit Exceeded! 4 62.115.124.116 176.35 ms Limit Exceeded! 5 62.115.116.21 16.42 ms Limit Exceeded! 6 62.115.124.52 15.92 ms Limit Exceeded! 7 62.115.124.122 159.63 ms Limit Exceeded! 8 * 9 61.8.243.1 177.30 ms Limit Exceeded! 10 * 11 203.116.46.33 178.72 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.198.101 0.22 ms Limit Exceeded! 2 213.248.86.97 0.83 ms Limit Exceeded! 3 213.248.86.96 1.23 ms Limit Exceeded! 4 62.115.114.90 145.56 ms Limit Exceeded! 5 62.115.114.98 147.82 ms Limit Exceeded! 6 62.115.112.242 94.93 ms Limit Exceeded! 7 * 8 62.115.125.163 144.40 ms Limit Exceeded! 9 62.115.48.230 229.02 ms Limit Exceeded! 10 202.65.246.14 236.43 ms Limit Exceeded! 11 202.65.246.222 241.92 ms Limit Exceeded! 12 202.65.246.186 244.66 ms Limit Exceeded! 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 140.91.198.101 0.26 ms Limit Exceeded! 2 213.248.86.97 15.54 ms Limit Exceeded! 3 213.248.86.96 1.31 ms Limit Exceeded! 4 62.115.114.88 178.92 ms Limit Exceeded! 5 62.115.124.59 16.07 ms Limit Exceeded! 6 62.115.124.122 165.78 ms Limit Exceeded! 7 62.115.124.87 152.37 ms Limit Exceeded! 8 62.115.57.135 165.69 ms Limit Exceeded! 9 203.211.159.151 173.80 ms Limit Exceeded! 10 118.189.38.17 162.03 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.198.154 0.29 ms Limit Exceeded! 2 62.67.24.22 0.88 ms Limit Exceeded! 3 * 4 * 5 4.68.111.178 1.28 ms Limit Exceeded! 6 154.54.56.189 1.15 ms Limit Exceeded! 7 66.28.4.42 156.70 ms Limit Exceeded! 8 154.18.19.162 157.33 ms Limit Exceeded! 9 150.222.3.37 165.26 ms Limit Exceeded! 10 52.93.11.47 169.62 ms Limit Exceeded! 11 * 12 150.222.3.201 158.45 ms Limit Exceeded! 13 150.222.3.220 155.23 ms Limit Exceeded! 14 * 15 * 16 * 17 * 18 * 19 * 20 13.228.0.251 154.61 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.198.155 0.28 ms Limit Exceeded! 2 213.198.82.246 0.75 ms Limit Exceeded! 3 213.198.82.245 1.23 ms Limit Exceeded! 4 129.250.6.13 0.81 ms Limit Exceeded! 5 129.250.3.12 11.59 ms Limit Exceeded! 6 129.250.2.182 11.19 ms Limit Exceeded! 7 129.250.6.147 80.15 ms Limit Exceeded! 8 129.250.6.177 137.69 ms Limit Exceeded! 9 129.250.4.143 230.86 ms Limit Exceeded! 10 129.250.5.22 244.85 ms Limit Exceeded! 11 129.250.3.28 235.72 ms Limit Exceeded! 12 61.213.179.34 246.94 ms Limit Exceeded! 13 * 14 * 15 61.213.155.84 258.78 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.198.156 0.25 ms Limit Exceeded! 2 213.248.69.249 0.76 ms Limit Exceeded! 3 213.248.69.248 1.16 ms Limit Exceeded! 4 62.115.124.116 16.29 ms Limit Exceeded! 5 62.115.122.138 17.69 ms Limit Exceeded! 6 62.115.135.24 16.15 ms Limit Exceeded! 7 62.115.114.235 17.03 ms Limit Exceeded! 8 202.232.1.61 14.00 ms Limit Exceeded! 9 58.138.98.137 200.96 ms Limit Exceeded! 10 58.138.101.14 223.09 ms Limit Exceeded! 11 210.130.142.114 200.96 ms Limit Exceeded! 12 202.232.15.70 202.13 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.198.107 0.33 ms Limit Exceeded! 2 213.248.86.97 0.48 ms Limit Exceeded! 3 213.248.86.96 1.04 ms Limit Exceeded! 4 62.115.114.90 154.24 ms Limit Exceeded! 5 * 6 62.115.114.228 17.17 ms Limit Exceeded! 7 * 8 62.115.118.111 154.83 ms Limit Exceeded! 9 * 10 62.115.121.176 152.03 ms Limit Exceeded! 11 143.90.232.241 252.08 ms Limit Exceeded! 12 143.90.47.33 265.30 ms Limit Exceeded! 13 143.90.161.82 261.67 ms Limit Exceeded! 14 143.90.161.82 259.49 ms Limit Exceeded! 15 210.175.32.123 252.30 ms Limit Exceeded! 16 143.90.54.30 240.94 ms Limit Exceeded! 17 * 18 210.175.32.26 242.00 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.198.157 0.24 ms Limit Exceeded! 2 62.67.24.22 0.87 ms Limit Exceeded! 3 * 4 * 5 4.7.26.70 138.87 ms Limit Exceeded! 6 203.181.106.181 138.90 ms Limit Exceeded! 7 106.187.12.37 250.42 ms Limit Exceeded! 8 27.85.133.230 251.36 ms Limit Exceeded! 9 59.128.99.94 244.59 ms Limit Exceeded! 10 111.87.220.242 247.88 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.198.107 0.32 ms Limit Exceeded! 2 213.248.86.97 0.63 ms Limit Exceeded! 3 213.248.86.96 0.91 ms Limit Exceeded! 4 118.85.205.81 2.24 ms Limit Exceeded! 5 202.97.95.205 191.41 ms Limit Exceeded! 6 202.97.19.94 220.04 ms Limit Exceeded! 7 203.215.236.3 219.77 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.198.154 0.30 ms Limit Exceeded! 2 213.198.82.246 0.67 ms Limit Exceeded! 3 213.198.82.245 1.32 ms Limit Exceeded! 4 129.250.4.76 1.17 ms Limit Exceeded! 5 * 6 129.250.2.182 11.81 ms Limit Exceeded! 7 129.250.6.147 79.84 ms Limit Exceeded! 8 129.250.6.177 137.55 ms Limit Exceeded! 9 129.250.4.143 231.81 ms Limit Exceeded! 10 129.250.5.22 249.44 ms Limit Exceeded! 11 129.250.6.129 237.81 ms Limit Exceeded! 12 129.250.2.59 232.95 ms Limit Exceeded! 13 117.103.177.106 233.66 ms Limit Exceeded! 14 202.55.27.4 232.30 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.198.98 0.25 ms Limit Exceeded! 2 62.67.24.22 0.69 ms Limit Exceeded! 3 * 4 * 5 80.231.65.22 1.13 ms Limit Exceeded! 6 195.219.219.72 244.42 ms Limit Exceeded! 7 80.231.245.6 226.60 ms Limit Exceeded! 8 80.231.153.20 225.90 ms Limit Exceeded! 9 80.231.153.50 230.75 ms Limit Exceeded! 10 80.231.154.211 232.93 ms Limit Exceeded! 11 * 12 180.87.38.2 251.20 ms Limit Exceeded! 13 209.58.61.39 233.40 ms Limit Exceeded! 14 120.29.217.12 236.75 ms Limit Exceeded! 15 150.222.90.69 241.67 ms Limit Exceeded! 16 52.93.251.195 253.71 ms Limit Exceeded! 17 150.222.90.7 235.68 ms Limit Exceeded! 18 * 19 * 20 * 21 15.230.160.21 253.82 ms Limit Exceeded! 22 52.95.31.211 260.94 ms Limit Exceeded! 23 52.95.31.235 255.68 ms Limit Exceeded! 24 * 25 * 26 * 27 * 28 * 29 * 30 *
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.198.98 0.26 ms Limit Exceeded! 2 62.67.24.18 0.61 ms Limit Exceeded! 3 62.67.24.17 1.02 ms Limit Exceeded! 4 4.69.219.45 148.47 ms Limit Exceeded! 5 4.68.37.206 138.78 ms Limit Exceeded! 6 * 7 112.174.84.213 275.34 ms Limit Exceeded! 8 * 9 112.174.60.106 278.05 ms Limit Exceeded! 10 112.188.245.210 276.55 ms Limit Exceeded! 11 220.90.203.2 270.37 ms Limit Exceeded! 12 211.37.137.22 272.50 ms Limit Exceeded! 13 210.114.41.101 273.86 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.198.158 0.31 ms Limit Exceeded! 2 80.81.196.168 0.63 ms Limit Exceeded! 3 80.81.194.12 191.39 ms Limit Exceeded! 4 * 5 210.180.97.20 224.37 ms Limit Exceeded! 6 1.255.76.108 220.42 ms Limit Exceeded! 7 * 8 * 9 175.122.253.62 220.20 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.198.156 0.28 ms Limit Exceeded! 2 62.67.24.18 0.70 ms Limit Exceeded! 3 62.67.24.17 1.02 ms Limit Exceeded! 4 4.69.209.157 163.37 ms Limit Exceeded! 5 4.68.111.134 147.79 ms Limit Exceeded! 6 1.208.104.205 157.56 ms Limit Exceeded! 7 203.255.234.181 283.07 ms Limit Exceeded! 8 * 9 61.42.234.154 277.91 ms Limit Exceeded! 10 1.208.165.14 293.37 ms Limit Exceeded! 11 1.213.153.62 284.37 ms Limit Exceeded! 12 * 13 * 14 211.174.62.44 278.42 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.198.98 0.25 ms Limit Exceeded! 2 62.67.24.22 1.67 ms Limit Exceeded! 3 * 4 * 5 212.187.165.22 16.21 ms Limit Exceeded! 6 59.43.246.221 205.96 ms Limit Exceeded! 7 59.43.184.25 213.62 ms Limit Exceeded! 8 218.185.246.3 225.93 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.198.156 0.25 ms Limit Exceeded! 2 62.67.24.22 0.81 ms Limit Exceeded! 3 * 4 * 5 80.231.65.22 0.98 ms Limit Exceeded! 6 195.219.219.72 244.37 ms Limit Exceeded! 7 80.231.245.6 226.79 ms Limit Exceeded! 8 80.231.153.20 225.91 ms Limit Exceeded! 9 80.231.153.50 230.70 ms Limit Exceeded! 10 80.231.154.211 233.23 ms Limit Exceeded! 11 80.231.217.91 228.12 ms Limit Exceeded! 12 180.87.38.2 253.79 ms Limit Exceeded! 13 180.87.39.170 247.87 ms Limit Exceeded! 14 * 15 * 16 52.93.251.193 256.35 ms Limit Exceeded! 17 52.95.30.68 227.61 ms Limit Exceeded! 18 54.239.52.97 249.90 ms Limit Exceeded! 19 * 20 * 21 52.93.128.14 264.13 ms Limit Exceeded! 22 * 23 52.93.248.168 259.11 ms Limit Exceeded! 24 54.239.122.170 274.94 ms Limit Exceeded! 25 54.239.122.177 265.56 ms Limit Exceeded! 26 54.239.122.26 261.02 ms Limit Exceeded! 27 * 28 * 29 * 30 *
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.198.158 0.30 ms Limit Exceeded! 2 80.81.196.168 0.65 ms Limit Exceeded! 3 80.81.196.59 241.43 ms Limit Exceeded! 4 220.128.6.38 244.63 ms Limit Exceeded! 5 * 6 * 7 * 8 203.75.228.153 245.98 ms Limit Exceeded! 9 * 10 113.21.95.72 245.67 ms Limit Exceeded! 11 * 12 202.133.242.114 246.48 ms Limit Exceeded! 13 202.133.242.116 246.09 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.198.102 0.23 ms Limit Exceeded! 2 213.248.69.249 0.83 ms Limit Exceeded! 3 213.248.69.248 23.73 ms Limit Exceeded! 4 62.115.124.116 149.23 ms Limit Exceeded! 5 62.115.122.138 149.87 ms Limit Exceeded! 6 62.115.122.159 147.53 ms Limit Exceeded! 7 * 8 62.115.125.193 145.62 ms Limit Exceeded! 9 62.115.175.219 145.72 ms Limit Exceeded! 10 203.78.181.145 281.34 ms Limit Exceeded! 11 175.41.61.169 271.20 ms Limit Exceeded! 12 203.78.181.134 289.04 ms Limit Exceeded! 13 211.76.96.76 267.86 ms Limit Exceeded! 14 211.76.96.75 271.28 ms Limit Exceeded! 15 210.200.80.254 267.96 ms Limit Exceeded! 16 210.200.80.254 267.99 ms Limit Exceeded! 17 210.200.69.90 274.92 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.198.102 0.29 ms Limit Exceeded! 2 80.81.196.168 0.61 ms Limit Exceeded! 3 80.81.196.59 232.43 ms Limit Exceeded! 4 220.128.6.38 235.42 ms Limit Exceeded! 5 * 6 * 7 * 8 211.22.229.45 236.36 ms Limit Exceeded! 9 1.1.1.2 238.21 ms Limit Exceeded! 10 * 11 * 12 203.75.129.162 236.40 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.198.107 0.37 ms Limit Exceeded! 2 62.67.24.18 0.62 ms Limit Exceeded! 3 62.67.24.17 1.75 ms Limit Exceeded! 4 * 5 4.79.238.26 148.39 ms Limit Exceeded! 6 60.199.20.33 241.11 ms Limit Exceeded! 7 60.199.18.10 240.78 ms Limit Exceeded! 8 60.199.3.138 241.40 ms Limit Exceeded! 9 60.199.16.62 243.81 ms Limit Exceeded! 10 219.87.66.3 241.61 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.198.111 0.31 ms Limit Exceeded! 2 212.119.27.162 0.51 ms Limit Exceeded! 3 212.119.27.161 1.17 ms Limit Exceeded! 4 129.250.6.13 1.10 ms Limit Exceeded! 5 129.250.3.12 11.88 ms Limit Exceeded! 6 129.250.2.111 85.60 ms Limit Exceeded! 7 129.250.3.189 138.59 ms Limit Exceeded! 8 129.250.3.192 246.92 ms Limit Exceeded! 9 129.250.7.6 274.42 ms Limit Exceeded! 10 129.250.6.18 291.69 ms Limit Exceeded! 11 199.245.24.37 296.30 ms Limit Exceeded! 12 192.72.155.25 281.09 ms Limit Exceeded! 13 139.175.58.166 280.40 ms Limit Exceeded! 14 * 15 * 16 * 17 211.73.144.38 278.54 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.198.102 0.29 ms Limit Exceeded! 2 62.115.182.106 6.80 ms Limit Exceeded! 3 62.115.182.105 1.16 ms Limit Exceeded! 4 62.115.114.88 153.37 ms Limit Exceeded! 5 62.115.114.98 142.62 ms Limit Exceeded! 6 62.115.122.159 148.25 ms Limit Exceeded! 7 62.115.137.37 144.67 ms Limit Exceeded! 8 62.115.125.193 148.92 ms Limit Exceeded! 9 62.115.175.219 145.76 ms Limit Exceeded! 10 203.78.181.145 293.46 ms Limit Exceeded! 11 175.41.61.174 276.08 ms Limit Exceeded! 12 175.41.61.210 290.75 ms Limit Exceeded! 13 203.187.6.193 276.17 ms Limit Exceeded! 14 203.187.9.226 288.68 ms Limit Exceeded! 15 58.86.1.174 270.21 ms Limit Exceeded! 16 61.63.63.6 277.26 ms Limit Exceeded! 17 58.86.0.206 279.70 ms Limit Exceeded! 18 61.63.0.123 275.93 ms Limit Exceeded! 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.198.99 0.23 ms Limit Exceeded! 2 80.81.196.168 0.75 ms Limit Exceeded! 3 80.81.196.59 241.40 ms Limit Exceeded! 4 220.128.6.34 241.34 ms Limit Exceeded! 5 * 6 * 7 * 8 * 9 * 10 103.31.197.66 245.88 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 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.198.111 0.28 ms Limit Exceeded! 2 213.198.82.246 17.54 ms Limit Exceeded! 3 213.198.82.245 1.28 ms Limit Exceeded! 4 129.250.4.184 1.82 ms Limit Exceeded! 5 129.250.2.61 3.82 ms Limit Exceeded! 6 129.250.9.154 2.47 ms Limit Exceeded! 7 218.30.33.17 86.00 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.198.109 0.20 ms Limit Exceeded! 2 62.67.24.18 0.45 ms Limit Exceeded! 3 62.67.24.17 3.44 ms Limit Exceeded! 4 * 5 212.187.165.22 16.40 ms Limit Exceeded! 6 * 7 59.43.186.221 152.18 ms Limit Exceeded! 8 66.102.252.100 148.49 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.198.102 0.27 ms Limit Exceeded! 2 213.248.86.97 0.50 ms Limit Exceeded! 3 213.248.86.96 0.90 ms Limit Exceeded! 4 62.115.116.17 0.56 ms Limit Exceeded! 5 213.248.68.71 1.50 ms Limit Exceeded! 6 63.218.42.81 141.79 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.198.98 0.23 ms Limit Exceeded! 2 185.1.102.135 0.99 ms Limit Exceeded! 3 80.81.192.172 0.62 ms Limit Exceeded! 4 72.52.92.85 0.76 ms Limit Exceeded! 5 184.105.213.173 105.99 ms Limit Exceeded! 6 184.105.80.202 140.02 ms Limit Exceeded! 7 184.105.80.202 139.33 ms Limit Exceeded! 8 66.220.18.42 139.30 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.198.154 0.23 ms Limit Exceeded! 2 213.248.86.97 0.54 ms Limit Exceeded! 3 213.248.86.96 0.87 ms Limit Exceeded! 4 62.115.114.90 144.26 ms Limit Exceeded! 5 62.115.114.98 144.59 ms Limit Exceeded! 6 62.115.112.242 91.24 ms Limit Exceeded! 7 62.115.137.39 151.25 ms Limit Exceeded! 8 62.115.191.41 147.64 ms Limit Exceeded! 9 23.203.155.191 140.29 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.198.102 0.24 ms Limit Exceeded! 2 212.119.27.162 0.51 ms Limit Exceeded! 3 212.119.27.161 1.04 ms Limit Exceeded! 4 129.250.6.13 0.90 ms Limit Exceeded! 5 129.250.5.27 10.07 ms Limit Exceeded! 6 129.250.2.111 84.66 ms Limit Exceeded! 7 129.250.5.152 87.23 ms Limit Exceeded! 8 192.205.37.53 90.05 ms Limit Exceeded! 9 12.122.134.134 161.50 ms Limit Exceeded! 10 12.122.28.205 159.93 ms Limit Exceeded! 11 12.122.1.174 156.13 ms Limit Exceeded! 12 12.122.110.13 147.34 ms Limit Exceeded! 13 12.244.156.30 152.15 ms Limit Exceeded! 14 12.169.215.33 157.28 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.198.108 0.26 ms Limit Exceeded! 2 213.248.69.249 0.91 ms Limit Exceeded! 3 213.248.69.248 1.09 ms Limit Exceeded! 4 213.248.82.41 0.82 ms Limit Exceeded! 5 195.219.156.135 82.99 ms Limit Exceeded! 6 195.219.194.149 82.71 ms Limit Exceeded! 7 195.219.194.6 82.63 ms Limit Exceeded! 8 80.231.131.160 82.46 ms Limit Exceeded! 9 80.231.131.2 82.50 ms Limit Exceeded! 10 80.231.130.26 83.56 ms Limit Exceeded! 11 216.6.57.6 82.19 ms Limit Exceeded! 12 64.86.62.25 82.50 ms Limit Exceeded! 13 209.58.75.217 83.98 ms Limit Exceeded! 14 209.58.75.198 83.83 ms Limit Exceeded! 15 * 16 66.198.181.100 84.14 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.198.108 0.32 ms Limit Exceeded! 2 213.198.82.246 0.74 ms Limit Exceeded! 3 213.198.82.245 1.16 ms Limit Exceeded! 4 129.250.4.76 1.29 ms Limit Exceeded! 5 129.250.2.61 1.07 ms Limit Exceeded! 6 129.250.9.154 1.97 ms Limit Exceeded! 7 218.30.33.17 85.99 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.198.102 0.26 ms Limit Exceeded! 2 212.119.27.162 6.26 ms Limit Exceeded! 3 213.198.82.245 1.20 ms Limit Exceeded! 4 129.250.6.41 1.40 ms Limit Exceeded! 5 129.250.5.27 16.05 ms Limit Exceeded! 6 129.250.6.6 88.50 ms Limit Exceeded! 7 129.250.6.237 144.84 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.198.111 0.30 ms Limit Exceeded! 2 80.81.196.168 0.55 ms Limit Exceeded! 3 80.81.192.172 0.59 ms Limit Exceeded! 4 72.52.92.13 9.57 ms Limit Exceeded! 5 72.52.92.113 80.24 ms Limit Exceeded! 6 184.104.195.170 79.16 ms Limit Exceeded! 7 184.105.81.61 143.82 ms Limit Exceeded! 8 72.52.104.74 150.27 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.198.108 0.23 ms Limit Exceeded! 2 62.67.24.22 0.66 ms Limit Exceeded! 3 * 4 4.69.220.26 87.85 ms Limit Exceeded! 5 4.68.62.58 92.22 ms Limit Exceeded! 6 67.14.54.174 120.93 ms Limit Exceeded! 7 216.34.172.42 123.13 ms Limit Exceeded! 8 216.39.66.4 128.22 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 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.198.99 0.26 ms Limit Exceeded! 2 62.115.182.106 0.55 ms Limit Exceeded! 3 62.115.182.105 1.32 ms Limit Exceeded! 4 62.115.114.90 1.19 ms Limit Exceeded! 5 62.115.142.5 17.18 ms Limit Exceeded! 6 62.115.148.105 0.77 ms Limit Exceeded! 7 64.125.26.172 87.09 ms Limit Exceeded! 8 * 9 * 10 64.125.29.17 85.92 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 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.198.157 0.29 ms Limit Exceeded! 2 62.67.24.22 0.67 ms Limit Exceeded! 3 * 4 * 5 4.68.111.178 1.22 ms Limit Exceeded! 6 154.54.37.29 1.58 ms Limit Exceeded! 7 154.54.58.238 10.13 ms Limit Exceeded! 8 154.54.61.117 29.37 ms Limit Exceeded! 9 154.54.85.245 91.46 ms Limit Exceeded! 10 154.54.46.190 95.76 ms Limit Exceeded! 11 38.140.164.58 92.08 ms Limit Exceeded! 12 * 13 * 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 140.91.198.109 0.26 ms Limit Exceeded! 2 212.119.27.162 0.53 ms Limit Exceeded! 3 212.119.27.161 0.85 ms Limit Exceeded! 4 80.150.171.9 1.31 ms Limit Exceeded! 5 91.23.215.109 9.48 ms Limit Exceeded! 6 80.146.191.1 13.78 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.198.155 0.28 ms Limit Exceeded! 2 213.198.82.246 0.80 ms Limit Exceeded! 3 213.198.82.245 1.24 ms Limit Exceeded! 4 80.81.193.89 1.48 ms Limit Exceeded! 5 62.53.28.178 2.18 ms Limit Exceeded! 6 80.81.192.89 1.65 ms Limit Exceeded! 7 62.53.9.52 2.16 ms Limit Exceeded! 8 62.53.28.150 1.94 ms Limit Exceeded! 9 62.53.14.105 1.49 ms Limit Exceeded! 10 82.113.108.25 1.36 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.198.155 0.23 ms Limit Exceeded! 2 62.67.24.18 0.52 ms Limit Exceeded! 3 * 4 * 5 * 6 145.253.5.57 4.96 ms Limit Exceeded! 7 92.79.230.2 4.69 ms Limit Exceeded! 8 139.7.148.84 4.50 ms Limit Exceeded! 9 139.7.148.84 4.57 ms Limit Exceeded! 10 * 11 * 12 * 13 139.7.146.11 5.46 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.198.109 0.23 ms Limit Exceeded! 2 62.67.24.18 1.00 ms Limit Exceeded! 3 62.67.24.17 0.96 ms Limit Exceeded! 4 * 5 118.85.205.101 10.47 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.198.103 0.32 ms Limit Exceeded! 2 62.115.182.106 0.70 ms Limit Exceeded! 3 62.115.182.105 0.98 ms Limit Exceeded! 4 62.115.114.88 16.34 ms Limit Exceeded! 5 62.115.122.138 16.69 ms Limit Exceeded! 6 62.115.135.24 16.09 ms Limit Exceeded! 7 62.115.122.189 16.08 ms Limit Exceeded! 8 80.239.193.226 17.16 ms Limit Exceeded! 9 59.43.180.113 29.93 ms Limit Exceeded! 10 5.10.138.33 28.89 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.198.109 0.25 ms Limit Exceeded! 2 154.14.43.74 0.71 ms Limit Exceeded! 3 154.14.43.73 3.46 ms Limit Exceeded! 4 213.200.114.177 0.88 ms Limit Exceeded! 5 213.200.65.70 1.16 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.198.100 0.26 ms Limit Exceeded! 2 212.119.27.162 1.80 ms Limit Exceeded! 3 212.119.27.161 0.99 ms Limit Exceeded! 4 130.117.14.129 0.88 ms Limit Exceeded! 5 130.117.1.118 1.19 ms Limit Exceeded! 6 154.54.56.34 1.04 ms Limit Exceeded! 7 212.20.150.5 0.87 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.198.107 0.26 ms Limit Exceeded! 2 213.198.82.246 0.82 ms Limit Exceeded! 3 213.198.82.245 1.22 ms Limit Exceeded! 4 129.250.4.76 1.12 ms Limit Exceeded! 5 129.250.4.79 1.40 ms Limit Exceeded! 6 195.2.21.97 1.12 ms Limit Exceeded! 7 195.2.2.73 12.42 ms Limit Exceeded! 8 * 9 * 10 194.62.232.211 14.83 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.198.106 0.29 ms Limit Exceeded! 2 62.67.24.22 0.71 ms Limit Exceeded! 3 * 4 * 5 212.187.167.162 16.15 ms Limit Exceeded! 6 166.49.214.169 12.82 ms Limit Exceeded! 7 62.172.103.173 13.35 ms Limit Exceeded! 8 217.32.170.169 18.18 ms Limit Exceeded! 9 62.6.201.174 17.36 ms Limit Exceeded! 10 194.72.7.101 17.33 ms Limit Exceeded! 11 * 12 * 13 * 14 * 15 213.121.43.24 30.36 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.198.109 0.31 ms Limit Exceeded! 2 154.14.43.66 3.01 ms Limit Exceeded! 3 154.14.43.65 1.18 ms Limit Exceeded! 4 141.136.107.233 2.47 ms Limit Exceeded! 5 154.14.154.162 1.41 ms Limit Exceeded! 6 195.219.219.72 0.86 ms Limit Exceeded! 7 80.231.245.6 9.28 ms Limit Exceeded! 8 80.231.153.20 9.13 ms Limit Exceeded! 9 80.231.153.50 17.69 ms Limit Exceeded! 10 80.231.154.143 13.47 ms Limit Exceeded! 11 80.231.131.34 28.34 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.198.159 0.29 ms Limit Exceeded! 2 62.67.24.18 0.57 ms Limit Exceeded! 3 62.67.24.17 0.88 ms Limit Exceeded! 4 * 5 195.122.182.218 10.82 ms Limit Exceeded! 6 202.97.52.66 7.53 ms Limit Exceeded! 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 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.198.101 0.25 ms Limit Exceeded! 2 62.67.24.22 0.68 ms Limit Exceeded! 3 * 4 * 5 212.187.165.22 16.11 ms Limit Exceeded! 6 59.43.180.113 27.99 ms Limit Exceeded! 7 185.75.173.17 64.86 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.198.158 0.27 ms Limit Exceeded! 2 213.248.86.97 24.45 ms Limit Exceeded! 3 213.248.86.96 0.82 ms Limit Exceeded! 4 62.115.114.90 29.63 ms Limit Exceeded! 5 * 6 80.91.250.98 29.29 ms Limit Exceeded! 7 62.115.36.75 39.86 ms Limit Exceeded! 8 185.140.151.245 46.50 ms Limit Exceeded! 9 87.226.140.2 40.95 ms Limit Exceeded! 10 * 11 87.226.162.77 40.93 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.198.156 0.26 ms Limit Exceeded! 2 80.81.196.168 0.69 ms Limit Exceeded! 3 80.81.194.117 4.64 ms Limit Exceeded! 4 188.43.202.234 46.00 ms Limit Exceeded! 5 188.43.202.233 62.71 ms Limit Exceeded! 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 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.198.103 0.26 ms Limit Exceeded! 2 213.248.69.249 0.73 ms Limit Exceeded! 3 213.248.69.248 1.11 ms Limit Exceeded! 4 62.115.124.118 27.83 ms Limit Exceeded! 5 * 6 62.115.123.27 27.98 ms Limit Exceeded! 7 62.115.146.179 27.84 ms Limit Exceeded! 8 212.188.54.1 33.86 ms Limit Exceeded! 9 212.188.2.38 43.53 ms Limit Exceeded! 10 195.34.50.150 43.03 ms Limit Exceeded! 11 195.34.53.253 46.27 ms Limit Exceeded! 12 195.34.32.71 42.02 ms Limit Exceeded!
Generated by LemonBench on 2021-05-26T09:16:02Z Version 20201005 Intl BetaVersion, Hosted by DMIT.IO
|