-
Notifications
You must be signed in to change notification settings - Fork 0
/
Targets
1185 lines (863 loc) · 25.1 KB
/
Targets
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
*** Targets ***
probe = FPing
menu = Top
title = Network Latency Grapher
remark = Welcome to this SmokePing website.
+ Local
menu = Local
title = Local
++ localhost
host = localhost
+ CCNS_Services
menu = CCNS_Services
title = CCNS Services List
++ bbs_ccns_ncku_edu_tw
host = bbs.ccns.ncku.edu.tw
title = bbs.ccns.ncku.edu.tw (CCNS DreamBBS)
++ term_ccns_ncku_edu_tw
host = term.ccns.ncku.edu.tw
title = term.ccns.ncku.edu.tw (CCNS DreamBBS Websocket Client)
++ ns_ccns_ncku_edu_tw
host = ns.ccns.ncku.edu.tw
title = ns.ccns.ncku.edu.tw (CCNS Name Server)
++ desktop_ccns_io
host = desktop.ccns.io
title = desktop.ccns.io (CCNS Desktop)
++ ctf_ccns_io
host = ctf.ccns.io
title = ctf.ccns.io (CCNS CTF)
++ registry_ccns_io
host = registry.ccns.io
title = registry.ccns.io (CCNS Docker Registry)
++ swarm_ccns_io
host = swarm.ccns.io
title = swarm.ccns.io (CCNS Docker Swarm)
++ mirror_ccns_ncku_edu_tw
host = mirror.ccns.ncku.edu.tw
++ nas_ccns_io
host = nas.ccns.io
++ pve_ccns_io
host = pve.ccns.io
+ BBS
menu = BBS
title = BBS
++ bbs_ccns_ncku_edu_tw
host = bbs.ccns.ncku.edu.tw
title = bbs.ccns.ncku.edu.tw (NCKU CCNS DreamBBS)
++ bbs_ee_ncku_edu_tw
host = bbs.ee.ncku.edu.tw
title = bbs.ee.ncku.edu.tw (NCKU EE WindVally BBS)
++ ptt_cc
host = ptt.cc
title = ptt.cc (Ptt BBS)
++ ptt2_cc
host = ptt2.cc
title = ptt2.cc (Ptt2 BBS)
++ ptt3_cc
host = ptt3.cc
title = ptt3.cc (Ptt3 BBS)
++ ofo_tw
host = ofo.tw
title = ofo.tw (NTU OfO BBS)
++ bbs_badcow_com_tw
host = bbs.badcow.com.tw
title = bbs.badcow.com.tw (NTU EE Badcow BBS)
++ bbs_ntpu_edu_tw
host = bbs.ntpu.edu.tw
title = bbs.ntpu.edu.tw (NTPU BBS)
++ bbs_ndhu_edu_tw
host = bbs.ndhu.edu.tw
title = bbs.ndhu.edu.tw (NDHU BBS)
++ bbs_utaipei_edu_tw
host = bbs.utaipei.edu.tw
title = bbs.utaipei.edu.tw (UTaipei BBS)
++ bs2_io
host = bs2.io
title = bs2.io (NCTU BS2 BBS rebuild version)
++ bbs_pharos_rocks
host = bbs.pharos.rocks
title = bbs.pharos.rocks (NCTU Pharos BBS)
++ nchu_cs_bbs
host = bbs.cs.nthu.edu.tw
title = bbs.cs.nthu.edu.tw (NTHU CS Maple BBS)
++ bbs_ncnu_edu_tw
host = bbs.ncnu.edu.tw
title = bbs.ncnu.edu.tw (NCNU BBS)
++ binary_csie_ncu_edu_tw
host = binary.csie.ncu.edu.tw
title = binary.csie.ncu.edu.tw (NCU CSIE Binary BBS)
++ bbs_math_ncu_edu_tw
host = bbs.math.ncu.edu.tw
title = bbs.math.ncu.edu.tw (NCU Math BBS)
++ bbs_nsysu_edu_tw
host = bbs.nsysu.edu.tw
title = bbs.nsysu.edu.tw (NSYSU Formosa BBS)
++ bbs3_nsysu_edu_tw
host = bbs3.nsysu.edu.tw
title = bbs3.nsysu.edu.tw (NSYSU West BBS)
++ bbs_comm_ccu_edu_tw
host = bbs.comm.ccu.edu.tw
title = bbs.comm.ccu.edu.tw (CCU Comm. 1394 BBS)
++ bbs_jal_tw
host = bbs.jal.tw
++ cvic_org
host = cvic.org
++ perlbbs_tw
host = perlbbs.tw
title = perlbbs.tw (TCU Perl BBS)
++ bbs_yzu_edu_tw
host = bbs.yzu.edu.tw
title = bbs.yzu.edu.tw (YZU WindTop BBS)
++ bbs_ice_cycu_edu_tw
host = bbs.ice.cycu.edu.tw
title = bbs.ice.cycu.edu.tw (CYCU ICE BBS)
++ fgisc_org
host = fgisc.org
title = fgisc.org (TFGHS BBS)
++ bbs_tnfsh_tn_edu_tw
host = bbs.tnfsh.tn.edu.tw
title = bbs.tnfsh.tn.edu.tw (TNFSH Wolf BBS)
++ sony_tfcis_org
host = sony.tfcis.org
title = sony.tfcis.org (TNFSH TFCIS Sony BBS)
++ cpu_tfcis_org
host = cpu.tfcis.org
title = cpu.tfcis.org (TFCIS CPU BBS)
++ wdbbs_tw
host = wdbbs.tw
title = wdbbs.tw (WindDust BBS)
++ bbs_gamer_com_tw
host = bbs.gamer.com.tw
title = bbs.gamer.com.tw (Bahamut BBS)
++ libido_cx
host = 74.52.17.106
title = 74.52.17.106 (Libido BBS)
++ bbs_animeyo_com
host = bbs.animeyo.com
++ tainan_jal_tw
host = tainan.jal.tw
++ bbs_windcity_net
host = bbs.windcity.net
++ 209_141_35_127
host = 209.141.35.127
title = 209.141.35.127 (NetWorld BBS)
++ music543_com
host = music543.com
title = music543.com (Music543 BBS)
++ segaa_net
host = segaa.net
title = segaa.net (SEGAA Personal BBS)
++ bbs_emu486_net
host = bbs.emu486.net
++ patw_idv_tw
host = patw.idv.tw
++ bbs_wim888_tw
host = bbs.wim888.tw
title = bbs.wim888.tw (888)
++ andcycle_idv_tw
host = andcycle.idv.tw
title = andcycle.idv.tw (Kirika)
+ CDN
menu = CDN
title = CDN
++ adn_20765_psicdn_net
host = adn.20765.psicdn.net
title = adn.20765.psicdn.net (EdgeCast)
++ ajax_googleapis_com
host = ajax.googleapis.com
title = ajax.googleapis.com (Google)
++ ajax_microsoft_com
host = ajax.microsoft.com
title = ajax.microsoft.com (Microsoft)
++ bahamut_akamaized_net
host = bahamut.akamaized.net
title = bahamut.akamaized.net (Akamai)
++ cachefly_cachefly_net
host = cachefly.cachefly.net
title = cachefly.cachefly.net (CacheFly)
++ cdn_appledaily_com_tw_edgesuite_net
host = cdn.appledaily.com.tw.edgesuite.net
title = cdn.appledaily.com.tw.edgesuite.net (Akamai)
++ cdn_17app_co_akamaized_net
host = cdn.17app.co.akamaized.net
title = cdn.17app.co.akamaized.net (Akamai)
++ code_jquery_netdna-cdn_com
host = code.jquery.netdna-cdn.com
title = code.jquery.netdna-cdn.com (NetDNA)
++ cs196_wac_edgecastcdn_net
host = cs196.wac.edgecastcdn.net
title = cs196.wac.edgecastcdn.net (EdgeCast, Twitter)
++ d36cz9buwru1tt_cloudfront_net
host = d36cz9buwru1tt.cloudfront.net
title = d36cz9buwru1tt.cloudfront.net (CloudFront)
++ downloads_apple_com_edgekey_net
host = downloads.apple.com.edgekey.net
title = downloads.apple.com.edgekey.net (Akamai)
++ dsa_17app_co_edgesuite_net
host = dsa.17app.co.edgesuite.net
title = dsa.17app.co.edgesuite.net (Akamai)
++ github_global_ssl_fastly_net
host = github.global.ssl.fastly.net
title = github.global.ssl.fastly.net (Fastly)
++ media_limelight_com
host = media.limelight.com
title = media.limelight.com (Limelight)
++ netdna_bootstrapcdn_com
host = netdna.bootstrapcdn.com
title = netdna.bootstrapcdn.com (NetDNA)
++ test_gslin_org
host = test.gslin.org
title = test.gslin.org (CloudFront)
++ test-priceclass100_gslin_org
host = test-priceclass100.gslin.org
title = test-priceclass100.gslin.org (CloudFront)
++ test-priceclass200_gslin_org
host = test-priceclass200.gslin.org
title = test-priceclass200.gslin.org (CloudFront)
++ twaddksdssl_edgekey_net
host = twaddksdssl.edgekey.net
title = twaddksdssl.edgekey.net (Akamai)
++ tw_audio_kkbox_com_tw_edgesuite_net
host = tw.audio.kkbox.com.tw.edgesuite.net
title = tw.audio.kkbox.com.tw.edgesuite.net (Akamai)
++ tw_is_kkbox_com_tw_edgesuite_net
host = tw.is.kkbox.com.tw.edgesuite.net
title = tw.is.kkbox.com.tw.edgesuite.net (Akamai)
++ s-media-cache-ak_pinimg_com_edgekey_net
host = s-media-cache-ak.pinimg.com.edgekey.net
title = s-media-cache-ak.pinimg.com.edgekey.net (Akamai)
++ use_edgefonts_net-v3_edgekey_net
host = use.edgefonts.net-v3.edgekey.net
title = use.edgefonts.net-v3.edgekey.net (Akamai)
++ wac_20765_psicdn_net
host = wac.20765.psicdn.net
title = wac.20765.psicdn.net (EdgeCast)
++ wildcard_kfs_io_edgekey_net
host = wildcard.kfs.io.edgekey.net
title = wildcard.kfs.io.edgekey.net (Akamai)
++ wildcard_kkbox_com_edgekey_net
host = wildcard.kkbox.com.edgekey.net
title = wildcard.kkbox.com.edgekey.net (Akamai)
++ wildcard_pixfs_net_edgekey_net
host = wildcard.pixfs.net.edgekey.net
title = wildcard.pixfs.net.edgekey.net (Akamai)
++ wpc_20765_psicdn_net
host = wpc.20765.psicdn.net
title = wpc.20765.psicdn.net (EdgeCast)
++ www_akamai_com
host = www.akamai.com
title = www.akamai.com (Akamai)
++ www_chinatimes_com_edgesuite_net
host = www.chinatimes.com.edgesuite.net
title = www.chinatimes.com.edgesuite.net (Akamai)
++ www_cloudflare_com
host = www.cloudflare.com
title = www.cloudflare.com (CloudFlare)
++ www_edgecast_com
host = www.edgecast.com
title = www.edgecast.com (EdgeCast)
++ www_htc_com_edgekey_net
host = www.htc.com.edgekey.net
title = www.htc.com.edgekey.net (Akamai)
++ www_udn_com_edgesuite_net
host = www.udn.com.edgesuite.net
title = www.udn.com.edgesuite.net (Akamai)
++ www_us_cdnetworks_com
host = www.us.cdnetworks.com
title = www.us.cdnetworks.com (CDNetworks)
+ Cloud
menu = Cloud
title = Cloud
++ aws_amazon_com
host = aws.amazon.com
++ cloud_google_com
host = cloud.google.com
++ dynamodb_ap-east-1_amazonaws_com
host = dynamodb.ap-east-1.amazonaws.com
++ dynamodb_ap-south-1_amazonaws_com
host = dynamodb.ap-south-1.amazonaws.com
++ dynamodb_ap-northeast-1_amazonaws_com
host = dynamodb.ap-northeast-1.amazonaws.com
++ dynamodb_ap-northeast-2_amazonaws_com
host = dynamodb.ap-northeast-2.amazonaws.com
++ dynamodb_ap-northeast-3_amazonaws_com
host = dynamodb.ap-northeast-3.amazonaws.com
++ dynamodb_ap-southeast-1_amazonaws_com
host = dynamodb.ap-southeast-1.amazonaws.com
++ dynamodb_ap-southeast-2_amazonaws_com
host = dynamodb.ap-southeast-2.amazonaws.com
++ dynamodb_ca-central-1_amazonaws_com
host = dynamodb.ca-central-1.amazonaws.com
++ dynamodb_eu-west-1_amazonaws_com
host = dynamodb.eu-west-1.amazonaws.com
++ dynamodb_eu-west-2_amazonaws_com
host = dynamodb.eu-west-2.amazonaws.com
++ dynamodb_eu-west-3_amazonaws_com
host = dynamodb.eu-west-3.amazonaws.com
++ dynamodb_sa-east-1_amazonaws_com
host = dynamodb.sa-east-1.amazonaws.com
++ dynamodb_us-east-1_amazonaws_com
host = dynamodb.us-east-1.amazonaws.com
++ dynamodb_us-east-2_amazonaws_com
host = dynamodb.us-east-2.amazonaws.com
++ dynamodb_us-west-1_amazonaws_com
host = dynamodb.us-west-1.amazonaws.com
++ dynamodb_us-west-2_amazonaws_com
host = dynamodb.us-west-2.amazonaws.com
++ s3-ap-east-1_amazonaws_com
host = s3-ap-east-1.amazonaws.com
++ s3-ap-south-1_amazonaws_com
host = s3-ap-south-1.amazonaws.com
++ s3-ap-northeast-1_amazonaws_com
host = s3-ap-northeast-1.amazonaws.com
++ s3-ap-northeast-2_amazonaws_com
host = s3-ap-northeast-2.amazonaws.com
++ s3-ap-northeast-3_amazonaws_com
host = s3-ap-northeast-3.amazonaws.com
++ s3-ap-southeast-1_amazonaws_com
host = s3-ap-southeast-1.amazonaws.com
++ s3-ap-southeast-2_amazonaws_com
host = s3-ap-southeast-2.amazonaws.com
++ s3-ca-central-1_amazonaws_com
host = s3-ca-central-1.amazonaws.com
++ s3-eu-west-1_amazonaws_com
host = s3-eu-west-1.amazonaws.com
++ s3-eu-west-2_amazonaws_com
host = s3-eu-west-2.amazonaws.com
++ s3-eu-west-3_amazonaws_com
host = s3-eu-west-3.amazonaws.com
++ s3-sa-east-1_amazonaws_com
host = s3-sa-east-1.amazonaws.com
++ s3-us-east-2_amazonaws_com
host = s3-us-east-2.amazonaws.com
++ s3-us-west-1_amazonaws_com
host = s3-us-west-1.amazonaws.com
++ s3-us-west-2_amazonaws_com
host = s3-us-west-2.amazonaws.com
++ s3_amazonaws_com
host = s3.amazonaws.com
+ OSS
menu = OSS
title = OSS
++ Debian
menu = Debian
title = Debian
+++ ftp_jp_debian_org
host = ftp.jp.debian.org
title = ftp.jp.debian.org (Debian Japan Mirror)
+++ ftp_hk_debian_org
host = ftp.hk.debian.org
title = ftp.hk.debian.org (Debian Hong Kong Mirror)
+++ ftp_hr_debian_org
host = ftp.hr.debian.org
title = ftp.hr.debian.org (Debian Croatia Mirror)
+++ ftp_uk_debian_org
host = ftp.uk.debian.org
title = ftp.uk.debian.org (Debian United Kingdom Mirror)
+++ ftp_cl_debian_org
host = ftp.cl.debian.org
title = ftp.cl.debian.org (Debian Chile Mirror)
+++ ftp_ru_debian_org
host = ftp.ru.debian.org
title = ftp.ru.debian.org (Debian Russia Mirror)
+++ ftp_ie_debian_org
host = ftp.ie.debian.org
title = ftp.ie.debian.org (Debian Ireland Mirror)
+++ ftp_md_debian_org
host = ftp.md.debian.org
title = ftp.md.debian.org (Debian Moldova Mirror)
+++ ftp_sv_debian_org
host = ftp.sv.debian.org
title = ftp.sv.debian.org (Debian El Salvador Mirror)
+++ ftp_bg_debian_org
host = ftp.bg.debian.org
title = ftp.bg.debian.org (Debian Bulgaria Mirror)
+++ ftp_am_debian_org
host = ftp.am.debian.org
title = ftp.am.debian.org (Debian Armenia Mirror)
+++ ftp_sg_debian_org
host = ftp.sg.debian.org
title = ftp.sg.debian.org (Debian Singapore Mirror)
+++ ftp_ca_debian_org
host = ftp.ca.debian.org
title = ftp.ca.debian.org (Debian Canada Mirror)
+++ ftp_cz_debian_org
host = ftp.cz.debian.org
title = ftp.cz.debian.org (Debian Czech Mirror)
+++ ftp_ua_debian_org
host = ftp.ua.debian.org
title = ftp.ua.debian.org (Debian Ukarine Mirror)
+++ ftp_is_debian_org
host = ftp.is.debian.org
title = ftp.is.debian.org (Debian Iceland Mirror)
+++ ftp_tw_debian_org
host = ftp.tw.debian.org
title = ftp.tw.debian.org (Debian Taiwan Mirror)
+++ ftp_lt_debian_org
host = ftp.lt.debian.org
title = ftp.lt.debian.org (Debian Lithuania Mirror)
+++ ftp_hu_debian_org
host = ftp.hu.debian.org
title = ftp.hu.debian.org (Debian Hungary Mirror)
+++ ftp_fi_debian_org
host = ftp.fi.debian.org
title = ftp.fi.debian.org (Debian Sweden Mirror)
+++ ftp_se_debian_org
host = ftp.se.debian.org
title = ftp.se.debian.org (Debian Sweden Mirror)
+++ ftp_us_debian_org
host = ftp.us.debian.org
title = ftp.us.debian.org (Debian United States Mirror)
+++ ftp_nl_debian_org
host = ftp.nl.debian.org
title = ftp.nl.debian.org (Debian Netherlands Mirror)
+++ ftp_ch_debian_org
host = ftp.ch.debian.org
title = ftp.ch.debian.org (Debian Swiss Mirror)
+++ ftp_ro_debian_org
host = ftp.ro.debian.org
title = ftp.ro.debian.org (Debian Romania Mirror)
+++ ftp_dk_debian_org
host = ftp.dk.debian.org
title = ftp.dk.debian.org (Debian Denmark Mirror)
+++ ftp_cn_debian_org
host = ftp.cn.debian.org
title = ftp.cn.debian.org (Debian China Mirror)
+++ ftp2_cn_debian_org
host = ftp2.cn.debian.org
title = ftp2.cn.debian.org (Debian China Mirror)
+++ ftp_pt_debian_org
host = ftp.pt.debian.org
title = ftp.pt.debian.org (Debian Portugal Mirror)
+++ ftp_nc_debian_org
host = ftp.nc.debian.org
title = ftp.nc.debian.org (Debian New Caledonia Mirror)
+++ ftp_kr_debian_org
host = ftp.kr.debian.org
title = ftp.kr.debian.org (Debian Korea Mirror)
+++ ftp_it_debian_org
host = ftp.it.debian.org
title = ftp.it.debian.org (Debian Italy Mirror)
+++ ftp_at_debian_org
host = ftp.at.debian.org
title = ftp.at.debian.org (Debian Austria Mirror)
+++ ftp_mx_debian_org
host = ftp.mx.debian.org
title = ftp.mx.debian.org (Debian Mexico Mirror)
+++ ftp_no_debian_org
host = ftp.no.debian.org
title = ftp.no.debian.org (Debian Norway Mirror)
+++ ftp_ee_debian_org
host = ftp.ee.debian.org
title = ftp.ee.debian.org (Debian Estonia Mirror)
+++ ftp_by_debian_org
host = ftp.by.debian.org
title = ftp.by.debian.org (Debian White Russia Mirror)
+++ ftp_be_debian_org
host = ftp.be.debian.org
title = ftp.be.debian.org (Debian Belgium Mirror)
+++ ftp_au_debian_org
host = ftp.au.debian.org
title = ftp.au.debian.org (Debian Australia Mirror)
+++ ftp_gr_debian_org
host = ftp.gr.debian.org
title = ftp.gr.debian.org (Debian Greece Mirror)
+++ ftp_sk_debian_org
host = ftp.sk.debian.org
title = ftp.sk.debian.org (Debian Slovakia Mirror)
+++ ftp_fr_debian_org
host = ftp.fr.debian.org
title = ftp.fr.debian.org (Debian France Mirror)
+++ ftp_pl_debian_org
host = ftp.pl.debian.org
title = ftp.pl.debian.org (Debian Poland Mirror)
+++ ftp_si_debian_org
host = ftp.si.debian.org
title = ftp.si.debian.org (Debian Slovenia Mirror)
+++ ftp_br_debian_org
host = ftp.br.debian.org
title = ftp.br.debian.org (Debian Brazil Mirror)
+++ ftp_es_debian_org
host = ftp.es.debian.org
title = ftp.es.debian.org (Debian Spain Mirror)
+++ ftp_de_debian_org
host = ftp.de.debian.org
title = ftp.de.debian.org (Debian Germany Mirror)
+++ ftp2_de_debian_org
host = ftp2.de.debian.org
title = ftp.de.debian.org (Debian Gremany Mirror 2)
+++ ftp_nz_debian_org
host = ftp.nz.debian.org
title = ftp.nz.debian.org (Debian New Zealand Mirror)
++ Ubuntu
menu = Ubuntu
title = Ubuntu
+++ free_nchc_org_tw
host = free.nchc.org.tw
title = free.nchc.org.tw (Ubuntu NCHC, Taiwan Mirror)
+++ debian_linux_org_tw
host = debian.linux.org.tw
title = debian.linux.org.tw (Ubuntu National Taiwan University Mirror)
+++ ftp_ubuntu_tw_net
host = ftp.ubuntu-tw.net
title = ftp.ubuntu-tw.net (Ubuntu Ubuntu-TW Mirror)
+++ ftp_tku_edu_tw
host = ftp.tku.edu.tw
title = ftp.tku.edu.tw (Ubuntu TKU-TamKangUniversity Mirror)
+++ ftp_ntou_edu_tw
host = ftp.ntou.edu.tw
title = ftp.ntou.edu.tw (Ubuntu Institute of Network Development, National Taiwan Ocean University Mirror)
+++ ubuntu_cs_nctu_edu_tw
host = ubuntu.cs.nctu.edu.tw
title = ubuntu.cs.nctu.edu.tw (Ubuntu NCTUCSCC Mirror)
+++ ubuntu_stu_edu_tw
host = ubuntu.stu.edu.tw
title = ubuntu.stu.edu.tw (Ubuntu Shu-Te University Mirror)
+++ mirror01_idc_hinet_net
host = mirror01.idc.hinet.net
title = mirror01.idc.hinet.net (Ubuntu Chunghwa Telecom Mirror)
+++ linux_yz_yamagata-u_ac_jp
host = linux.yz.yamagata-u.ac.jp
title = linux.yz.yamagata-u.ac.jp (Ubuntu Yamagata University Mirror)
+++ ftp_jaist_ac_jp
host = ftp.jaist.ac.jp
title = ftp.jaist.ac.jp (Ubuntu JAIST Mirror)
+++ ftp_riken_jp
host = ftp.riken.jp
title = ftp.riken.jp (Ubuntu RIKEN Mirror)
+++ ftp_tsukuba_wide_ad_jp
host = ftp.tsukuba.wide.ad.jp
title = ftp.tsukuba.wide.ad.jp (Ubuntu Tsukuba WIDE Mirror)
+++ mirror_fairway_ne_jp
host = mirror.fairway.ne.jp
title = mirror.fairway.ne.jp (Ubuntu FAIRWAY Corporation Mirror)
+++ ubuntutym_u_toyama_ac_jp
host = ubuntutym.u-toyama.ac.jp
title = ubuntutym.u-toyama.ac.jp (Ubuntu UNIVERSITY OF TOYAMA with Ubuntu Japanese LoCo Mirror)
+++ ubuntu_ashisuto_ubuntulinux_jp
host = ubuntu-ashisuto.ubuntulinux.jp
title = ubuntu-ashisuto.ubuntulinux.jp (Ubuntu K.K. Ashisuto with Ubuntu Japanese LoCo Mirror)
+++ mirror_kakao_com
host = mirror.kakao.com
title = mirror.kakao.com (Ubuntu Kakao Corporation Mirror)
+++ ftp_harukasan_org
host = ftp.harukasan.org
title = ftp.harukasan.org (Ubuntu Harukasan Mirror)
+++ kr_archive_ubuntu_com
host = kr.archive.ubuntu.com
title = kr.archive.ubuntu.com (Ubuntu KAIST Mirror)
+++ ftp_lanet_kr
host = ftp.lanet.kr
title = ftp.lanet.kr (Ubuntu LANET Mirror)
+++ mirror_xtom_com_hk
host = mirror.xtom.com.hk
title = mirror.xtom.com.hk (Ubuntu xTom Hong Kong Limited Mirror)
+++ ftp_cuhk_edu_hk
host = ftp.cuhk.edu.hk
title = ftp.cuhk.edu.hk (Ubuntu The Chinese University of Hong Kong Mirror)
+++ mirror_hk_koddos_net
host = mirror-hk.koddos.net
title = mirror-hk.koddos.net (Ubuntu KoDDoS Mirror)
+ DNS
menu = DNS
title = DNS
++ 1_0_0_1
host = 1.0.0.1
title = 1.0.0.1 (Cloudflare)
++ 1_1_1_1
host = 1.1.1.1
title = 1.1.1.1 (Cloudflare)
++ 101_101_101_101
host = 101.101.101.101
title = 101.101.101.101 (TWNIC)
++ 139_175_1_1
host = 139.175.1.1
++ 168_95_1_1
host = 168.95.1.1
++ 168_95_192_1
host = 168.95.192.1
++ 192_203_230_10
host = 192.203.230.10
title = 192.203.230.10 (e.root-servers.net)
++ 192_228_79_201
host = 192.228.79.201
title = 192.228.79.201 (b.root-servers.net)
++ 192_33_4_12
host = 192.33.4.12
title = 192.33.4.12 (c.root-servers.net)
++ 192_36_148_17
host = 192.36.148.17
title = 192.36.148.17 (i.root-servers.net)
++ 192_5_5_241
host = 192.5.5.241
title = 192.5.5.241 (f.root-servers.net)
++ 192_58_128_30
host = 192.58.128.30
title = 192.58.128.30 (j.root-servers.net)
++ 193_0_14_129
host = 193.0.14.129
title = 193.0.14.129 (k.root-servers.net)
++ 195_46_39_39
host = 195.46.39.39
++ 195_46_39_40
host = 195.46.39.40
++ 198_41_0_4
host = 198.41.0.4
title = 198.41.0.4 (a.root-servers.net)
++ 199_7_83_42
host = 199.7.83.42
title = 199.7.83.42 (l.root-servers.net)
++ 199_7_91_13
host = 199.7.91.13
title = 199.7.91.13 (d.root-servers.net)
++ 202_12_27_33
host = 202.12.27.33
title = 202.12.27.33 (m.root-servers.net)
++ 208_67_220_220
host = 208.67.220.220
title = 208.67.220.220 (OpenDNS)
++ 208_67_222_222
host = 208.67.222.222
title = 208.67.222.222 (OpenDNS)
++ 61_31_1_1
host = 61.31.1.1
++ 64_6_64_6
host = 64.6.64.6
++ 64_6_65_6
host = 64.6.65.6
++ 75_75_75_75
host = 75.75.75.75
title = 75.75.75.75 (Comcast)
++ 77_88_8_1
host = 77.88.8.1
++ 77_88_8_2
host = 77.88.8.2
++ 77_88_8_3
host = 77.88.8.3
++ 77_88_8_7
host = 77.88.8.7
++ 77_88_8_8
host = 77.88.8.8
++ 77_88_8_88
host = 77.88.8.88
++ 8_20_247_20
host = 8.20.247.20
++ 8_26_56_26
host = 8.26.56.26
++ 8_8_4_4
host = 8.8.4.4
title = 8.8.4.4 (Google)
++ 8_8_8_8
host = 8.8.8.8
title = 8.8.8.8 (Google)
++ 9_9_9_9
host = 9.9.9.9
title = 9.9.9.9 (Quad9)
+ Hosting
menu = Hosting
title = Hosting
++ DigitalOcean
menu = DigitalOcean
title = DigitalOcean
+++ speedtest-ams2_digitalocean_com
host = speedtest-ams2.digitalocean.com
title = speedtest-ams2.digitalocean.com (DigitalOcean Amsterdam 2)
+++ speedtest-ams3_digitalocean_com
host = speedtest-ams3.digitalocean.com
title = speedtest-ams3.digitalocean.com (DigitalOcean Amsterdam 3)
+++ speedtest-lon1_digitalocean_com
host = speedtest-lon1.digitalocean.com
title = speedtest-lon1.digitalocean.com (DigitalOcean London 1)
+++ speedtest-nyc1_digitalocean_com
host = speedtest-nyc1.digitalocean.com
title = speedtest-nyc1.digitalocean.com (DigitalOcean New York 1)
+++ speedtest-nyc2_digitalocean_com
host = speedtest-nyc2.digitalocean.com
title = speedtest-nyc2.digitalocean.com (DigitalOcean New York 2)
+++ speedtest-nyc3_digitalocean_com
host = speedtest-nyc3.digitalocean.com
title = speedtest-nyc3.digitalocean.com (DigitalOcean New York 3)
+++ speedtest-sfo1_digitalocean_com
host = speedtest-sfo1.digitalocean.com
title = speedtest-sfo1.digitalocean.com (DigitalOcean San Francisco 1)
+++ sppedtest-sfo2_digitalocean_com
host = speedtest-sfo2.digitalocean.com
title = speedtest-sfo2.digitalocean.com (DigitalOcean San Francisco 2)
+++ speedtest-fra1_digitalocean_com
host = speedtest-fra1.digitalocean.com
title = speedtest-fra1.digitalocean.com (DigitalOcean France 1)
+++ speedtest-tor1_digitalocean_com
host = speedtest-tor1.digitalocean.com
title = speedtest-tor1.digitalocean.com (DigitalOcean Toronto 1)
+++ speedtest-blr1_digitalocean_com
host = speedtest-blr1.digitalocean.com
title = speedtest-blr1.digitalocean.com (DigitalOcean Bangalore 1)
+++ speedtest-sgp1_digitalocean_com
host = speedtest-sgp1.digitalocean.com
title = speedtest-sgp1.digitalocean.com (DigitalOcean Singapore 1)
++ Linode
menu = Linode
title = Linode
+++ speedtest_atlanta_linode_com
host = speedtest.atlanta.linode.com
title = speedtest.atlanta.linode.com (Linode Atlanta)
+++ speedtest_dallas_linode_com
host = speedtest.dallas.linode.com
title = speedtest.dallas.linode.com (Linode Dallas)
+++ speedtest_fremont_linode_com
host = speedtest.fremont.linode.com
title = speedtest.fremont.linode.com (Linode Fremont)
+++ speedtest_london_linode_com
host = speedtest.london.linode.com
title = speedtest.london.linode.com (Linode London)
+++ speedtest_newark_linode_com
host = speedtest.newark.linode.com
title = speedtest.newark.linode.com (Linode Newark)
+++ speedtest_singapore_linode_com
host = speedtest.singapore.linode.com
title = speedtest.singapore.linode.com (Linode Singapore)
+++ speedtest_tokyo2_linode_com
host = speedtest.tokyo2.linode.com
title = speedtest.tokyo2.linode.com (Linode Tokyo 2)
++ Vultr
menu = Vultr
title = Vultr
+++ ams-nl-ping_vultr_com
host = ams-nl-ping.vultr.com
title = ams-nl-ping.vultr.com
+++ fl-us-ping_vultr_com
host = fl-us-ping.vultr.com
title = fl-us-ping.vultr.com
+++ fra-de-ping_vultr_com
host = fra-de-ping.vultr.com
title = fra-de-ping.vultr.com
+++ hnd-jp-ping_vultr_com