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
| LemonBench Linux System Benchmark Utility Version 20200726 Intl BetaVersion Bench Start Time: 2020-07-26 21:21:37 Bench Finish Time: 2020-07-26 22:27:47 Test Mode: Full Mode -> System Information OS Release: CentOS Linux 7.8.2003 (x86_64) CPU Model: QEMU Virtual CPU version (cpu64-rhel6) 2.67 GHz CPU Cache Size: 4096 KB CPU Number: 1 vCPU Virt Type: KVM Memory Usage: 158.63 MB / 989.86 MB Swap Usage: 0 KB / 2.00 GB Disk Usage: 1.70 GB / 23.05 GB Boot Device: /dev/mapper/centos-root Load (1/5/15min): 0.78 0.39 0.17 CPU Usage: 21.1% used, 0.0% iowait, 0.0% steal Kernel Version: 4.9.215-36.el7.x86_64 Network CC Method: bbr + fq
-> Network Information
IPV4 - IP Address: [US] 104.148.40.* IPV4 - ASN Info: AS46573 (LayerHost, US) IPV4 - Region: United States California Los Angeles
-> Media Unlock Test
HBO Now: Yes 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: 739 Scores
-> Memory Performance Test (Standard Mode, 3-Pass @ 30sec)
1 Thread - Read Test : 9537.52 MB/s 1 Thread - Write Test: 8216.07 MB/s
-> Disk Speed Test (4K Block/1M Block, Direct-Write)
Test Name Write Speed Read Speed 10MB-4K Block 2.9 MB/s (719 IOPS, 3.56 s) 17.1 MB/s (4166 IOPS, 0.61 s) 10MB-1M Block 23.0 MB/s (21 IOPS, 0.46 s) 690 MB/s (658 IOPS, 0.02 s) 100MB-4K Block 1.7 MB/s (406 IOPS, 62.94 s) 10.7 MB/s (2605 IOPS, 9.82 s) 100MB-1M Block 49.2 MB/s (46 IOPS, 2.13 s) 28.3 MB/s (26 IOPS, 3.71 s) 1GB-4K Block 1.6 MB/s (397 IOPS, 643.38 s) 8.7 MB/s (2117 IOPS, 120.89 s) 1GB-1M Block 43.6 MB/s (41 IOPS, 24.06 s) 24.5 MB/s (23 IOPS, 42.77 s)
-> Speedtest.net Network Speed Test
Node Name Upload Speed Download Speed Ping Latency Server Name China, Jilin CU 30.42 MB/s 17.23 MB/s 295.63 ms China Unicom (China Changchun) China, Nanjing CU 12.06 MB/s 2.74 MB/s 184.91 ms China Unicom (China Nanjing) China, Shanghai CU 54.89 MB/s 39.06 MB/s 156.37 ms China Unicom 5G (China ShangHai) China, Hangzhou CT 3.46 MB/s 3.90 MB/s 136.40 ms China Telecom ZheJiang Branch (China Hangzhou) China, Nanjing CT 12.99 MB/s 45.72 MB/s 154.13 ms China Telecom JiangSu 5G (China Nanjing) China, Guangzhou CT 0.40 MB/s 32.45 MB/s 185.74 ms ChinaTelecom 5G (China Guangzhou) China, Wuhan CT 15.95 MB/s 30.41 MB/s 182.67 ms China Telecom Wuhan Branch (China Wuhan) China, Shenyang CM 19.66 MB/s 42.00 MB/s 256.20 ms ChinaMobile, Liaoning Branch (China Shenyang) China, Hangzhou CM 4.11 MB/s 17.59 MB/s 297.22 ms China Mobile Group Zhejiang Co.,Ltd (China Hangzhou) China, Nanning CM Fail: Latency test failed for both TCP, and no HTTP URL available. China, Lanzhou CM Fail: Host resolve failed: Timeout occurred in connect. Hong Kong, CSL 34.48 MB/s 73.37 MB/s 150.65 ms CSL (Hong Kong Kwai Chung) Hong Kong, PCCW 63.33 MB/s 72.61 MB/s 150.64 ms STC (China Hong Kong) Korea, South Korea 67.36 MB/s 46.27 MB/s 139.56 ms kdatacenter.com (South Korea Seoul) Japan, GLBB 85.11 MB/s 23.04 MB/s 108.31 ms Allied Telesis Capital Corporation (Japan Fussa-shi) Taiwan, FET 67.04 MB/s 63.59 MB/s 136.72 ms FarEasTone Telecom (Taiwan Keelung City) Taiwan, Chief 59.92 MB/s 46.04 MB/s 164.17 ms Chief Telecom (Taiwan Taoyuan) Taiwan, TWM 58.27 MB/s 50.33 MB/s 159.74 ms Taiwan Mobile (Taiwan Taoyuan) Singapore, Singtel 56.37 MB/s 59.24 MB/s 183.68 ms Singtel (Singapore Singapore) Singapore, M1 53.22 MB/s 66.91 MB/s 176.25 ms M1 Limited (Republic of Singapore Singapore) Singapore, NME 46.74 MB/s 56.31 MB/s 183.48 ms NewMedia Express (Republic of Singapore Singapore) USA, Century Link 104.85 MB/s 76.50 MB/s 29.10 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, 60 byte packets 1 * 2 * 3 * 4 * 5 63.217.104.125 1.15 ms AS3491,AS31713 United States California Los Angeles pccw.com 6 63.223.43.66 1.04 ms AS3491,AS31713 United States California Los Angeles pccw.com 7 * 8 4.26.2.162 144.29 ms AS3356 United States California Los Angeles level3.com 9 4.26.2.118 16.56 ms AS3356 United States California Los Angeles level3.com 10 219.158.16.93 173.76 ms AS4837 China Beijing ChinaUnicom 11 219.158.18.69 171.78 ms AS4837 China Beijing ChinaUnicom 12 202.96.12.14 165.75 ms AS4808 China Beijing ChinaUnicom 13 61.148.156.238 155.22 ms AS4808 China Beijing ChinaUnicom 14 61.148.156.238 153.54 ms AS4808 China Beijing ChinaUnicom 15 61.148.156.238 166.27 ms AS4808 China Beijing ChinaUnicom 16 * 17 * 18 123.125.99.1 176.32 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, 60 byte packets 1 * 2 * 3 * 4 23.247.4.2 0.59 ms AS46573 United States California Los Angeles layerhost.com 5 63.217.104.125 1.83 ms AS3491,AS31713 United States California Los Angeles pccw.com 6 63.218.72.178 1.08 ms AS3491,AS31713 United States California Los Angeles pccw.com 7 218.30.53.86 3.12 ms AS4134 United States California Los Angeles chinatelecom.com.cn 8 202.97.17.45 177.72 ms AS4134 China Beijing ChinaTelecom 9 202.97.17.45 178.95 ms AS4134 China Beijing ChinaTelecom 10 * 11 * 12 * 13 180.149.128.1 189.79 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, 60 byte packets 1 * 2 * 3 * 4 23.247.4.2 3.17 ms AS46573 United States California Los Angeles layerhost.com 5 63.217.104.125 0.97 ms AS3491,AS31713 United States California Los Angeles pccw.com 6 63.218.174.189 160.36 ms AS3491,AS31713 China Hong Kong pccw.com 7 63.218.174.37 162.13 ms AS3491,AS31713 China Hong Kong pccw.com 8 223.119.48.5 172.00 ms AS58453 China Hong Kong ChinaMobile 9 * 10 * 11 * 12 * 13 * 14 * 15 * 16 111.24.2.249 211.88 ms AS9808 China Beijing ChinaMobile 17 * 18 211.136.67.166 208.99 ms AS56048 China Beijing ChinaMobile 19 211.136.95.226 212.63 ms AS56048 China Beijing ChinaMobile 20 * 21 * 22 211.136.25.153 200.70 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, 60 byte packets 1 * 2 * 3 * 4 23.247.4.2 3.04 ms AS46573 United States California Los Angeles layerhost.com 5 63.217.104.125 1.28 ms AS3491,AS31713 United States California Los Angeles pccw.com 6 * 7 4.69.209.165 11.03 ms AS3356 United States California San Jose level3.com 8 4.53.208.102 156.30 ms AS3356 United States California San Jose level3.com 9 4.53.209.78 180.60 ms AS3356 United States California San Jose level3.com 10 219.158.98.173 151.16 ms AS4837 China Shanghai ChinaUnicom 11 219.158.113.109 157.54 ms AS4837 China Shanghai ChinaUnicom 12 219.158.113.109 148.79 ms AS4837 China Shanghai ChinaUnicom 13 219.158.113.109 148.09 ms AS4837 China Shanghai ChinaUnicom 14 58.247.0.49 174.28 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, 60 byte packets 1 * 2 * 3 * 4 23.247.4.2 0.62 ms AS46573 United States California Los Angeles layerhost.com 5 63.217.104.117 1.05 ms AS3491,AS31713 United States California Los Angeles pccw.com 6 218.30.53.86 2.19 ms AS4134 United States California Los Angeles chinatelecom.com.cn 7 218.30.53.86 7.37 ms AS4134 United States California Los Angeles chinatelecom.com.cn 8 202.97.59.154 151.73 ms AS4134 China Shanghai ChinaTelecom 9 * 10 * 11 * 12 202.97.57.146 145.88 ms AS4134 China Shanghai ChinaTelecom 13 101.95.225.34 147.16 ms AS4812 China Shanghai ChinaTelecom 14 101.227.255.34 146.57 ms AS4812 China Shanghai ChinaTelecom 15 * 16 180.153.28.1 131.59 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, 60 byte packets 1 * 2 * 3 * 4 23.247.4.4 1.03 ms AS46573 United States California Los Angeles layerhost.com 5 63.217.104.125 0.68 ms AS3491,AS31713 United States California Los Angeles pccw.com 6 63.223.15.102 155.01 ms AS3491,AS31713 China Hong Kong pccw.com 7 63.223.17.90 154.42 ms AS3491,AS31713 China Hong Kong pccw.com 8 * 9 * 10 * 11 221.183.55.90 174.95 ms AS9808 China Guangdong Guangzhou ChinaMobile 12 221.176.19.37 162.55 ms AS9808 China Guangdong Guangzhou ChinaMobile 13 221.176.22.125 168.28 ms AS9808 China Guangdong Guangzhou ChinaMobile 14 * 15 221.176.22.30 204.81 ms AS9808 China Shanghai ChinaMobile 16 221.183.55.22 204.36 ms AS9808 China Shanghai ChinaMobile
Traceroute to China, Guangzhou CU (TCP Mode, Max 30 Hop) ============================================================ traceroute to 210.21.4.130 (210.21.4.130), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.2 0.64 ms AS46573 United States California Los Angeles layerhost.com 5 63.217.104.117 0.98 ms AS3491,AS31713 United States California Los Angeles pccw.com 6 * 7 * 8 4.69.153.129 0.74 ms AS3356 United States California Los Angeles level3.com 9 219.158.96.33 236.18 ms AS4837 China Guangdong Guangzhou ChinaUnicom 10 4.26.0.66 74.54 ms AS3356 United States California Los Angeles level3.com 11 219.158.8.117 249.34 ms AS4837 China Guangdong Guangzhou ChinaUnicom 12 219.158.103.33 233.96 ms AS4837 China Guangdong Guangzhou ChinaUnicom 13 120.80.170.254 283.20 ms AS17622 China Guangdong Guangzhou ChinaUnicom 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, 60 byte packets 1 * 2 * 3 * 4 23.247.4.2 0.42 ms AS46573 United States California Los Angeles layerhost.com 5 63.217.104.125 2.13 ms AS3491,AS31713 United States California Los Angeles pccw.com 6 218.30.53.86 6.81 ms AS4134 United States California Los Angeles chinatelecom.com.cn 7 218.30.53.86 3.90 ms AS4134 United States California Los Angeles chinatelecom.com.cn 8 218.30.53.86 2.74 ms AS4134 United States California Los Angeles chinatelecom.com.cn 9 202.97.12.26 159.46 ms AS4134 China Guangdong Guangzhou ChinaTelecom 10 202.97.12.26 159.55 ms AS4134 China Guangdong Guangzhou ChinaTelecom 11 113.96.4.154 170.99 ms AS58466 China Guangdong Guangzhou ChinaTelecom 12 113.96.4.154 172.32 ms AS58466 China Guangdong Guangzhou ChinaTelecom 13 * 14 * 15 113.108.209.1 168.84 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, 60 byte packets 1 * 2 * 3 * 4 23.247.4.2 1.58 ms AS46573 United States California Los Angeles layerhost.com 5 63.217.104.117 2.09 ms AS3491,AS31713 United States California Los Angeles pccw.com 6 213.248.76.190 0.54 ms AS1299 United States California Los Angeles telia.com 7 213.248.76.190 0.67 ms AS1299 United States California Los Angeles telia.com 8 62.115.116.40 7.08 ms AS1299 United States California San Jose telia.com 9 62.115.118.168 31.19 ms AS1299 United States Washington Seattle telia.com 10 * 11 223.120.6.53 30.04 ms AS58453 United States Washington Seattle ChinaMobile 12 * 13 221.176.22.105 165.87 ms AS9808 China Guangdong Guangzhou ChinaMobile 14 221.183.38.126 184.13 ms AS9808 China Guangdong Shenzhen ChinaMobile 15 221.183.14.138 183.16 ms AS9808 China Guangdong Shenzhen ChinaMobile 16 211.136.249.145 180.26 ms AS56040 China Guangdong Guangzhou ChinaMobile 17 211.136.249.145 181.84 ms AS56040 China Guangdong Guangzhou ChinaMobile 18 211.139.129.5 175.47 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, 60 byte packets 1 * 2 * 3 * 4 * 5 63.217.104.125 0.86 ms AS3491,AS31713 United States California Los Angeles pccw.com 6 63.223.60.58 7.39 ms AS3491,AS31713 United States California San Jose pccw.com 7 144.232.1.130 10.50 ms AS1239 United States California sprint.com 8 144.232.22.217 7.24 ms AS1239 United States California San Jose sprint.com 9 144.223.242.10 171.30 ms AS1239 United States California San Jose sprint.com 10 144.223.242.10 172.40 ms AS1239 United States California San Jose sprint.com 11 218.105.2.129 168.92 ms AS9929 China Guangdong Guangzhou ChinaUnicom 12 210.13.112.254 192.77 ms AS9929 China Shanghai ChinaUnicom 13 210.13.66.237 203.72 ms AS9929 China Shanghai ChinaUnicom 14 210.13.66.238 205.52 ms AS9929 China Shanghai ChinaUnicom
Traceroute to China, Shanghai CT CN2 (TCP Mode, Max 30 Hop) ============================================================ traceroute to 58.32.0.1 (58.32.0.1), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.2 0.45 ms AS46573 United States California Los Angeles layerhost.com 5 63.217.104.125 0.94 ms AS3491,AS31713 United States California Los Angeles pccw.com 6 213.248.76.190 6.40 ms AS1299 United States California Los Angeles telia.com 7 129.250.2.161 112.63 ms AS2914 United States California Los Angeles ntt.com 8 59.43.182.89 155.23 ms * United States California Los Angeles ChinaTelecom 9 * 10 129.250.6.129 105.39 ms AS2914 Japan Tokyo ntt.com 11 101.95.88.42 164.64 ms AS4812 China Shanghai ChinaTelecom 12 101.95.40.106 140.19 ms AS4812 China Shanghai ChinaTelecom 13 58.32.0.1 156.36 ms AS4812 China Shanghai ChinaTelecom
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, 60 byte packets 1 * 2 * 3 * 4 * 5 63.217.104.117 0.85 ms AS3491,AS31713 United States California Los Angeles pccw.com 6 * 7 * 8 * 9 219.158.16.97 154.48 ms AS4837 China Beijing ChinaUnicom 10 219.158.3.181 158.93 ms AS4837 China Beijing ChinaUnicom 11 219.158.5.149 158.14 ms AS4837 China Beijing ChinaUnicom 12 125.33.186.42 163.76 ms AS4808 China Beijing ChinaUnicom 13 202.96.12.90 149.06 ms AS4808 China Beijing ChinaUnicom 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, 60 byte packets 1 * 2 * 3 * 4 23.247.4.4 1.23 ms AS46573 United States California Los Angeles layerhost.com 5 63.217.104.125 1.22 ms AS3491,AS31713 United States California Los Angeles pccw.com 6 * 7 * 8 4.26.2.166 12.71 ms AS3356 United States California Los Angeles level3.com 9 * 10 219.158.16.97 147.43 ms AS4837 China Beijing ChinaUnicom 11 * 12 * 13 202.96.13.238 145.96 ms AS4808 China Beijing ChinaUnicom 14 202.96.13.206 144.95 ms AS4808 China Beijing ChinaUnicom 15 61.51.37.206 153.41 ms AS4808 China Beijing ChinaUnicom 16 * 17 218.241.253.130 145.62 ms AS4808 China Beijing DRPENG 18 218.241.253.134 154.84 ms AS4808 China Beijing DRPENG 19 * 20 * 21 211.167.230.100 154.67 ms AS17964 China Beijing DRPENG
Traceroute to China, Beijing CERNET (TCP Mode, Max 30 Hop) ============================================================ traceroute to 202.205.109.205 (202.205.109.205), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.4 0.47 ms AS46573 United States California Los Angeles layerhost.com 5 63.217.104.117 0.89 ms AS3491,AS31713 United States California Los Angeles pccw.com 6 154.54.10.189 0.73 ms AS174 United States California Los Angeles cogentco.com 7 38.88.196.186 4.23 ms AS174 United States California Los Angeles cogentco.com 8 101.4.117.213 149.65 ms AS4538 China Beijing CHINAEDU 9 101.4.117.97 150.89 ms AS4538 China Beijing CHINAEDU 10 101.4.116.113 145.74 ms AS4538 China Beijing CHINAEDU 11 219.224.102.230 146.18 ms AS4538 China Beijing CHINAEDU 12 202.112.38.82 145.83 ms AS4538 China Beijing CHINAEDU 13 202.205.109.205 145.98 ms AS4538 China Beijing CHINAEDU
Traceroute to China, Beijing CSTNET (TCP Mode, Max 30 Hop) ============================================================ traceroute to 159.226.254.1 (159.226.254.1), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.4 1.12 ms AS46573 United States California Los Angeles layerhost.com 5 63.217.104.125 0.97 ms AS3491,AS31713 United States California Los Angeles pccw.com 6 63.223.15.70 168.90 ms AS3491,AS31713 China Hong Kong pccw.com 7 63.223.15.70 168.42 ms AS3491,AS31713 China Hong Kong pccw.com 8 * 9 159.226.254.5 192.10 ms AS7497 China Beijing CSTNET 10 159.226.254.1 196.48 ms AS7497 China Beijing CSTNET
Traceroute to China, Beijing GCable (TCP Mode, Max 30 Hop) ============================================================ traceroute to 211.156.140.17 (211.156.140.17), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 * 5 63.217.104.117 0.84 ms AS3491,AS31713 United States California Los Angeles pccw.com 6 63.218.72.66 1.12 ms AS3491,AS31713 United States California Los Angeles pccw.com 7 202.97.50.21 2.49 ms AS4134 United States California Los Angeles ChinaTelecom 8 218.30.53.86 1.84 ms AS4134 United States California Los Angeles chinatelecom.com.cn 9 202.97.59.133 168.50 ms AS4134 China Shanghai ChinaTelecom 10 * 11 202.97.94.177 176.63 ms AS4134 China Beijing ChinaTelecom 12 * 13 * 14 * 15 211.156.128.198 168.29 ms AS7641 China Beijing CATV 16 * 17 211.156.128.230 168.04 ms AS7641 China Beijing CATV 18 211.156.128.85 168.42 ms AS7641 China Beijing CATV 19 * 20 * 21 * 22 * 23 * 24 * 25 * 26 * 27 * 28 * 29 * 30 *
Traceroute to China, Hongkong CU (TCP Mode, Max 30 Hop) ============================================================ traceroute to 203.160.95.218 (203.160.95.218), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.4 2.11 ms AS46573 United States California Los Angeles layerhost.com 5 63.217.104.117 0.88 ms AS3491,AS31713 United States California Los Angeles pccw.com 6 63.218.232.33 150.53 ms AS3491,AS31713 Germany Hesse Frankfurt pccw.com 7 63.218.233.6 151.20 ms AS3491,AS31713 Germany Hesse Frankfurt pccw.com 8 217.150.59.246 230.31 ms AS20485 Russian Federation ttk.ru 9 217.150.59.245 225.74 ms AS20485 Russian Federation ttk.ru 10 43.252.86.65 231.39 ms AS10099 China Hong Kong ChinaUnicom 11 119.252.139.14 230.17 ms AS10099 China Hong Kong ChinaUnicom 12 202.77.22.89 228.56 ms AS10099 China Hong Kong ChinaUnicom 13 203.160.95.218 229.42 ms AS10099 China Hong Kong ChinaUnicom
Traceroute to China, Hongkong CT (TCP Mode, Max 30 Hop) ============================================================ traceroute to 203.215.232.173 (203.215.232.173), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 * 5 63.217.104.117 0.96 ms AS3491,AS31713 United States California Los Angeles pccw.com 6 218.30.53.86 5.22 ms AS4134 United States California Los Angeles chinatelecom.com.cn 7 218.30.53.86 5.96 ms AS4134 United States California Los Angeles chinatelecom.com.cn 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, 60 byte packets 1 * 2 * 3 * 4 * 5 63.217.104.125 0.75 ms AS3491,AS31713 United States California Los Angeles pccw.com 6 213.248.76.190 1.46 ms AS1299 United States California Los Angeles telia.com 7 213.248.79.253 0.97 ms AS1299 TELIA.COM BACKBONE telia.com 8 129.250.4.106 1.80 ms AS2914 United States California Los Angeles ntt.com 9 59.43.182.150 221.56 ms * China Hong Kong ChinaTelecom 10 59.43.181.186 157.72 ms * China Hong Kong ChinaTelecom 11 203.8.25.187 164.13 ms AS4809 China Hong Kong ChinaTelecom
Traceroute to China, Hongkong CM (TCP Mode, Max 30 Hop) ============================================================ traceroute to 203.142.105.9 (203.142.105.9), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.4 0.38 ms AS46573 United States California Los Angeles layerhost.com 5 63.217.104.125 0.81 ms AS3491,AS31713 United States California Los Angeles pccw.com 6 * 7 63.218.174.113 161.67 ms AS3491,AS31713 China Hong Kong pccw.com 8 63.223.17.254 169.46 ms AS3491,AS31713 China Hong Kong pccw.com 9 * 10 * 11 203.142.100.161 182.74 ms AS9231 China Hong Kong ChinaMobile 12 203.142.105.9 165.06 ms AS9231 China Hong Kong ChinaMobile
Traceroute to China, Hongkong HGC (TCP Mode, Max 30 Hop) ============================================================ traceroute to 218.188.104.30 (218.188.104.30), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.2 0.70 ms AS46573 United States California Los Angeles layerhost.com 5 63.217.104.125 0.86 ms AS3491,AS31713 United States California Los Angeles pccw.com 6 63.218.42.86 0.56 ms AS3491,AS31713 United States California Los Angeles pccw.com 7 66.110.59.2 151.60 ms AS6453 United States California Los Angeles tatacommunications.com 8 64.86.252.217 100.27 ms AS6453 Japan Tokyo tatacommunications.com 9 116.0.67.98 161.12 ms AS6453 China Hong Kong tatacommunications.com 10 129.250.2.177 115.03 ms AS2914 NTT.COM BACKBONE ntt.com 11 129.250.2.150 107.38 ms AS2914 NTT.COM BACKBONE ntt.com 12 120.29.216.42 157.80 ms AS6453 China Hong Kong tatacommunications.com 13 129.250.2.114 156.36 ms AS2914 China Hong Kong ntt.com 14 129.250.6.98 158.08 ms AS2914 China Hong Kong ntt.com 15 218.188.104.30 167.75 ms AS9304 China Hong Kong hgc.com.hk
Traceroute to China, Hongkong HKBN (TCP Mode, Max 30 Hop) ============================================================ traceroute to 210.6.23.239 (210.6.23.239), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.2 37.90 ms AS46573 United States California Los Angeles layerhost.com 5 63.217.104.117 1.62 ms AS3491,AS31713 United States California Los Angeles pccw.com 6 63.223.43.98 1.53 ms AS3491,AS31713 United States California Los Angeles pccw.com 7 154.54.42.101 0.92 ms AS174 United States California Los Angeles cogentco.com 8 154.54.40.146 13.37 ms AS174 United States California San Jose cogentco.com 9 154.54.43.149 14.22 ms AS174 United States California cogentco.com 10 154.54.84.30 29.49 ms AS174 United States Oregon Portland cogentco.com 11 154.54.43.149 14.42 ms AS174 United States California cogentco.com 12 154.54.88.50 163.60 ms AS174 China Hong Kong cogentco.com 13 154.54.88.50 163.84 ms AS174 China Hong Kong cogentco.com 14 61.244.225.66 168.36 ms AS9269 China Hong Kong hkbn.net 15 203.186.235.137 169.99 ms AS9269 China Hong Kong hkbn.net 16 203.186.235.137 168.01 ms AS9269 China Hong Kong hkbn.net 17 203.80.215.62 163.76 ms AS9269 China Hong Kong hkbn.net 18 210.6.23.239 164.09 ms AS9269 China Hong Kong hkbn.net
Traceroute to China, Hongkong PCCW (TCP Mode, Max 30 Hop) ============================================================ traceroute to 202.85.125.60 (202.85.125.60), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.2 0.55 ms AS46573 United States California Los Angeles layerhost.com 5 63.217.104.125 2.18 ms AS3491,AS31713 United States California Los Angeles pccw.com 6 63.223.15.70 169.03 ms AS3491,AS31713 China Hong Kong pccw.com 7 63.218.61.174 152.43 ms AS3491,AS31713 China Hong Kong pccw.com 8 63.218.61.174 159.15 ms AS3491,AS31713 China Hong Kong pccw.com 9 202.153.103.69 156.16 ms AS9925 China Hong Kong pbase.net 10 203.215.244.33 155.57 ms AS9925 China Hong Kong pbase.net 11 203.215.244.33 162.45 ms AS9925 China Hong Kong pbase.net 12 202.85.125.60 156.43 ms AS9925 China Hong Kong pccw.com
Traceroute to China, Hongkong TGT (TCP Mode, Max 30 Hop) ============================================================ traceroute to 202.123.76.239 (202.123.76.239), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.2 0.42 ms AS46573 United States California Los Angeles layerhost.com 5 63.217.104.125 0.95 ms AS3491,AS31713 United States California Los Angeles pccw.com 6 * 7 63.218.174.113 151.44 ms AS3491,AS31713 China Hong Kong pccw.com 8 63.217.237.206 155.93 ms AS3491,AS31713 China Hong Kong pccw.com 9 203.78.72.70 155.73 ms AS10098 China Hong Kong towngastelecom.com 10 203.78.73.99 152.45 ms AS10098 China Hong Kong towngastelecom.com 11 * 12 202.123.76.239 153.99 ms AS10098 China Hong Kong towngastelecom.com
Traceroute to China, Hongkong WTT (TCP Mode, Max 30 Hop) ============================================================ traceroute to 59.152.252.242 (59.152.252.242), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 * 5 63.217.104.125 0.94 ms AS3491,AS31713 United States California Los Angeles pccw.com 6 63.218.42.86 0.57 ms AS3491,AS31713 United States California Los Angeles pccw.com 7 154.54.42.101 1.06 ms AS174 United States California Los Angeles cogentco.com 8 154.54.40.146 13.40 ms AS174 United States California San Jose cogentco.com 9 116.0.67.98 154.86 ms AS6453 China Hong Kong tatacommunications.com 10 116.0.93.146 167.49 ms AS6453 China Hong Kong tatacommunications.com 11 116.0.93.245 152.71 ms AS6453 China Hong Kong tatacommunications.com 12 115.160.187.110 146.38 ms AS9381 China Hong Kong hkbn.net 13 115.160.187.110 151.95 ms AS9381 China Hong Kong hkbn.net 14 115.160.187.54 160.34 ms AS9381 China Hong Kong hkbn.net 15 59.152.252.196 158.46 ms AS9381 China Hong Kong hkbn.net 16 59.152.252.196 160.00 ms AS9381 China Hong Kong hkbn.net 17 59.152.252.242 154.07 ms AS9381 China Hong Kong hkbn.net
Traceroute to Singapore, China CT (TCP Mode, Max 30 Hop) ============================================================ traceroute to 203.215.233.1 (203.215.233.1), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 * 5 63.217.104.125 0.93 ms AS3491,AS31713 United States California Los Angeles pccw.com 6 218.30.53.86 21.96 ms AS4134 United States California Los Angeles chinatelecom.com.cn 7 202.97.49.105 5.15 ms AS4134 United States California Los Angeles ChinaTelecom 8 202.97.49.105 2.35 ms AS4134 United States California Los Angeles ChinaTelecom 9 202.97.49.105 7.69 ms AS4134 United States California Los Angeles ChinaTelecom 10 203.215.233.1 278.93 ms AS4134 Singapore ChinaTelecom
Traceroute to Singapore, China CT CN2 (TCP Mode, Max 30 Hop) ============================================================ traceroute to 183.91.61.1 (183.91.61.1), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.2 0.34 ms AS46573 United States California Los Angeles layerhost.com 5 63.217.104.125 0.90 ms AS3491,AS31713 United States California Los Angeles pccw.com 6 213.248.76.190 3.01 ms AS1299 United States California Los Angeles telia.com 7 213.248.79.253 1.35 ms AS1299 TELIA.COM BACKBONE telia.com 8 59.43.182.74 162.86 ms * China Guangdong Guangzhou ChinaTelecom 9 129.250.3.192 109.46 ms AS2914 Japan Tokyo ntt.com 10 183.91.61.1 200.69 ms AS4809 Singapore ChinaTelecom
Traceroute to Singapore, Singtel (TCP Mode, Max 30 Hop) ============================================================ traceroute to 118.201.1.11 (118.201.1.11), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 * 5 63.217.104.117 20.98 ms AS3491,AS31713 United States California Los Angeles pccw.com 6 63.218.42.10 0.62 ms AS3491,AS31713 United States California Los Angeles pccw.com 7 203.208.171.117 0.67 ms AS7473 United States California Los Angeles singtel.com 8 203.208.171.117 32.54 ms AS7473 United States California Los Angeles singtel.com 9 203.208.172.165 190.07 ms AS7473 Singapore singtel.com 10 203.208.177.214 191.58 ms AS7473 Singapore singtel.com 11 203.208.177.214 192.51 ms AS7473 Singapore singtel.com 12 165.21.12.20 185.84 ms AS3758 Singapore singtel.com 13 * 14 165.21.138.70 195.33 ms AS3758 Singapore singtel.com 15 * 16 203.125.232.130 176.05 ms AS3758 Singapore singtel.com 17 * 18 * 19 * 20 * 21 * 22 * 23 * 24 * 25 * 26 * 27 * 28 * 29 * 30 *
Traceroute to Singapore, StarHub (TCP Mode, Max 30 Hop) ============================================================ traceroute to 203.116.46.33 (203.116.46.33), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 * 5 63.217.104.117 0.87 ms AS3491,AS31713 United States California Los Angeles pccw.com 6 213.248.76.190 2.18 ms AS1299 United States California Los Angeles telia.com 7 62.115.121.185 158.47 ms AS1299 Singapore telia.com 8 129.250.4.106 1.07 ms AS2914 United States California Los Angeles ntt.com 9 129.250.3.192 109.80 ms AS2914 Japan Tokyo ntt.com 10 129.250.2.66 187.93 ms AS2914 Singapore ntt.com 11 129.250.3.130 181.75 ms AS2914 Singapore ntt.com 12 116.51.18.138 191.90 ms AS2914 Singapore ntt.com 13 * 14 61.8.243.1 177.25 ms AS4657 Singapore starhub.com 15 203.116.46.33 186.73 ms AS4657 Singapore starhub.com
Traceroute to Singapore, M1 (TCP Mode, Max 30 Hop) ============================================================ traceroute to 118.189.184.1 (118.189.184.1), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.2 0.37 ms AS46573 United States California Los Angeles layerhost.com 5 63.217.104.117 0.86 ms AS3491,AS31713 United States California Los Angeles pccw.com 6 63.223.34.134 188.13 ms AS3491,AS31713 Singapore pccw.com 7 63.217.59.46 180.83 ms AS3491,AS31713 Singapore pccw.com 8 202.65.246.137 166.41 ms AS4773 Singapore m1.com.sg 9 202.65.246.222 171.14 ms AS4773 Singapore m1.com.sg 10 * 11 * 12 * 13 * 14 * 15 * 16 * 17 * 18 * 19 * 20 * 21 * 22 * 23 * 24 * 25 * 26 * 27 * 28 * 29 * 30 *
Traceroute to Singapore, AWS (TCP Mode, Max 30 Hop) ============================================================ traceroute to 13.228.0.251 (13.228.0.251), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.2 12.63 ms AS46573 United States California Los Angeles layerhost.com 5 63.217.104.117 1.01 ms AS3491,AS31713 United States California Los Angeles pccw.com 6 63.223.15.70 171.89 ms AS3491,AS31713 China Hong Kong pccw.com 7 63.223.17.94 152.02 ms AS3491,AS31713 China Hong Kong pccw.com 8 63.217.17.42 160.57 ms AS3491,AS31713 China Hong Kong pccw.com 9 52.93.35.84 154.80 ms * China Hong Kong amazon.com 10 52.93.35.49 166.62 ms * China Hong Kong amazon.com 11 52.93.135.24 186.57 ms * United States amazon.com 12 * 13 52.93.9.68 202.34 ms * Singapore amazon.com 14 52.93.10.229 203.11 ms * Singapore amazon.com 15 52.93.11.98 194.97 ms * Singapore amazon.com 16 52.93.9.181 183.24 ms * Singapore amazon.com 17 203.83.223.204 183.76 ms AS16509 Singapore amazon.com 18 * 19 * 20 * 21 * 22 * 23 13.228.0.251 196.85 ms AS16509 Singapore amazon.com
Traceroute to Japan, NTT (TCP Mode, Max 30 Hop) ============================================================ traceroute to 61.213.155.84 (61.213.155.84), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 * 5 63.217.104.117 0.92 ms AS3491,AS31713 United States California Los Angeles pccw.com 6 129.250.9.189 1.28 ms AS2914 NTT.COM BACKBONE ntt.com 7 63.223.43.106 0.78 ms AS3491,AS31713 United States pccw.com 8 129.250.4.106 5.08 ms AS2914 United States California Los Angeles ntt.com 9 129.250.4.106 1.01 ms AS2914 United States California Los Angeles ntt.com 10 129.250.3.28 125.18 ms AS2914 Japan Tokyo ntt.com 11 61.213.179.34 126.35 ms AS2914 Japan Tokyo ntt.com 12 * 13 * 14 * 15 61.213.155.84 125.67 ms AS2914 Japan Tokyo ntt.com
Traceroute to Japan, IIJ (TCP Mode, Max 30 Hop) ============================================================ traceroute to 202.232.15.70 (202.232.15.70), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.2 0.40 ms AS46573 United States California Los Angeles layerhost.com 5 63.217.104.117 2.42 ms AS3491,AS31713 United States California Los Angeles pccw.com 6 63.223.47.65 30.06 ms AS3491,AS31713 United States pccw.com 7 63.223.47.65 29.46 ms AS3491,AS31713 United States pccw.com 8 206.81.80.237 29.13 ms * United States Washington Seattle seattleix.net 9 58.138.88.133 122.51 ms AS2497 Japan Tokyo iij.ad.jp 10 58.138.102.214 122.50 ms AS2497 Japan Tokyo iij.ad.jp 11 210.130.142.114 123.04 ms AS2497 Japan Tokyo iij.ad.jp 12 202.232.15.70 117.53 ms AS2497 Japan Tokyo iij.ad.jp
Traceroute to Japan, SoftBank (TCP Mode, Max 30 Hop) ============================================================ traceroute to 210.175.32.26 (210.175.32.26), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.2 15.97 ms AS46573 United States California Los Angeles layerhost.com 5 63.217.104.117 8.54 ms AS3491,AS31713 United States California Los Angeles pccw.com 6 63.223.43.98 1.53 ms AS3491,AS31713 United States California Los Angeles pccw.com 7 63.218.73.26 5.92 ms AS3491,AS31713 United States California Los Angeles pccw.com 8 * 9 143.90.47.33 105.71 ms AS4725 Japan odn.ne.jp 10 143.90.47.33 110.19 ms AS4725 Japan odn.ne.jp 11 143.90.164.254 112.12 ms AS4725 Japan Kanagawa odn.ne.jp 12 143.90.26.230 113.42 ms AS4725 Japan odn.ne.jp 13 210.175.32.123 113.99 ms AS4725 Japan odn.ne.jp 14 210.175.32.26 120.47 ms AS4725 Japan odn.ne.jp
Traceroute to Japan, KDDI (TCP Mode, Max 30 Hop) ============================================================ traceroute to 106.162.242.108 (106.162.242.108), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.4 3.46 ms AS46573 United States California Los Angeles layerhost.com 5 63.217.104.125 0.92 ms AS3491,AS31713 United States California Los Angeles pccw.com 6 63.223.60.106 7.94 ms AS3491,AS31713 United States California San Jose pccw.com 7 63.217.21.130 9.89 ms AS3491,AS31713 United States California San Jose pccw.com 8 63.217.21.130 7.16 ms AS3491,AS31713 United States California San Jose pccw.com 9 111.87.3.197 7.76 ms AS2516 United States California Palo Alto kddi.com 10 27.90.191.214 117.69 ms AS2516 Japan kddi.com 11 182.248.164.94 110.05 ms AS2516 Japan kddi.com 12 182.248.164.90 109.86 ms AS2516 Japan kddi.com 13 111.87.220.242 111.74 ms AS2516 Japan kddi.com 14 106.162.242.108 118.04 ms AS2516 Japan kddi.com
Traceroute to Japan, China CT (TCP Mode, Max 30 Hop) ============================================================ traceroute to 203.215.236.3 (203.215.236.3), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.2 1.29 ms AS46573 United States California Los Angeles layerhost.com 5 63.217.104.125 0.92 ms AS3491,AS31713 United States California Los Angeles pccw.com 6 218.30.53.86 4.68 ms AS4134 United States California Los Angeles chinatelecom.com.cn 7 202.97.50.21 6.48 ms AS4134 United States California Los Angeles ChinaTelecom 8 202.97.6.89 106.93 ms AS4134 Japan Tokyo ChinaTelecom 9 203.215.236.3 106.61 ms AS4134 Japan Tokyo ChinaTelecom
Traceroute to Japan, China CT CN2 (TCP Mode, Max 30 Hop) ============================================================ traceroute to 202.55.27.4 (202.55.27.4), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.2 0.44 ms AS46573 United States California Los Angeles layerhost.com 5 63.217.104.117 1.75 ms AS3491,AS31713 United States California Los Angeles pccw.com 6 213.248.76.190 5.48 ms http: 503 http: 503 7 213.248.79.253 1.36 ms http: 503 http: 503 8 129.250.4.106 0.97 ms http: 503 http: 503 9 129.250.3.192 108.64 ms http: 503 http: 503 10 202.55.27.4 102.93 ms http: 503 http: 503
Traceroute to Japan, Amazon AWS (TCP Mode, Max 30 Hop) ============================================================ traceroute to 13.112.63.251 (13.112.63.251), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.2 0.38 ms http: 503 http: 403 5 63.217.104.125 1.05 ms http: 503 http: error 6 63.223.15.70 168.80 ms http: 503 http: error 7 63.223.17.94 151.23 ms http: error http: 403 8 63.217.17.42 164.29 ms http: error http: 403 9 52.93.35.36 169.61 ms http: 403 http: 403 10 52.93.35.45 168.73 ms http: 403 http: 403 11 52.93.133.242 160.84 ms http: 403 http: 403 12 * 13 52.93.73.242 158.55 ms http: 403 http: 403 14 52.95.31.61 155.62 ms http: 403 http: 403 15 52.95.31.193 151.00 ms http: 403 http: 403 16 52.95.31.184 155.55 ms http: 403 http: 403 17 52.95.31.96 162.01 ms http: 403 http: 403 18 54.239.52.187 161.54 ms http: 403 http: 403 19 * 20 * 21 * 22 * 23 * 24 * 25 13.112.63.251 166.07 ms http: 403 http: 403
Traceroute to South Korea, KT (TCP Mode, Max 30 Hop) ============================================================ traceroute to 210.114.41.101 (210.114.41.101), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.4 0.42 ms http: 403 http: 403 5 63.217.104.117 0.82 ms http: 403 http: 403 6 63.218.72.70 1.12 ms http: 403 http: 403 7 154.54.25.149 0.97 ms http: 403 http: 403 8 154.54.42.101 13.31 ms http: 403 http: 403 9 38.104.84.190 0.88 ms http: 403 http: 403 10 112.174.87.17 124.66 ms http: 403 http: 403 11 112.174.87.45 132.03 ms http: 403 http: 403 12 112.174.87.17 123.03 ms http: 403 http: 403 13 112.174.20.102 133.84 ms http: 403 http: 403 14 112.174.60.110 133.91 ms http: 403 http: 403 15 112.188.245.210 138.12 ms http: 403 http: 403 16 211.37.137.22 135.10 ms http: 403 http: 403 17 210.114.41.101 136.74 ms http: 403 http: 403
Traceroute to South Korea, SK (TCP Mode, Max 30 Hop) ============================================================ traceroute to 175.122.253.62 (175.122.253.62), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.2 0.42 ms http: 403 http: 403 5 63.217.104.117 2.26 ms http: 403 http: 403 6 129.250.9.189 1.69 ms http: 403 http: 403 7 129.250.2.17 1.31 ms http: 403 http: 403 8 206.82.129.41 3.51 ms http: 403 http: 403 9 58.229.14.8 140.60 ms http: 403 http: 403 10 129.250.2.252 1.14 ms http: 403 http: 403 11 * 12 175.122.253.62 137.28 ms http: 403 http: 403
Traceroute to South Korea, LG (TCP Mode, Max 30 Hop) ============================================================ traceroute to 211.174.62.44 (211.174.62.44), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.2 3.45 ms http: 403 http: 403 5 * 6 * 7 63.218.50.82 2.15 ms http: 403 http: 403 8 * 9 203.233.17.117 0.95 ms http: 403 http: 403 10 * 11 * 12 1.208.145.17 140.31 ms http: 403 http: 403 13 1.208.150.6 132.19 ms http: 403 http: 403 14 * 15 * 16 * 17 211.174.62.44 134.92 ms http: 403 http: 403
Traceroute to South Korea, China CT CN2 (TCP Mode, Max 30 Hop) ============================================================ traceroute to 218.185.246.3 (218.185.246.3), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 * 5 63.217.104.125 1.50 ms http: 403 http: 403 6 213.248.76.190 1.59 ms http: 403 http: 403 7 * 8 59.43.182.89 155.64 ms http: 403 http: 403 9 129.250.3.192 109.78 ms http: 403 http: 403 10 218.185.246.3 177.57 ms http: 403 http: 403
Traceroute to South Korea, Amazon AWS (TCP Mode, Max 30 Hop) ============================================================ traceroute to 13.124.63.251 (13.124.63.251), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.2 0.89 ms http: 403 http: 403 5 63.217.104.117 5.60 ms http: 403 http: 403 6 63.223.33.66 104.49 ms http: 403 http: 403 7 63.223.33.102 109.05 ms http: 403 http: 403 8 63.222.57.30 104.15 ms http: 403 http: 403 9 * 10 * 11 52.93.251.95 104.89 ms http: 403 http: 403 12 52.93.66.67 108.85 ms http: 403 http: 403 13 * 14 52.93.131.158 137.98 ms http: 403 http: 403 15 54.239.122.124 129.58 ms http: 403 http: 403 16 52.93.248.138 134.75 ms http: 403 http: 403 17 * 18 54.239.122.221 139.01 ms http: 403 http: 403 19 54.239.122.26 139.51 ms http: 403 http: 403 20 * 21 * 22 * 23 * 24 * 25 13.124.63.251 138.94 ms http: 403 http: 403
Traceroute to China, Taiwan Chief (TCP Mode, Max 30 Hop) ============================================================ traceroute to 202.133.242.116 (202.133.242.116), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.4 0.69 ms http: 403 http: 403 5 63.217.104.117 1.99 ms http: 403 http: 403 6 154.54.10.189 5.31 ms http: 403 http: 403 7 154.54.25.149 1.76 ms http: 403 http: 403 8 154.54.40.146 13.36 ms http: 403 http: 403 9 154.54.43.149 14.63 ms http: 403 http: 403 10 * 11 154.54.81.66 29.86 ms http: 403 http: 403 12 154.54.40.138 184.37 ms http: 403 http: 403 13 154.18.24.66 191.22 ms http: 403 http: 403 14 103.123.252.9 180.41 ms http: 403 http: 403 15 113.21.95.72 184.40 ms http: 403 http: 403 16 103.123.254.38 184.56 ms http: 403 http: 403 17 113.21.95.72 184.37 ms http: 403 http: 403 18 202.133.242.114 187.99 ms http: error http: 403 19 202.133.242.116 191.14 ms http: 403 http: 403
Traceroute to China, Taiwan APTG (TCP Mode, Max 30 Hop) ============================================================ traceroute to 210.200.69.90 (210.200.69.90), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.4 0.42 ms http: 503 http: 503 5 63.217.104.117 2.15 ms http: 503 http: 503 6 63.223.60.58 7.43 ms http: error http: error 7 134.159.61.77 7.93 ms http: 503 http: 503 8 202.84.247.18 9.27 ms http: 503 http: 503 9 202.84.140.85 107.44 ms http: 503 http: 503 10 202.84.140.202 148.34 ms http: 503 http: 503 11 202.84.140.202 149.65 ms http: 503 http: 503 12 210.176.44.78 148.45 ms http: 503 http: 503 13 211.76.96.176 149.04 ms http: 503 http: 503 14 203.79.253.161 143.55 ms http: error http: error 15 210.200.80.254 148.69 ms http: 503 http: 503 16 210.200.80.254 150.92 ms http: error http: error 17 210.200.80.254 155.47 ms http: 403 http: 403 18 210.200.69.90 143.64 ms http: 503 http: 503
Traceroute to China, Taiwan CHT (TCP Mode, Max 30 Hop) ============================================================ traceroute to 203.75.129.162 (203.75.129.162), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.2 0.42 ms http: 403 http: 403 5 63.217.104.117 22.78 ms http: 403 http: 403 6 63.218.50.142 1.68 ms http: 403 http: 403 7 63.218.50.82 1.07 ms http: 403 http: 403 8 202.39.82.226 0.61 ms http: 403 http: 403 9 202.39.84.86 0.91 ms http: 403 http: 403 10 202.39.91.50 134.13 ms http: 403 http: 403 11 220.128.6.86 135.07 ms http: 403 http: 403 12 220.128.14.94 165.71 ms http: 403 http: 403 13 220.128.1.225 159.14 ms http: 403 http: 403 14 211.22.229.45 156.93 ms http: 403 http: 403 15 1.1.1.2 159.85 ms http: 403 http: 403 16 * 17 * 18 203.75.129.162 154.85 ms http: 403 http: 403
Traceroute to China, Taiwan TFN (TCP Mode, Max 30 Hop) ============================================================ traceroute to 219.87.66.3 (219.87.66.3), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.4 0.41 ms http: 403 http: 403 5 63.217.104.125 1.01 ms http: 403 http: 403 6 * 7 63.223.19.162 186.05 ms http: 403 http: 403 8 63.222.54.34 160.24 ms http: 403 http: 403 9 60.199.18.10 170.52 ms http: 403 http: 403 10 60.199.3.122 164.54 ms http: 403 http: 403 11 60.199.16.62 162.72 ms http: 403 http: 403 12 219.87.66.3 165.20 ms http: 403 http: 403
Traceroute to China,Taiwan FET (TCP Mode, Max 30 Hop) ============================================================ traceroute to 211.73.144.38 (211.73.144.38), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.2 0.40 ms http: 403 http: 403 5 63.217.104.125 0.88 ms http: 403 http: 403 6 63.223.9.122 129.92 ms http: 403 http: 403 7 63.223.9.118 145.91 ms http: 403 http: 403 8 63.222.40.102 144.05 ms http: 403 http: 403 9 139.175.59.222 138.66 ms http: 403 http: 403 10 * 11 * 12 * 13 211.73.144.38 133.81 ms http: 403 http: 403
Traceroute to China, Taiwan KBT (TCP Mode, Max 30 Hop) ============================================================ traceroute to 61.63.0.102 (61.63.0.102), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.4 0.33 ms http: 403 http: 403 5 63.217.104.117 0.94 ms http: 403 http: 403 6 129.250.9.189 0.87 ms http: 403 http: 403 7 129.250.2.161 135.96 ms http: 403 http: 403 8 129.250.4.106 1.15 ms http: 403 http: 403 9 129.250.2.17 143.90 ms http: 403 http: 403 10 129.250.3.237 1.49 ms http: 403 http: 403 11 129.250.7.6 147.59 ms http: 403 http: 403 12 129.250.7.41 141.59 ms http: 403 http: 403 13 203.187.3.25 146.09 ms http: 403 http: 403 14 203.187.3.25 154.25 ms http: 403 http: 403 15 58.86.1.174 132.73 ms http: 403 http: 403 16 58.86.1.174 134.17 ms http: 403 http: 403 17 58.86.0.94 145.51 ms http: 403 http: 403 18 58.86.0.94 153.92 ms http: 403 http: 403 19 61.63.0.102 138.05 ms http: 403 http: 403
Traceroute to China, Taiwan TAIFO (TCP Mode, Max 30 Hop) ============================================================ traceroute to 103.31.196.203 (103.31.196.203), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 * 5 63.217.104.117 0.99 ms http: 403 http: 403 6 63.223.60.58 7.24 ms http: 403 http: 403 7 72.52.104.77 7.16 ms http: 403 http: 403 8 184.104.194.38 107.95 ms http: 403 http: 403 9 184.105.64.129 158.74 ms http: 403 http: 403 10 184.105.64.129 171.90 ms http: 403 http: 403 11 27.50.36.130 181.35 ms http: 403 http: 403 12 103.123.252.9 182.72 ms http: 403 http: 403 13 103.123.252.9 195.08 ms http: 403 http: 403 14 113.21.84.210 186.52 ms http: 403 http: 403 15 103.31.197.122 182.89 ms http: 403 http: 403 16 103.31.197.122 177.96 ms http: 403 http: 403 17 * 18 103.31.197.70 184.85 ms http: 403 http: 403 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, 60 byte packets 1 * 2 * 3 * 4 * 5 63.217.104.125 0.86 ms http: error http: 403 6 63.218.72.222 4.59 ms http: error http: 403 7 218.30.53.86 2.75 ms http: 403 http: 403 8 202.97.92.46 3.57 ms http: 403 http: 403 9 218.30.33.17 68.37 ms http: error http: 403
Traceroute to United States, Los Angeles China CT CN2 (TCP Mode, Max 30 Hop) ============================================================ traceroute to 66.102.252.100 (66.102.252.100), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.4 1.01 ms http: 403 http: 403 5 63.217.104.117 0.83 ms http: 403 http: 403 6 63.218.72.138 0.97 ms http: 403 http: 403 7 63.223.43.114 0.88 ms http: 403 http: 403 8 66.102.252.100 0.83 ms http: 403 http: 403
Traceroute to United States, Los Angeles PCCW (TCP Mode, Max 30 Hop) ============================================================ traceroute to 63.218.42.81 (63.218.42.81), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.4 2.39 ms http: 403 http: 403 5 63.218.42.81 0.80 ms http: 403 http: 403
Traceroute to United States, Los Angeles HE (TCP Mode, Max 30 Hop) ============================================================ traceroute to 66.220.18.42 (66.220.18.42), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 * 5 63.217.104.125 1.29 ms http: 403 http: 403 6 63.223.60.58 8.52 ms http: 403 http: 403 7 72.52.104.77 7.21 ms http: 403 http: 403 8 72.52.104.77 6.80 ms http: 403 http: 403 9 184.104.193.50 7.84 ms http: 403 http: 403 10 66.220.18.42 36.20 ms http: 403 http: 403
Traceroute to United States, Los Angeles GTT (TCP Mode, Max 30 Hop) ============================================================ traceroute to 173.205.77.98 (173.205.77.98), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.2 1.26 ms http: 403 http: 403 5 63.217.104.125 0.97 ms http: 403 http: 403 6 63.218.42.82 0.52 ms http: 403 http: 403 7 89.149.181.102 4.65 ms http: 403 http: 403 8 173.205.77.98 1.18 ms http: 403 http: 403
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, 60 byte packets 1 * 2 * 3 * 4 * 5 63.217.104.117 0.92 ms http: 403 http: 403 6 63.218.178.58 22.89 ms http: 403 http: 403 7 192.205.32.81 11.82 ms http: 403 http: 403 8 192.205.32.81 9.16 ms http: 403 http: 403 9 12.244.156.30 19.36 ms http: 403 http: 403 10 12.169.215.33 12.88 ms http: 403 http: 403
Traceroute to United States, New York TATA (TCP Mode, Max 30 Hop) ============================================================ traceroute to 66.198.181.100 (66.198.181.100), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.2 0.44 ms http: 403 http: 403 5 63.217.104.117 0.87 ms http: 403 http: 403 6 63.218.42.86 1.69 ms http: 403 http: 403 7 63.218.42.86 2.92 ms http: 403 http: 403 8 216.6.87.110 70.71 ms http: 403 http: 403 9 216.6.87.43 72.08 ms http: 403 http: 403 10 216.6.87.43 67.47 ms http: 403 http: 403 11 209.58.75.217 72.43 ms http: 403 http: 403 12 209.58.75.217 67.20 ms http: 403 http: 403 13 * 14 * 15 66.198.181.100 70.34 ms http: 403 http: 403
Traceroute to United States, San Jose China CT (TCP Mode, Max 30 Hop) ============================================================ traceroute to 218.30.33.17 (218.30.33.17), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.2 3.45 ms http: 403 http: 403 5 63.217.104.117 1.22 ms http: 403 http: 403 6 63.218.72.226 1.33 ms http: 403 http: 403 7 202.97.92.46 1.78 ms http: 403 http: 403 8 218.30.33.17 68.29 ms http: 403 http: 403
Traceroute to United States, San Jose NTT (TCP Mode, Max 30 Hop) ============================================================ traceroute to 23.11.26.62 (23.11.26.62), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.2 0.39 ms http: 403 http: 403 5 63.217.104.125 0.82 ms http: 403 http: 403 6 63.218.72.218 0.92 ms http: 403 http: 403 7 129.250.9.189 0.63 ms http: 403 http: 403 8 129.250.3.237 0.98 ms http: 403 http: 403 9 129.250.4.150 11.95 ms http: 403 http: 403 10 129.250.2.48 7.75 ms http: 403 http: 403 11 23.11.26.62 8.39 ms http: 403 http: 403
Traceroute to United States, Fremont HE (TCP Mode, Max 30 Hop) ============================================================ traceroute to 72.52.104.74 (72.52.104.74), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 * 5 63.217.104.125 0.87 ms http: 403 http: 403 6 63.218.178.58 7.72 ms http: 403 http: 403 7 63.223.60.58 7.42 ms http: 403 http: 403 8 72.52.104.77 6.76 ms http: 403 http: 403 9 184.105.213.158 7.66 ms http: 403 http: 403 10 72.52.104.74 7.62 ms http: 403 http: 403
Traceroute to United States, Las Vegas Level3 (TCP Mode, Max 30 Hop) ============================================================ traceroute to 205.216.62.38 (205.216.62.38), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.2 0.44 ms http: 403 http: 403 5 63.217.104.117 0.94 ms http: 403 http: 403 6 * 7 * 8 * 9 4.68.62.138 0.87 ms http: 403 http: 403 10 216.34.172.42 38.64 ms http: 403 http: 403 11 216.34.164.98 44.39 ms http: 403 http: 403 12 205.216.7.204 43.66 ms http: 403 http: 403 13 * 14 * 15 205.216.62.38 39.14 ms http: 403 http: 403
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, 60 byte packets 1 * 2 * 3 * 4 23.247.4.4 5.63 ms http: 403 http: 403 5 63.217.104.125 0.96 ms http: 403 http: 403 6 63.218.50.142 1.39 ms http: 403 http: 403 7 63.218.50.142 1.02 ms http: 403 http: 403 8 64.125.12.73 0.88 ms http: 403 http: 403 9 64.125.27.40 8.96 ms http: 403 http: 403 10 64.125.28.144 9.08 ms http: 403 http: 403 11 64.125.27.63 8.41 ms http: 403 http: 403 12 64.125.191.31 8.74 ms http: 403 http: 403
Traceroute to United States, Ashburn Cogentco (TCP Mode, Max 30 Hop) ============================================================ traceroute to 149.127.109.166 (149.127.109.166), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.4 0.46 ms http: 403 http: 403 5 63.217.104.117 0.98 ms http: 403 http: 403 6 154.54.10.189 1.13 ms http: 403 http: 403 7 154.54.10.189 1.11 ms http: 403 http: 403 8 154.54.44.85 12.97 ms http: 403 http: 403 9 154.54.42.66 21.04 ms http: 403 http: 403 10 154.54.29.221 36.74 ms http: 403 http: 403 11 154.54.30.161 38.02 ms http: 403 http: 403 12 154.54.28.69 51.14 ms http: 403 http: 403 13 154.54.7.157 61.95 ms http: 403 http: 403 14 38.140.164.58 62.96 ms http: 403 http: 403 15 38.140.164.58 64.58 ms http: 403 http: 403 16 149.127.109.166 63.07 ms http: 403 http: 403
Traceroute to German, Telekom (TCP Mode, Max 30 Hop) ============================================================ traceroute to 80.146.191.1 (80.146.191.1), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.4 0.45 ms http: 403 http: 403 5 63.217.104.125 0.90 ms http: 403 http: 403 6 63.223.54.30 69.18 ms http: 403 http: 403 7 80.150.169.73 71.07 ms http: 403 http: 403 8 91.23.215.109 158.51 ms http: 403 http: 403 9 80.146.191.1 162.64 ms http: 403 http: 403
Traceroute to German, Frankfurt O2 (TCP Mode, Max 30 Hop) ============================================================ traceroute to 82.113.108.25 (82.113.108.25), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.2 0.62 ms http: 403 http: 403 5 63.217.104.125 0.95 ms http: 403 http: 403 6 * 7 63.223.32.62 34.85 ms http: 403 http: 403 8 63.218.23.238 35.66 ms http: 403 http: 403 9 * 10 5.53.4.57 68.57 ms http: 403 http: 403 11 176.52.248.88 165.18 ms http: 403 http: 403 12 176.52.248.88 160.86 ms http: 403 http: 403 13 62.53.1.35 159.74 ms http: 403 http: 403 14 213.140.51.61 173.55 ms http: 403 http: 403 15 62.53.0.5 192.26 ms http: 403 http: 403 16 62.53.28.151 184.63 ms http: 403 http: 403 17 62.53.14.105 163.98 ms http: 403 http: 403 18 62.53.2.63 160.87 ms http: 403 http: 403 19 82.113.108.25 161.10 ms http: 403 http: 403
Traceroute to German, Frankfurt Vodafone (TCP Mode, Max 30 Hop) ============================================================ traceroute to 139.7.146.11 (139.7.146.11), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.4 0.41 ms http: 403 http: 403 5 63.217.104.125 0.97 ms http: 403 http: 403 6 63.218.72.138 0.96 ms http: 403 http: 403 7 195.2.2.154 144.40 ms http: 403 http: 403 8 195.2.24.246 128.86 ms http: 403 http: 403 9 195.2.31.14 142.71 ms http: 403 http: 403 10 195.2.2.242 143.37 ms http: 403 http: 403 11 * 12 * 13 92.79.230.2 143.27 ms http: 403 http: 403 14 139.7.148.84 153.14 ms http: 403 http: 403 15 92.79.230.2 145.06 ms http: 403 http: 403 16 * 17 * 18 * 19 139.7.146.11 142.19 ms http: 403 http: 403
Traceroute to German, Frankfurt China CT (TCP Mode, Max 30 Hop) ============================================================ traceroute to 118.85.205.101 (118.85.205.101), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.2 0.42 ms http: 403 http: 403 5 63.217.104.125 2.26 ms http: 403 http: 403 6 218.30.53.86 2.90 ms http: 403 http: 403 7 202.97.50.25 4.45 ms http: 403 http: 403 8 202.97.49.157 63.38 ms http: 403 http: 403 9 118.85.205.101 145.43 ms http: 403 http: 403
Traceroute to German, Frankfurt China CT CN2 (TCP Mode, Max 30 Hop) ============================================================ traceroute to 5.10.138.33 (5.10.138.33), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.2 4.21 ms http: 403 http: 403 5 63.217.104.117 0.96 ms http: 403 http: 403 6 63.218.72.138 1.05 ms http: 403 http: 403 7 * 8 * 9 * 10 212.187.165.22 140.60 ms http: 403 http: 403 11 212.187.165.22 140.53 ms http: 403 http: 403 12 5.10.138.33 151.11 ms http: 403 http: 403
Traceroute to German, Frankfurt GTT (TCP Mode, Max 30 Hop) ============================================================ traceroute to 213.200.65.70 (213.200.65.70), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.2 3.13 ms http: 403 http: 403 5 63.217.104.117 2.20 ms http: 403 http: 403 6 63.218.72.174 0.87 ms http: 403 http: 403 7 63.218.42.82 1.19 ms http: 403 http: 403 8 213.200.115.161 149.59 ms http: 403 http: 403 9 213.200.65.70 149.77 ms http: 403 http: 403
Traceroute to German, FrankfurtCogentco (TCP Mode, Max 30 Hop) ============================================================ traceroute to 212.20.150.5 (212.20.150.5), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.2 9.31 ms http: 403 http: 403 5 63.217.104.117 0.80 ms http: 403 http: 403 6 154.54.10.189 0.77 ms http: 403 http: 403 7 154.54.10.189 1.15 ms http: 403 http: 403 8 154.54.25.149 1.24 ms http: 403 http: 403 9 154.54.42.78 20.87 ms http: 403 http: 403 10 154.54.29.221 36.96 ms http: 403 http: 403 11 154.54.28.129 51.23 ms http: 403 http: 403 12 154.54.30.161 36.71 ms http: 403 http: 403 13 154.54.85.246 132.14 ms http: 403 http: 403 14 154.54.85.242 133.21 ms http: 403 http: 403 15 154.54.40.109 67.41 ms http: 403 http: 403 16 130.117.48.94 154.36 ms http: 403 http: 403 17 212.20.150.5 153.71 ms http: 403 http: 403
Traceroute to United Kingdom, Vodafone (TCP Mode, Max 30 Hop) ============================================================ traceroute to 194.62.232.211 (194.62.232.211), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 * 5 63.217.104.125 0.90 ms http: 403 http: 403 6 63.217.104.90 0.60 ms http: 403 http: 403 7 63.217.104.90 0.63 ms http: 403 http: 403 8 195.2.31.9 130.17 ms http: 403 http: 403 9 195.2.31.6 64.93 ms http: 403 http: 403 10 195.2.28.170 130.30 ms http: 403 http: 403 11 * 12 * 13 194.62.232.211 130.74 ms http: 403 http: 403
Traceroute to United Kingdom, BT (TCP Mode, Max 30 Hop) ============================================================ traceroute to 213.121.43.24 (213.121.43.24), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.2 1.30 ms http: 403 http: 403 5 63.217.104.125 1.05 ms http: 403 http: 403 6 63.223.54.30 69.02 ms http: 403 http: 403 7 166.49.169.101 68.68 ms http: 403 http: 403 8 166.49.195.79 151.87 ms http: 403 http: 403 9 166.49.209.133 145.83 ms http: 403 http: 403 10 213.121.193.12 154.34 ms http: 403 http: 403 11 109.159.250.149 157.12 ms http: 403 http: 403 12 194.72.7.101 151.15 ms http: 403 http: 403 13 * 14 * 15 * 16 * 17 213.121.43.24 163.36 ms http: 403 http: 403
Traceroute to United Kingdom, London TATA (TCP Mode, Max 30 Hop) ============================================================ traceroute to 80.231.131.34 (80.231.131.34), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.2 1.12 ms http: 403 http: 403 5 * 6 63.223.43.114 133.53 ms http: 403 http: 403 7 63.218.42.86 156.66 ms http: 403 http: 403 8 63.243.251.2 143.86 ms http: 403 http: 403 9 * 10 63.243.128.28 202.83 ms http: 403 http: 403 11 63.243.128.26 203.15 ms http: 403 http: 403 12 216.6.90.22 203.53 ms http: 403 http: 403 13 80.231.131.34 272.87 ms http: 403 http: 403
Traceroute to Russia, China CT (TCP Mode, Max 30 Hop) ============================================================ traceroute to 118.85.205.181 (118.85.205.181), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 * 5 63.217.104.125 0.79 ms http: 403 http: 403 6 63.218.72.218 0.86 ms http: 403 http: 403 7 202.97.50.21 3.29 ms http: 403 http: 403 8 202.97.50.21 8.52 ms http: 403 http: 403 9 202.97.52.165 152.55 ms http: 403 http: 403 10 202.97.30.230 248.38 ms http: 403 http: 403 11 * 12 * 13 * 14 * 15 * 16 * 17 * 18 * 19 * 20 * 21 * 22 * 23 * 24 * 25 * 26 * 27 * 28 * 29 * 30 *
Traceroute to Russia, China CT CN2 (TCP Mode, Max 30 Hop) ============================================================ traceroute to 185.75.173.17 (185.75.173.17), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.2 12.26 ms http: 403 http: 403 5 63.217.104.117 3.31 ms http: 403 http: 403 6 * 7 * 8 * 9 * 10 * 11 185.75.173.17 187.06 ms http: 403 http: 403
Traceroute to Russia, Moscow RT (TCP Mode, Max 30 Hop) ============================================================ traceroute to 87.226.162.77 (87.226.162.77), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.4 0.37 ms http: 403 http: 403 5 63.217.104.117 2.81 ms http: 403 http: 403 6 * 7 4.69.135.162 173.29 ms http: 403 http: 403 8 213.249.107.130 171.66 ms http: 403 http: 403 9 213.59.212.223 191.21 ms http: 403 http: 403 10 87.226.140.2 188.87 ms http: 403 http: 403 11 * 12 87.226.162.77 193.76 ms http: 403 http: 403
Traceroute to Russia, Moscow TTK (TCP Mode, Max 30 Hop) ============================================================ traceroute to 217.150.32.2 (217.150.32.2), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 * 5 63.217.104.125 1.05 ms http: 403 http: 403 6 63.218.232.33 150.12 ms http: 403 http: 403 7 63.218.233.6 150.69 ms http: 403 http: 403 8 * 9 62.33.207.217 203.41 ms http: 403 http: 403 10 * 11 217.150.32.243 199.80 ms http: 403 http: 403 12 10.105.0.1 195.17 ms http: 403 http: 403 13 217.150.32.2 186.85 ms http: 403 http: 403
Traceroute to Russia, Moscow MTS (TCP Mode, Max 30 Hop) ============================================================ traceroute to 195.34.32.71 (195.34.32.71), 30 hops max, 60 byte packets 1 * 2 * 3 * 4 23.247.4.2 0.48 ms http: 403 http: 403 5 63.217.104.125 2.37 ms http: 403 http: 403 6 * 7 4.69.135.162 173.71 ms http: 403 http: 403 8 213.242.69.98 193.18 ms http: 403 http: 403 9 4.69.135.162 173.31 ms http: 403 http: 403 10 212.188.2.38 201.15 ms http: 403 http: 403 11 195.34.50.150 191.52 ms http: 403 http: 403 12 195.34.53.253 194.06 ms http: 403 http: 403 13 195.34.32.71 200.80 ms http: 403 http: 403
Generated by LemonBench on 2020-07-27T02:27:49Z Version 20200726 Intl BetaVersion, Hosted by DMIT.IO
|