This repository has been archived by the owner on May 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Targets-Shared
3209 lines (2538 loc) · 90 KB
/
Targets-Shared
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
@define TITLE-HEADER netmeter.club
+ PointsInterestCDN
menu = CDNs (Worldwide)
title = TITLE-HEADER - CDNs (Worldwide)
++ akamai
menu = [CDN] Akamai
title = [CDN] Akamai [www.akamai.com]
host = www.akamai.com
++ amazon-cloudfront
menu = [CDN] Amazon CloudFront
title = [CDN] Amazon CloudFront [www.amazon.com]
host = www.amazon.com
++ automattic
menu = [CDN] Automattic
title = [CDN] Automattic, Inc. (WordPress.com et al.) [automattic.com]
host = automattic.com
++ baidu
menu = [CDN] Baidu
title = [CDN] Baidu [www.baidu.com]
host = www.baidu.com
++ bunnycdn
menu = [CDN] BunnyCDN
title = [CDN] BunnyCDN [bunnycdn.com]
host = bunnycdn.com
++ buyvm-anycast
menu = [CDN] BuyVM Anycast
title = [CDN] BuyVM Anycast [198.251.86.22]
host = 198.251.86.22
++ cachefly
menu = [CDN] CacheFly
title = [CDN] CacheFly [cachefly.cachefly.net]
host = cachefly.cachefly.net
++ cdn77
menu = [CDN] CDN77.com
title = [CDN] CDN77.com [www.cdn77.com]
host = www.cdn77.com
++ cloudflare-dns
menu = [CDN] Cloudflare
title = [CDN] Cloudflare [cloudflare.com]
host = cloudflare.com
++ dropbox
menu = [CDN] Dropbox
title = [CDN] Dropbox [dropbox.com]
host = dropbox.com
++ facebook
menu = [CDN] Facebook
title = [CDN] Facebook [facebook.com]
host = facebook.com
++ fastly
menu = [CDN] Fastly
title = [CDN] Fastly [cdn-fastly.deb.debian.org]
host = cdn-fastly.deb.debian.org
++ github
menu = [CDN] GitHub
title = [CDN] GitHub [github.com]
host = github.com
++ gcorelabs-cdn
menu = [CDN] G-Core Labs CDN
title = [CDN] G-Core Labs CDN [d.gcdn.co]
host = d.gcdn.co
++ google
menu = [CDN] Google
title = [CDN] Google [google.com]
host = google.com
++ incapsula
menu = [CDN] Incapsula
title = [CDN] Imperva Incapsula [www.incapsula.com]
host = www.incapsula.com
++ jsdelivr
menu = [CDN] jsDelivr
title = [CDN] jsDelivr [cdn.jsdelivr.net]
host = cdn.jsdelivr.net
++ keycdn
menu = [CDN] KeyCDN
title = [CDN] KeyCDN [www.keycdn.com]
host = www.keycdn.com
++ level3-cdn
menu = [CDN] Level 3 DNS
title = [CDN] Level 3 DNS Resolver [4.2.2.1]
host = 4.2.2.1
++ microsoft
menu = [CDN] Microsoft O365 ACDC
title = [CDN] Microsoft Office 365 ACDC [www.outlook.com]
host = www.outlook.com
++ opendns
menu = [CDN] OpenDNS
title = [CDN] OpenDNS [208.67.222.222]
host = 208.67.222.222
++ psychz-cdn
menu = [CDN] Psychz
title = [CDN] Psychz [psychz.net]
host = psychz.net
++ quad9
menu = [CDN] Quad9 DNS
title = [CDN] Quad9 DNS [9.9.9.9]
host = 9.9.9.9
++ quantil
menu = [CDN] QUANTIL / Wangsu
title = [CDN] QUANTIL / Wangsu / ChinaNetCenter (Overseas) [en.wangsu.com]
host = en.wangsu.com
++ stackpath
menu = [CDN] StackPath
title = [CDN] StackPath [www.stackpath.com]
host = www.stackpath.com
++ tmall
menu = [CDN] Tmall.com (Alibaba)
title = [CDN] Tmall.com (Alibaba Group) @ Alibaba Cloud [www.tmall.com]
host = www.tmall.com
++ twitter
menu = [CDN] Twitter
title = [CDN] Twitter [twitter.com]
host = twitter.com
++ verizon-edgecast
menu = [CDN] Verizon Edgecast
title = [CDN] Verizon Edgecast [www.verizondigitalmedia.com]
host = www.verizondigitalmedia.com
++ wikimedia
menu = [CDN] Wikimedia Foundation
title = [CDN] Wikimedia Foundation [wikimedia.org]
host = wikimedia.org
++ yahoo
menu = [CDN] Yahoo!
title = [CDN] Yahoo! [www.yahoo.com]
host = www.yahoo.com
+ PointsInterestNAW
menu = North America - Northwest
title = TITLE-HEADER - North America (Northwest)
++ ubc
menu = [CA/BC] UBC (Vancouver)
title = [CA/BC] The University of British Columbia - Vancouver, British Columbia [mirror.it.ubc.ca]
host = mirror.it.ubc.ca
++ aebc
menu = [CA/BC] AEBC / Cipherkey
title = [CA/BC] AEBC / Cipherkey - Vancouver, British Columbia [www.aebc.com]
host = www.aebc.com
++ bell-yvr
menu = [CA/BC] Bell (Vancouver)
title = [CA/BC] Bell - Vancouver, British Columbia [vancnspd01.srvr.bell.ca]
host = vancnspd01.srvr.bell.ca
++ canadianwebhost-yvr
menu = [CA/BC] Canadianwebhosting
title = [CA/BC] Canadianwebhosting - Vancouver, British Columbia [23.111.64.1]
host = 23.111.64.1
++ freerangecloud-yvr
menu = [CA/BC] Free Range Cloud
title = [CA/BC] Free Range Cloud - Vancouver, British Columbia [van.lg.freerangecloud.com]
host = van.lg.freerangecloud.com
++ fullhost-yvr0
menu = [CA/BC] FullHost (Vancouver)
title = [CA/BC] FullHost (Pretecs Networks) @ Astute Internet - Vancouver, British Columbia [lg.vancouver.fullhost.com]
host = lg.vancouver.fullhost.com
++ novusnow
menu = [CA/BC] Novus (Vancouver)
title = [CA/BC] Novus - Vancouver, British Columbia [www.novusnow.ca]
host = www.novusnow.ca
++ rogers-yvr
menu = [CA/BC] Rogers (Vancouver)
title = [CA/BC] Rogers - Vancouver, British Columbia [speedtestbcvan.rogers.com]
host = speedtestbcvan.rogers.com
++ shaw-yvr
menu = [CA/BC] Shaw (Vancouver)
title = [CA/BC] Shaw - Vancouver, British Columbia [speedtest.vc.shawcable.net]
host = speedtest.vc.shawcable.net
++ teksavvy-yvr
menu = [CA/BC] Teksavvy (Vancouver)
title = [CA/BC] Teksavvy - Vancouver, Canada [speedtest-van.teksavvy.com]
host = speedtest-van.teksavvy.com
++ telus-yvr
menu = [CA/BC] TELUS (Vancouver)
title = [CA/BC] TELUS - Vancouver, British Columbia [vancouver.speedtest.telus.com]
host = vancouver.speedtest.telus.com
++ colocrossing-sea
menu = [US/WA] ColoCrossing (Seattle)
title = [US/WA] ColoCrossing - Seattle, Washington [lg.sea.colocrossing.com]
host = lg.sea.colocrossing.com
++ gthost-sea
menu = [US/WA] GTHost (Seattle)
title = [US/WA] GTHost (GlobalTeleHost Corp.) - Seattle, United States [38.91.102.162]
host = 38.91.102.162
++ ionswitch-sea
menu = [US/WA] IonSwitch (Seattle)
title = [US/WA] IonSwitch - Seattle, Washington [lg.ionswitch.com]
host = lg.ionswitch.com
++ quadranet-sea
menu = [US/WA] QuadraNet (Seattle)
title = [US/WA] QuadraNet - Seattle, Washington [173.205.92.235]
host = 173.205.92.235
++ ramnode-sea
menu = [US/WA] RamNode (Seattle)
title = [US/WA] RamNode - Seattle, Washington [lg.sea.ramnode.com]
host = lg.sea.ramnode.com
++ securedragon-sea
menu = [US/WA] Hivelocity
title = [US/WA] SecureDragon @ Hivelocity - Seattle, Washington [198.57.47.4]
host = 198.57.47.4
++ spartanhost-sea
menu = [US/WA] SpartanHost (Seattle)
title = [US/WA] SpartanHost - Seattle, Washington [lg.sea.spartanhost.net]
host = lg.sea.spartanhost.net
++ usdedicated-sea
menu = [US/WA] US Dedicated (Seattle)
title = [US/WA] US Dedicated @ Internap SEF (INAP) - Seattle, Washington [lg.seadedicated.com]
host = lg.seadedicated.com
++ vultr-sea
menu = [US/WA] Vultr (Seattle)
title = [US/WA] Vultr / Choopa - Seattle, Washington [wa-us-ping.vultr.com]
host = wa-us-ping.vultr.com
++ atnt-sea
menu = [US/WA] AT&T (Seattle)
title = [US/WA] AT&T - Seattle, Washington [sea.speedtest.sbcglobal.net]
host = sea.speedtest.sbcglobal.net
++ centurylink-sea
menu = [US/WA] CenturyLink (Seattle)
title = [US/WA] CenturyLink - Seattle, Washington [seattle.speedtest.centurylink.net]
host = seattle.speedtest.centurylink.net
++ amazon-pdx
menu = [US/OR] Amazon AWS
title = [US/OR] Amazon Web Services - Oregon (us-west-2) [54.188.0.0]
host = 54.188.0.0
++ ceranetworks-pdx
menu = [US/OR] CeraNetworks
title = [US/OR] WikiHost @ CeraNetworks - Portland, Oregon [lg.cera-ncp.pdx.50network.com]
host = lg.cera-ncp.pdx.50network.com
++ gcp-pdx
menu = [US/OR] Google Cloud
title = [US/OR] Google Cloud Platform - Oregon (us-west-1) via CloudHarmony [us-west1-gce.cloudharmony.net]
host = us-west1-gce.cloudharmony.net
++ ovh-pdx
menu = [US/OR] OVH (Hillsboro)
title = [US/OR] OVH - Hillsboro, Oregon [pdx1-hil.smokeping.ovh.net]
host = pdx1-hil.smokeping.ovh.net
++ shaw-cgab
menu = [CA/AB] Shaw (Calgary)
title = [CA/AB] Shaw - Calgary, Alberta [speedtest.cg.shawcable.net]
host = speedtest.cg.shawcable.net
++ telus-cgab
menu = [CA/AB] TELUS (Calgary)
title = [CA/AB] TELUS - Calgary, Alberta [calgary.speedtest.telus.com]
host = calgary.speedtest.telus.com
++ rogers-edab
menu = [CA/AB] Rogers (Edmonton)
title = [CA/AB] Rogers - Edmonton, Alberta [speedtestedmonton.rogers.com]
host = speedtestedmonton.rogers.com
++ shaw-edab
menu = [CA/AB] Shaw (Edmonton)
title = [CA/AB] Shaw - Edmonton, Alberta [speedtest.ed.shawcable.net]
host = speedtest.ed.shawcable.net
++ alaska
menu = [US/AK] Alaska Comm.
title = [US/AK] Alaska Communications - Anchorage, AK [speedtest.anc.acsalaska.net]
host = speedtest.anc.acsalaska.net
+ PointsInterestNAW2
menu = North America - Southwest
title = TITLE-HEADER - North America (Southwest)
++ internet-archive
menu = [US/CA] Internet Archive
title = [US/CA] Internet Archive [www.archive.org]
host = www.archive.org
++ ucberkeley
menu = [US/CA] UC Berkeley
title = [US/CA] University of California, Berkeley - Berkeley, CA, US [mirrors.ocf.berkeley.edu]
host = mirrors.ocf.berkeley.edu
++ aliyun-us-west-1
menu = [US/CA] Aliyun (us-west-1)
title = [US/CA] Aliyun / Alibaba Cloud - Silicon Valley (us-west-1) [oss-us-west-1.aliyuncs.com]
host = oss-us-west-1.aliyuncs.com
++ amazon-ncal
menu = [US/CA] Amazon AWS
title = [US/CA] Amazon Web Services - North California (us-west-1) [54.151.0.2]
host = 54.151.0.2
++ digitalocean-sfo
menu = [US/CA] Digital Ocean
title = [US/CA] Digital Ocean - San Francisco, California [speedtest-sfo1.digitalocean.com]
host = speedtest-sfo1.digitalocean.com
++ linode-ca
menu = [US/CA] Linode (Fremont)
title = [US/CA] Linode - Fremont, California [speedtest.fremont.linode.com]
host = speedtest.fremont.linode.com
++ leaseweb-sfo
menu = [US/CA] LeaseWeb
title = [US/CA] LeaseWeb - San Francisco, California [mirror.sfo12.us.leaseweb.net]
host = mirror.sfo12.us.leaseweb.net
++ softlayer-sjc
menu = [US/CA] SoftLayer (San Jose)
title = [US/CA] SoftLayer - San Jose, California [speedtest.sjc01.softlayer.com]
host = speedtest.sjc01.softlayer.com
++ vultr-sjo
menu = [US/CA] Vultr (San Jose)
title = [US/CA] Vultr / Choopa - Silicon Valley [sjo-ca-us-ping.vultr.com]
host = sjo-ca-us-ping.vultr.com
++ anchnet-la
menu = [US/CA] Anchnet (LA)
title = [US/CA] Anchnet - Los Angeles, California (CN2 / CDIA) [118.184.73.13]
host = 118.184.73.13
++ anynode-la
menu = [US/CA] anyNode (LA)
title = [US/CA] anyNode - Los Angeles, California [lg.lax.anynode.net]
host = lg.lax.anynode.net
++ ceranetworks-lax
menu = [US/CA] CeraNetworks (LA)
title = [US/CA] WikiHost @ CeraNetworks - Los Angeles, California [lg.cera-163.lax.50network.com]
host = lg.cera-163.lax.50network.com
++ chinatelecomglobal-us
menu = [US/CA] China Telecom
title = [US/CA] China Telecom Global (ctamericas.com) - Los Angeles, California [104.192.111.1]
host = 104.192.111.1
++ cloudcone
menu = [US/CA] CloudCone (LA)
title = [US/CA] CloudCone @ MULTACOM - Los Angeles, California [la.lg.cloudc.one]
host = la.lg.cloudc.one
++ colocrossing-la
menu = [US/CA] ColoCrossing (LA)
title = [US/CA] ColoCrossing - Los Angeles, California [lg.la.colocrossing.com]
host = lg.la.colocrossing.com
++ dedipath-lax
menu = [US/CA] DediPath
title = [US/CA] DediPath - Los Angeles, California [lg.lax.dedicontrol.com]
host = lg.lax.dedicontrol.com
++ gthost-lax
menu = [US/CA] GTHost (Los Angeles)
title = [US/CA] GTHost (GlobalTeleHost Corp.) - Los Angeles, United States [162.251.63.162]
host = 162.251.63.162
++ hosthatch-lax
menu = [US/CA] HostHatch (LA)
title = [US/CA] HostHatch - Los Angeles, California [lg.lax.hosthatch.com]
host = lg.lax.hosthatch.com
++ psychz-la
menu = [US/CA] Psychz (Los Angeles)
title = [US/CA] Psychz - Los Angeles, California [lg.lax.psychz.net]
host = lg.lax.psychz.net
++ quadranet-la
menu = [US/CA] QuadraNet (LA)
title = [US/CA] QuadraNet - Los Angeles, California [198.55.111.5]
host = 198.55.111.5
++ ramnode-la
menu = [US/CA] Ramnode (LA)
title = [US/CA] Ramnode - Los Angeles, California [lg.la.ramnode.com]
host = lg.la.ramnode.com
++ reliablesite-la
menu = [US/CA] ReliableSite (LA)
title = [US/CA] ReliableSite - Los Angeles, CA, US [los-angeles-speedtest.reliablesite.net]
host = los-angeles-speedtest.reliablesite.net
++ rfchost-la
menu = [US/CA] RFCHost (LA)
title = [US/CA] RFCHost / Huajuan / BetaIDC - Los Angeles, California [103.86.70.1]
host = 103.86.70.1
++ usdedicated-lax
menu = [US/CA] US Dedicated (LA)
title = [US/CA] US Dedicated @ Internap (INAP) - Los Angeles, California [lg.ladedicated.com]
host = lg.ladedicated.com
++ vmhaus-lax
menu = [US/CA] VMHaus (Los Angeles)
title = [US/CA] VMHaus - Los Angeles, California [103.105.49.34]
host = 103.105.49.34
++ voxility-la
menu = [US/CA] Virmach/Voxility (LA)
title = [US/CA] Virmach @ Voxility - Los Angeles, DDOS Protected [filtered-la.lg.virmach.com]
host = filtered-la.lg.virmach.com
++ vultr-lax
menu = [US/CA] Vultr (Los Angeles)
title = [US/CA] Vultr / Choopa - Los Angeles, California [lax-ca-us-ping.vultr.com]
host = lax-ca-us-ping.vultr.com
++ att-ca-lax
menu = [US/CA] AT&T (Los Angeles)
title = [US/CA] AT&T - Los Angeles, CA, US [lax.speedtest.sbcglobal.net]
host = lax.speedtest.sbcglobal.net
++ verizon-caazp1
menu = [US/CA] Verizon (Los Angeles)
title = [US/CA] Verizon - Los Angeles, CA, US [caazp1.speed.vzwnet.com]
host = caazp1.speed.vzwnet.com
++ buyvm-lv0
menu = [US/NV] BuyVM (Las Vegas)
title = [US/NV] BuyVM - Las Vegas, Nevada [speedtest.lv.buyvm.net]
host = speedtest.lv.buyvm.net
++ fiberhub-nv
menu = [US/NV] FiberHub (Las Vegas)
title = [US/NV] Fiberhub - Las Vegas, NV, US [199.241.143.254]
host = 199.241.143.254
++ smarthost-nv
menu = [US/NV] SmartHost (Las Vegas)
title = [US/NV] SmartHost - Las Vegas, Nevada [199.43.206.3]
host = 199.43.206.3
++ ioflood
menu = [US/AZ] IOFLOOD
title = [US/AZ] IOFLOOD - Phoenix, Arizona [ioflood.com]
host = ioflood.com
++ securedragon-phoenix
menu = [US/AZ] SecureDragon
title = [US/AZ] SecureDragon @ PhoenixNAP - Phoenix, Arizona [162.253.177.4]
host = 162.253.177.4
++ serverhub-phx
menu = [US/AZ] Virmach (Phoenix)
title = [US/AZ] Virmach @ ServerHub - Phoenix, Arizona [phx.lg.virmach.com]
host = phx.lg.virmach.com
++ wiredblade
menu = [US/AZ] Wired Blade (Phoenix)
title = [US/AZ] Wired Blade @ InterNAP (INAP) - Phoenix, Arizona [162.216.242.193]
host = 162.216.242.193
++ budgetnode-ogd
menu = [US/UT] BudgetNode (Ogden)
title = [US/UT] BudgetNode @ WebNX - Ogden, Utah [ogd.lg.budgetnode.net]
host = ogd.lg.budgetnode.net
++ xmission
menu = [US/UT] XMission
title = [US/UT] XMission - Salt Lake City, Utah, US [xmission.com]
host = xmission.com
++ tmobile-hi-hon
menu = [US/HI] T-Mobile (Honolulu)
title = [US/HI] T-Mobile - Honolulu, HI, US [hon.speedtest.t-mobile.com]
host = hon.speedtest.t-mobile.com
+ PointsInterestNAC
menu = North America - Central
title = TITLE-HEADER - North America (Central)
++ uchicago
menu = [US/IL] University of Chicago
title = [US/IL] University of Chicago - Chicago, IL, US [debian.uchicago.edu]
host = debian.uchicago.edu
++ colocrossing-chi
menu = [US/IL] ColoCrossing (Chicago)
title = [US/IL] ColoCrossing - Chicago, Illinois [66.225.198.198]
host = 66.225.198.198
++ gthost-chi
menu = [US/IL] GTHost (Chicago)
title = [US/IL] GTHost (GlobalTeleHost Corp.) - Chicago, United States [162.251.60.162]
host = 162.251.60.162
++ nfoservers-chi
menu = [US/IL] NFOservers (Chicago)
title = [US/IL] NFOservers - Chicago, Illinois [216.52.148.4]
host = 216.52.148.4
++ psychz-chi
menu = [US/IL] Psychz (Chicago)
title = [US/IL] Psychz - Chicago, Illinois [lg.chi.psychz.net]
host = lg.chi.psychz.net
++ quadranet-chi
menu = [US/IL] QuadraNet (Chicago)
title = [US/IL] QuadraNet - Chicago, Illinois [104.129.31.245]
host = 104.129.31.245
++ rackspace-ord
menu = [US/IL] Rackspace (Chicago)
title = [US/IL] Rackspace - Chicago, Illinois [ord.speedtest.rackspace.com]
host = ord.speedtest.rackspace.com
++ steadfast-il
menu = [US/IL] Steadfast (Chicago)
title = [US/IL] Steadfast - Chicago, Illinois [lookingglass.chi.steadfast.net]
host = lookingglass.chi.steadfast.net
++ usdedicated-chi
menu = [US/IL] US Dedicated
title = [US/IL] US Dedicated @ Internap (INAP) - Chicago, Illinois [lg.chidedicated.com]
host = lg.chidedicated.com
++ vultr-chi
menu = [US/IL] Vultr (Chicago)
title = [US/IL] Vultr - Chicago, Illinois [il-us-ping.vultr.com]
host = il-us-ping.vultr.com
++ centurylink-il-chicago
menu = [US/IL] CenturyLink (Chicago)
title = [US/IL] CenturyLink - Chicago, IL, US [chicago.speedtest.centurylink.net]
host = chicago.speedtest.centurylink.net
++ verizon-winbp1
menu = [US/WI] Verizon (Milwaukee)
title = [US/WI] Verizon - Milwaukee, WI, US [winbp1.speed.vzwnet.com]
host = winbp1.speed.vzwnet.com
++ canadianwebhost-tor
menu = [CA/ON] Canadianwebhosting
title = [CA/ON] Canadianwebhosting - Toronto, Ontario [67.231.25.1]
host = 67.231.25.1
++ dediserve-tor1
menu = [CA/ON] Dediserve (Toronto)
title = [CA/ON] Dediserve @ DigitalFyre - Toronto, Ontario, Canada [speedtest.c1.tor1.dediserve.com]
host = speedtest.c1.tor1.dediserve.com
++ digitalocean-tor1
menu = [CA/ON] DigitalOcean (Toronto)
title = [CA/ON] DigitalOcean (TOR1) - Toronto, Canada [speedtest-tor1.digitalocean.com]
host = speedtest-tor1.digitalocean.com
++ fullhost-tor
menu = [CA/ON] FullHost (Toronto)
title = [CA/ON] FullHost (Pretecs Networks) @ Astute Internet - Toronto, Canada [lg.toronto.fullhost.com]
host = lg.toronto.fullhost.com
++ gthost-tor
menu = [CA/ON] GTHost (Toronto)
title = [CA/ON] GTHost (GlobalTeleHost Corp.) - Toronto, Canada [198.57.26.164]
host = 198.57.26.164
++ linode-tor
menu = [CA/ON] Linode (Toronto)
title = [CA/ON] Linode - Toronto, Canada [speedtest.tor1.linode.com]
host = speedtest.toronto1.linode.com
++ lunanode-tor
menu = [CA/ON] LunaNode (Toronto)
title = [CA/ON] LunaNode - Toronto, Canada [toronto-test.lunanode.com]
host = toronto-test.lunanode.com
++ softlayer-tor
menu = [CA/ON] SoftLayer (Toronto)
title = [CA/ON] SoftLayer (tor01) - Toronto, Canada [speedtest.tor01.softlayer.com]
host = speedtest.tor01.softlayer.com
++ teksavvy
menu = [CA/ON] Teksavvy (Toronto)
title = [CA/ON] Teksavvy - Toronto, Canada [speedtest.teksavvy.com]
host = speedtest.teksavvy.com
++ vultr-tor
menu = [CA/ON] Vultr (Toronto)
title = [CA/ON] Vultr - Toronto, Ontario, Canada [tor-ca-ping.vultr.com]
host = tor-ca-ping.vultr.com
++ smarthost-co
menu = [US/CO] SmartHost (Denver)
title = [US/CO] SmartHost - Denver, Colorado [192.199.242.2]
host = 192.199.242.2
++ securedragon-denver
menu = [US/CO] SecureDragon
title = [US/CO] SecureDragon @ Handy Networks - Denver, CO, United States [198.57.46.4]
host = 198.57.46.4
++ dedispec-mo
menu = [US/MO] Dedispec (Kansas City)
title = [US/MO] Dedispec - Kansas City, Missouri [198.204.225.10]
host = 198.204.225.10
++ nocix
menu = [US/MO] Nocix
title = [US/MO] Nocix / Wholesale Internet - Kansas City, Missouri [192.187.107.154]
host = 192.187.107.154
++ joes-dc
menu = [US/MO] Joe's Datacenter
title = [US/MO] Joe's Datacenter - Kansas City, Missouri [lg.joesdatacenter.com]
host = lg.joesdatacenter.com
++ gcp-iowa
menu = [US/IA] Google Cloud
title = [US/IA] Google Cloud Platform (us-central1) - Council Bluffs, Iowa, United States [us-central1-gce.cloudharmony.net]
host = us-central1-gce.cloudharmony.net
++ amazon-ohi
menu = [US/OH] Amazon AWS
title = [US/OH] Amazon Web Services (us-east-2) - Ohio, United States [18.188.0.0]
host = 18.188.0.0
++ freerangecloud-ywg
menu = [CA/MB] Free Range Cloud
title = [CA/MB] Free Range Cloud @ FastNet - Winnipeg, Manitoba, Canada [lg.freerangecloud.com]
host = lg.freerangecloud.com
++ cox-ne-om
menu = [US/NE] Cox (Omaha)
title = [US/NE] Cox Communications - Omaha, NE, US [speedtest.rd.om.cox.net]
host = speedtest.rd.om.cox.net
++ att-in-ind
menu = [US/IN] AT&T (Indianapolis)
title = [US/IN] AT&T - Indianapolis, IN, US [ind.speedtest.sbcglobal.net]
host = ind.speedtest.sbcglobal.net
++ tmobile-mi-det
menu = [US/MI] T-Mobile (Detroit)
title = [US/MI] T-Mobile - Detroit, MI, US [det.speedtest.t-mobile.com]
host = det.speedtest.t-mobile.com
+ PointsInterestNAS
menu = North America - South
title = TITLE-HEADER - North America (South)
++ colocrossing-dal-0
menu = [US/TX] ColoCrossing (Dallas)
title = [US/TX] ColoCrossing - Dallas, Texas [lg.dal.colocrossing.com]
host = lg.dal.colocrossing.com
++ impactvps-dal
menu = [US/TX] ImpactVPS (Dallas)
title = [US/TX] ImpactVPS @ Incero - Dallas, Texas [172.110.8.1]
host = 172.110.8.1
++ linode-dal
menu = [US/TX] Linode (Dallas)
title = [US/TX] Linode - Dallas, Texas [speedtest.dallas.linode.com]
host = speedtest.dallas.linode.com
++ nexril
menu = [US/TX] Nexril (Dallas)
title = [US/TX] Nexril - Dallas, Texas [lg.nexril.net]
host = lg.nexril.net
++ psychz-texas
menu = [US/TX] Psychz (Dallas)
title = [US/TX] Psychz - Dallas, Texas [lg.texas.psychz.net]
host = lg.texas.psychz.net
++ rackspace-dfw
menu = [US/TX] Rackspace (Dallas)
title = [US/TX] Rackspace - Dallas, Texas [dfw.speedtest.rackspace.com]
host = dfw.speedtest.rackspace.com
++ ssdblaze-dal
menu = [US/TX] SSDBlaze (Dallas)
title = [US/TX] SSDBlaze - Dallas, Texas [lg-dal.ssdblaze.com]
host = lg-dal.ssdblaze.com
++ quadranet-dal
menu = [US/TX] QuadraNet (Dallas)
title = [US/TX] QuadraNet - Dallas, Texas [lg.dal.colocrossing.com]
host = lg.dal.colocrossing.com
++ usdedicated-dal
menu = [US/TX] US Dedicated (Dallas)
title = [US/TX] US Dedicated @ Internap DAL006 (INAP) - Dallas, Texas [lg.daldedicated.com]
host = lg.daldedicated.com
++ vultr-dal
menu = [US/TX] Vultr (Dallas)
title = [US/TX] Vultr - Dallas, Texas [tx-us-ping.vultr.com]
host = tx-us-ping.vultr.com
++ charter-tx-spt01ftwotx
menu = [US/TX] Charter (Fort Worth)
title = [US/TX] Charter - Fort Worth, TX, US [spt01ftwotx.ftwo.tx.charter.com]
host = spt01ftwotx.ftwo.tx.charter.com
++ softlayer-hou
menu = [US/TX] SoftLayer (Houston)
title = [US/TX] SoftLayer (hou02) - Houston, Texas [speedtest.hou02.softlayer.com]
host = speedtest.hou02.softlayer.com
++ centurylink-nm-albuquerque
menu = [US/NM] CenturyLink
title = [US/NM] CenturyLink - Albuquerque, NM, US [albuquerque.speedtest.centurylink.net]
host = albuquerque.speedtest.centurylink.net
++ att-la-msy
menu = [US/LA] AT&T (New Orleans)
title = [US/LA] AT&T - New Orleans, LA, US [msy.speedtest.sbcglobal.net]
host = msy.speedtest.sbcglobal.net
++ softlayer-mex
menu = [MX] SoftLayer (Queretaro)
title = [MX] SoftLayer (mex01) - Queretaro, Mexico [speedtest.mex01.softlayer.com]
host = speedtest.mex01.softlayer.com
++ maxcom
menu = [MX] Maxcom (Mexico City)
title = [MX] Maxcom - Mexico City, Mexico [speedmax.maxcom.net.mx]
host = speedmax.maxcom.net.mx
++ alestra
menu = [MX] Alestra (Mexico City)
title = [MX] Alestra - Mexico City, Mexico [speedtest-mex-01.alestra.net.mx]
host = speedtest-mex-01.alestra.net.mx
++ telefonica-mx5
menu = [MX] Telefonica (Cancun)
title = [MX] Telefonica/Movistar Mexico - Cancun, Mexico [internet5.movistar.com.mx]
host = internet5.movistar.com.mx
+ PointsInterestNAE
menu = North America - Northeast
title = TITLE-HEADER - North America (Northeast)
++ columbia-u
menu = [US/NY] Columbia University
title = [US/NY] Columbia University - New York City, NY, US [mirror.cc.columbia.edu]
host = mirror.cc.columbia.edu
++ att-ny-nyc
menu = [US/NY] AT&T (New York City)
title = [US/NY] AT&T - New York City, NY, US [nyc.speedtest.sbcglobal.net]
host = nyc.speedtest.sbcglobal.net
++ buyvm-ny
menu = [US/NY] BuyVM (NYC)
title = [US/NY] BuyVM - New York, USA [speedtest.ny.buyvm.net]
host = speedtest.ny.buyvm.net
++ colocrossing-nyc
menu = [US/NY] ColoCrossing (NYC)
title = [US/NY] ColoCrossing - New York City, NY, US [lg.nyc.colocrossing.com]
host = lg.nyc.colocrossing.com
++ digitalocean-nyc3
menu = [US/NY] DigitalOcean (NYC)
title = [US/NY] DigitalOcean (NYC3) - New York City, NY, US [speedtest-nyc3.digitalocean.com]
host = speedtest-nyc3.digitalocean.com
++ hosthatch-nyc
menu = [US/NY] HostHatch (NYC)
title = [US/NY] HostHatch - New York City [lg.ny.hosthatch.com]
host = lg.ny.hosthatch.com
++ impactvps-nyk
menu = [US/NY] ImpactVPS @ Incero
title = [US/NY] ImpactVPS @ Incero - New York City, NY, US [172.110.20.1]
host = 172.110.20.1
++ ramnode-nyc
menu = [US/NY] Ramnode (NYC)
title = [US/NY] Ramnode - New York City, NY, US [lg.nyc.ramnode.com]
host = lg.nyc.ramnode.com
++ reliablesite-nyc
menu = [US/NY] ReliableSite (NYC)
title = [US/NY] ReliableSite - New York City, NY, US [nycmetro-speedtest.reliablesite.net]
host = nycmetro-speedtest.reliablesite.net
++ usdedicated-ny
menu = [US/NY] US Dedicated
title = [US/NY] US Dedicated @ CoreSite NY2 + Internap (INAP) - New York City, New York [lg.nycdedicated.com]
host = lg.nycdedicated.com
++ colocrossing-buf
menu = [US/NY] ColoCrossing (Buffalo)
title = [US/NY] ColoCrossing - Buffalo, New York [192.3.180.103]
host = 192.3.180.103
++ linode-nj
menu = [US/NJ] Linode (Newark)
title = [US/NJ] Linode - Newark, New Jersey [speedtest.newark.linode.com]
host = speedtest.newark.linode.com
++ quadranet-nj
menu = [US/NJ] QuadraNet
title = [US/NJ] QuadraNet - Secaucus, NJ, US [23.226.128.10]
host = 23.226.128.10
++ smarthost-nj
menu = [US/NJ] SmartHost (Piscataway)
title = [US/NJ] SmartHost - Piscataway, New Jersey [66.11.120.2]
host = 66.11.120.2
++ steadfast-nj
menu = [US/NJ] Steadfast (Edison)
title = [US/NJ] Steadfast - Edison, New Jersey [lookingglass.edi.steadfast.net]
host = lookingglass.edi.steadfast.net
++ vultr-nj
menu = [US/NJ] Vultr
title = [US/NJ] Vultr (New Jersey) [nj-us-ping.vultr.com]
host = nj-us-ping.vultr.com
++ securedragon-piscataway
menu = [US/NJ] SecureDragon
title = [US/NJ] SecureDragon @ DuPont Fabros - Piscataway, NJ, United States [162.253.176.4]
host = 162.253.176.4
++ amazon-ca
menu = [CA/QC] Amazon AWS
title = [CA/QC] Amazon Web Services (ca-central-1) - Central Canada [35.182.0.251]
host = 35.182.0.251
++ gcp-yul
menu = [CA/QC] Google Cloud
title = [CA/QC] Google Cloud Platform (northamerica-northeast1) - Montreal, Canada [northamerica-northeast1-gce.cloudharmony.net]
host = northamerica-northeast1-gce.cloudharmony.net
++ m247-montreal
menu = [CA/QC] M247 (Montreal)
title = [CA/QC] M247 - Montreal, Canada [speed.ca.m247.ro]
host = speed.ca.m247.ro
++ ovh-bhs
menu = [CA/QC] OVH (Beauharnois)
title = [CA/QC] OVH - Beauharnois, Quebec, Canada [ymq1-bhs.smokeping.ovh.net]
host = ymq1-bhs.smokeping.ovh.net
++ servarica
menu = [CA/QC] ServaRICA (Montreal)
title = [CA/QC] ServaRICA @ eStruxture - Montreal, Canada [ping.servarica.com]
host = ping.servarica.com
++ softlayer-mon
menu = [CA/QC] SoftLayer (Montreal)
title = [CA/QC] SoftLayer (mon01) - Montreal, Canada [speedtest.mon01.softlayer.com]
host = speedtest.mon01.softlayer.com
++ telus-moqc
menu = [CA/QC] TELUS (Montreal)
title = [CA/QC] TELUS - Montreal, Canada [montreal.speedtest.telus.com]
host = montreal.speedtest.telus.com
++ quonix
menu = [US/PA] Quonix (Philadelphia)
title = [US/PA] Quonix - Philadelphia, Pennsylvania [www.quonix.net]
host = www.quonix.net
++ mit-csail
menu = [US/MA] MIT
title = [US/MA] Massachusetts Institute of Technology - Cambridge, Massachusetts, US [csail.mit.edu]
host = csail.mit.edu
++ smarthost-ma
menu = [US/MA] SmartHost
title = [US/MA] SmartHost - Somerville, Massachusetts [38.242.7.129]
host = 38.242.7.129
++ cox-ri-ri
menu = [US/RI] Cox (Providence)
title = [US/RI] Cox Communications - Providence, Rhode Island [speedtest.rd.ri.cox.net]
host = speedtest.rd.ri.cox.net
++ bellaliant-hfns
menu = [CA/NS] Bell Aliant (Halifax)
title = [CA/NS] Bell Aliant - Halifax, Canada [speedtest-ns.bellaliant.net]
host = speedtest-ns.bellaliant.net
+ PointsInterestNASE
menu = North America - Southeast
title = TITLE-HEADER - North America (Southeast)
++ aliyun-us-east-1
menu = [US/VA] Aliyun
title = [US/VA] Aliyun / Alibaba Cloud - Virginia (us-east-1) [oss-us-east-1.aliyuncs.com]
host = oss-us-east-1.aliyuncs.com
++ amazon-nva
menu = [US/VA] Amazon AWS
title = [US/VA] Amazon Web Services (us-east-1) - North Virginia [52.1.255.254]
host = 52.1.255.254
++ freerangecloud-ash
menu = [US/VA] Free Range Cloud
title = [US/VA] Free Range Cloud - Ashburn, Virginia [ash.lg.freerangecloud.com]
host = ash.lg.freerangecloud.com
++ i3d-va-na
menu = [US/VA] i3D.net (Ashburn)
title = [US/VA] i3D.net - Ashburn, VA, United States [va.na.speedtest.i3d.net]
host = va.na.speedtest.i3d.net
++ ovh-va
menu = [US/VA] OVH (Vint Hill)
title = [US/VA] OVH - Vint Hill, Virginia, US [was1-vin.smokeping.ovh.net]
host = was1-vin.smokeping.ovh.net
++ psychz-va
menu = [US/VA] Psychz (Ashburn)
title = [US/VA] Psychz - Ashburn, Virginia [lg.va.psychz.net]
host = lg.va.psychz.net
++ rackspace-iad
menu = [US/VA] Rackspace (Reston)
title = [US/VA] Rackspace - Reston, Virginia [iad.speedtest.rackspace.com]
host = iad.speedtest.rackspace.com
++ tencent-na-ashburn
menu = [US/VA] Tencent Cloud
title = [US/VA] Tencent Cloud - Virginia, United States [cos.na-ashburn.myqcloud.com]
host = cos.na-ashburn.myqcloud.com
++ leaseweb-wdc1
menu = [US/DC] LeaseWeb
title = [US/DC] LeaseWeb - Washington D.C. [mirror.wdc1.us.leaseweb.net]
host = mirror.wdc1.us.leaseweb.net
++ att-ga-atl
menu = [US/GA] AT&T
title = [US/GA] AT&T - Tucker, GA, US [atl.speedtest.sbcglobal.net]
host = atl.speedtest.sbcglobal.net
++ colocrossing-atl
menu = [US/GA] ColoCrossing (Atlanta)
title = [US/GA] ColoCrossing - Atlanta, Georgia [lg.atl.colocrossing.com]
host = lg.atl.colocrossing.com
++ cox-ga-at
menu = [US/GA] Cox Communications
title = [US/GA] Cox Communications - Alpharetta, GA, US [speedtest.rd.at.cox.net]
host = speedtest.rd.at.cox.net
++ linode-atl
menu = [US/GA] Linode (Atlanta)
title = [US/GA] Linode - Atlanta, Georgia [speedtest.atlanta.linode.com]
host = speedtest.atlanta.linode.com