-
Notifications
You must be signed in to change notification settings - Fork 0
/
blocked_voip_ips.txt
1959 lines (1959 loc) · 91.5 KB
/
blocked_voip_ips.txt
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
194.124.33.0/24 # CH Datacamp Limited
102.129.232.47/32 # 20.225.74.34
20.225.74.34/32 # 20.225.74.34/32
185.104.216.102/32 # 185.104.216.102
199.247.20.62/32 # 199.247.20.62
160.226.0.0/16 # AFRINIC-ERX-160-226-0-0
196.0.0.0/8 # African Network Information Center
66.172.96.0/19 # LocalTel Communications LOCALTEL-66-172 (NET-66-172-96-0-1)
66.172.102.0/24 # AS13370 www.localtel.net
199.244.30.0/23 # AS13370 www.localtel.net
66.172.124.0/22 # AS13370 www.localtel.net
66.172.112.0/24 # AS13370 www.localtel.net
96.46.28.0/22 # AS13370 www.localtel.net
63.135.56.0/21 # AS13370 www.localtel.net
199.36.88.0/21 # AS13370 www.localtel.net
66.172.103.0/24 # AS13370 www.localtel.net
66.172.108.0/22 # AS13370 www.localtel.net
96.46.24.0/22 # AS13370 www.localtel.net
66.172.106.0/23 # AS13370 www.localtel.net
96.46.16.0/21 # AS13370 www.localtel.net
66.172.120.0/22 # AS13370 www.localtel.net
63.142.222.0/23 # AS13370 www.localtel.net
6.172.116.0/22 # AS13370 www.localtel.net
63.142.220.0/24 # AS13370 www.localtel.net
206.130.140.0/22 # AS13370 www.localtel.net
206.130.138.0/23 # AS13370 www.localtel.net
63.142.221.0/24 # AS13370 www.localtel.net
66.172.113.0/24 # AS13370 www.localtel.net
66.172.105.0/24 # AS13370 www.localtel.net
206.130.134.0/24 # AS13370 www.localtel.net
63.142.218.0/24 # AS13370 www.localtel.net
66.172.114.0/23 # AS13370 www.localtel.net
63.142.216.0/23 # AS13370 www.localtel.net
66.172.96.0/22 # AS13370 www.localtel.net
206.130.137.0/24 # AS13370 www.localtel.net
66.172.100.0/23 # AS13370 www.localtel.net
206.130.135.0/24 # AS13370 www.localtel.net
173.209.160.0/21 # AS13370 www.localtel.net
63.135.55.0/24 # AS13370 www.localtel.net
173.209.169.0/24 # AS13370 www.localtel.net
173.209.168.0/24 # AS13370 www.localtel.net
199.244.29.224/28 # AS13370 www.localtel.net
173.209.171.0/24 # AS13370 www.localtel.net
63.135.53.0/24 # AS13370 www.localtel.net
173.209.174.0/24 # AS13370 www.localtel.net
173.209.172.0/24 # AS13370 www.localtel.net
63.135.51.0/24 # AS13370 www.localtel.net
173.209.173.0/29 # AS13370 www.localtel.net
199.244.29.96/28 # AS13370 www.localtel.net
206.130.132.0/24 # AS13370 www.localtel.net
206.130.128.0/24 # AS13370 www.localtel.net
199.244.28.0/24 # AS13370 www.localtel.net
206.130.133.0/26 # AS13370 www.localtel.net
206.130.130.0/26 # AS13370 www.localtel.net
206.130.129.0/24 # AS13370 www.localtel.net
63.135.49.0/25 # AS13370 www.localtel.net
63.142.219.0/25 # AS13370 www.localtel.net
173.209.170.128/26 # AS13370 www.localtel.net
1.208.0.0/13 # Boranet_1 Hoster_Asia
2.56.176.0/23 # Dedipath_2 Hoster_USA
2.58.28.0/22 # Stargato_1 Hoster_GB
2.58.44.0/22 # Globalaxs_50 Hoster_GB
3.64.0.0/12 # Amazon_24 Hoster_USA
4.0.0.0/9 # US Level 3 Parent, LLC (LPL-141) Level 3 Communications, Inc. (LVLT)
4.14.0.0/16 # US Level 3 Parent, LLC (LPL-141) Level 3 Communications, Inc. (LVLT)
4.30.0.0/15 # AS3356 LEVEL3, US BISCOM-INC.bear1.Boston1.Level3.net
5.9.0.0/16 # Hetzner_1 Hoster_DE
5.11.40.0/21 # Palestina_1 Araber_Perser
5.28.55.0/24 # UK AS42010 I.T. PROFESSIONAL SERVICES LIMITED
5.39.0.0/17 # OvH_21 Hoster_France
5.39.216.0/21 # Hostkey_1 Hoster_Ostblock
5.56.16.0/22 # Avastcloud_1 Hoster_GB
5.62.16.0/24 # Privax_2 Hoster_USA
5.62.20.0/24 # Privax_1 Hoster_GB
5.62.21.0/24 # Avastcloud_7 Hoster_GB
5.62.34.0/23 # Avastcloud_2 Hoster_GB
5.62.38.0/23 # Avastcloud_8 Hoster_GB
5.62.40.0/23 # Avastcloud_11 Hoster_GB
5.62.42.0/23 # Avastcloud_14 Hoster_GB
5.62.46.0/23 # Avastcloud_12 Hoster_GB
5.62.48.0/23 # Avastcloud_13 Hoster_GB
5.62.56.0/23 # Avastcloud_6 Hoster_GB
5.62.58.0/23 # Avastcloud_3 Hoster_GB
5.62.60.0/23 # Avastcloud_5 Hoster_GB
5.62.62.0/23 # Avastcloud_4 Hoster_GB
5.79.64.0/18 # Leaseweb_12 Hoster_Benelux
5.104.104.0/21 # MyLoc_19 Hoster_DE
5.133.11.0/24 # Artnet_1 Hoster_Ostblock
5.135.0.0/16 # OvH_13 Hoster_France
5.148.0.0/17 # Exponential_2 Hoster_GB
5.148.128.0/19 # Exponential_3 Hoster_GB
5.151.0.0/16 # GB
5.152.192.0/19 # Redstation_1 Hoster_GB
5.153.55.0/24 # Softlayer_1 Hoster_USA
5.154.174.0/24 # Host_Royale_2 Hoster_Spain
5.157.0.0/18 # Interconnects_2 Hoster_GB
5.182.210.0/24 # SKB_1 Hoster_Benelux
5.183.92.0/22 # Netprotect_1 Hoster_DE
5.189.144.0/20 # Contabo_6 Hoster_DE
5.189.160.0/20 # Contabo_8 Hoster_DE
5.189.176.0/20 # Contabo_5 Hoster_DE
5.196.0.0/16 # OvH_14 Hoster_France
5.249.152.0/21 # Aruba_4 Hoster_Italia
5.253.204.0/22 # Globalaxs_41 Hoster_Ostblock
8.33.4.0/22 # WBS_Connect_1 Hoster_USA
8.208.98.0/24 # Alibaba_1 Hoster_Asia
12.0.0.0/8 # US AT&T Services, Inc. (ATTW-Z) JEFFERSON COUNTY PUBLIC SCHOOLS (JCPS-4)
12.33.253.48/28 # US AT&T Services, Inc. (ATTW-Z) JEFFERSON COUNTY PUBLIC SCHOOLS (JCPS-4)
12.221.224.0/20 # US AS7018 AT&T Services, Inc. (ATTW) MARIN COMMUNITY (MC-910)
12.221.228.32/28 # US AS7018 AT&T Services, Inc. (ATTW) MARIN COMMUNITY (MC-910)
12.226.0.0/15 # AT_&_T_1 Hoster_USA
13.52.0.0/14 # Amazon_21 Hoster_USA
13.56.0.0/14 # Amazon_22 Hoster_USA
13.64.0.0/11 # US Microsoft Corporation (MSFT)
13.66.60.119/32 # Microsoft Azure Cloud
13.66.143.220/30 # Microsoft Azure Cloud
13.66.202.14/32 # Microsoft Azure Cloud
13.66.248.225/32 # Microsoft Azure Cloud
13.66.249.211/32 # Microsoft Azure Cloud
13.67.10.124/30 # Microsoft Azure Cloud
13.69.109.132/30 # Microsoft Azure Cloud
13.71.199.112/30 # Microsoft Azure Cloud
13.77.53.216/30 # Microsoft Azure Cloud
13.77.172.102/32 # Microsoft Azure Cloud
13.77.183.209/32 # Microsoft Azure Cloud
13.78.109.156/30 # Microsoft Azure Cloud
13.84.49.247/32 # Microsoft Azure Cloud
13.84.51.172/32 # Microsoft Azure Cloud
13.84.52.58/32 # Microsoft Azure Cloud
13.86.221.220/30 # Microsoft Azure Cloud
13.96.0.0/13 # US Microsoft Corporation (MSFT)
13.104.0.0/14 # US Microsoft Corporation (MSFT)
13.106.38.142/32 # Microsoft Azure Cloud
13.106.38.148/32 # Microsoft Azure Cloud
13.106.54.3/32 # Microsoft Azure Cloud
13.106.54.19/32 # Microsoft Azure Cloud
13.106.57.181/32 # Microsoft Azure Cloud
13.106.57.196/31 # Microsoft Azure Cloud
13.112.0.0/14 # Amazon_20 Hoster_Asia
18.156.0.0/14 # Amazon_25 Hoster_DE
20.21.42.88/30 # Microsoft Azure Cloud
20.33.0.0/16 # US Microsoft Corporation (MSFT)
20.34.0.0/15 # US Microsoft Corporation (MSFT)
20.36.0.0/14 # US Microsoft Corporation (MSFT)
20.38.149.132/30 # Microsoft Azure Cloud
20.40.0.0/13 # US Microsoft Corporation (MSFT)
20.42.64.36/30 # Microsoft Azure Cloud
20.43.121.124/30 # Microsoft Azure Cloud
20.44.17.220/30 # Microsoft Azure Cloud
20.45.123.236/30 # Microsoft Azure Cloud
20.48.0.0/12 # US Microsoft Corporation (MSFT)
20.64.0.0/10 # US Microsoft Corporation (MSFT)
20.72.27.152/30 # Microsoft Azure Cloud
20.128.0.0/16 # US Microsoft Corporation (MSFT)
20.135.74.3/32 # Microsoft Azure Cloud
20.150.0.0/15# US Microsoft Corporation (MSFT)
20.150.172.228/30 # Microsoft Azure Cloud
20.152.0.0/15 # US Microsoft Corporation (MSFT)
20.180.0.0/14 # US Microsoft Corporation (MSFT)
20.184.0.0/13 # US Microsoft Corporation (MSFT)
20.192.0.0/10 # Microsoft_19 Hoster_USA
20.192.238.124/30 # Microsoft Azure Cloud
20.193.202.4/30 # Microsoft Azure Cloud
23.19.0.0/16 # Leaseweb_23 Hoster_USA
23.20.0.0/14 # Amazon_9 Hoster_USA
23.24.0.0/18 # AS7922 COMCAST-7922, US United States Blue Bell Suburban Transit Net Comcast Cable Communications, LLC (CCCS)
23.80.0.0/15 # Nobis_9 Hoster_USA
23.82.0.0/16 # Nobis_10 Hoster_USA
23.83.0.0/16 # Nobis_11 Hoster_USA
23.88.0.0/15 # Enzu_2 Hoster_USA
23.92.80.0/20 # Nodes_Direct_1 Hoster_USA
23.92.127.0/24 # Interconnects_1 Hoster_GB
23.94.0.0/15 # Colocrossing_3 Hoster_USA
23.96.0.0/13 # Microsoft_15 Hoster_USA
23.104.0.0/15 # Nobis_14 Hoster_USA
23.106.40.0/21 # Nobis_12 Hoster_USA
23.106.48.0/21 # Nobis_13 Hoster_USA
23.106.160.0/19 # Nobis_1 Hoster_USA
23.106.192.0/18 # Nobis_2 Hoster_USA
23.107.0.0/16 # Nobis_4 Hoster_USA
23.108.0.0/16 # Leaseweb_26 Hoster_USA
23.108.128.0/18 # Nobis_3 Hoster_USA
23.108.192.0/20 # Nobis_5 Hoster_USA
23.112.0.0/12 # US SIS-80-7-23-2013 NET-23-112-0-0-1 AS7132 AT&T Corp. (AC-3280)
23.148.144.0/22 # Quick_Server_1 Hoster_USA
23.148.145.0/24 # VDI-NETWORK US [email protected]
23.154.160.0/24 # Windscribe_1 Hoster_Canada
23.172.112.0/24 # Quadix_1 Hoster_USA
23.179.48.0/24 # US AS15017 Malverne Union Free School District
23.226.80.0/20 # US AS3356, AS19754 Plexicomm, LLC (PL-7)
23.226.128.0/20 # Quadranet_9 Hoster_USA
23.229.0.0/17 # B2_Net_Solutions_6 Hoster_USA
23.236.128.0/17 # B2_Net_Solutions_9 Hoster_USA
23.239.64.0/19 # Nodes_Direct_2 Hoster_USA
23.246.192.0/18 # Softlayer_9 Hoster_USA
23.250.0.0/17 # B2_Net_Solutions_1 Hoster_USA
23.253.0.0/16 # Rackspace1 Hoster_USA
23.254.0.0/17 # B2_Net_Solutions_2 Hoster_USA
24.38.0.0/17 # US AS6128 Cablevision Systems Corp. (CVNT)
24.38.11.0/24 # US AS6128 Cablevision Systems Corp. (CVNT)
24.38.11.182 #
24.51.224.0/19 # CA AS7992 Cogeco Cable COGECO COMMUNICATIONS INC. (CGOC)
24.53.128.0/18 # US AS26076 Buckeye Cablevision, Inc. (BUCKEY-4)
24.53.144.0/21 # US AS26076 Buckeye Cablevision, Inc. (BUCKEY-4)
24.123.128.0/17 # US Charter Communications Inc (CC-3517)
24.123.229.72/29 # US Charter Communications Inc (CC-3517)
24.140.0.0/17 # US AS12097 Massillon Cable Communications (MSLN)
24.140.128.0/18 # US AS12097 Massillon Cable Communications (MSLN)
24.140.192.0/19 # US AS12097 Massillon Cable Communications (MSLN)
24.153.128.0/17 # US Charter Communications Inc (CC-3517) Spectrum Business
24.212.0.0/17 # CNQ_1 Hoster_Canada
24.223.96.0/22 # AS30164 USACOMMUNICATIONS-1, US United States Kearney Usa Companies Llc
24.230.32.0/19 # US AS11232 Midcontinent Communications (MIDCO-1)
24.230.64.0/18 # US AS11232 Midcontinent Communications (MIDCO-1)
24.230.75.0/24 # US AS11232 Midcontinent Communications (MIDCO-1)
24.230.128.0/18 # US AS11232 Midcontinent Communications (MIDCO-1)
27.131.128.0/18 # Kirz_1 Hoster_Asia
27.254.0.0/16 # Loxinfo_1 Hoster_Asia
31.3.224.0/19 # Redstation_3 Hoster_GB
31.6.0.0/18 # YHC_Net_1 Hoster_Benelux
31.7.56.0/21 # Ripe_3 Hoster_CH
31.7.144.0/23 # RP_Engeneering_1 Hoster_Italia
31.13.191.0/24 # Globalaxs_14 Hoster_Skandinavien
31.169.120.0/22 # Surfshark_4 Hoster_Latin
31.171.152.0/22 # Keminet_1 Hoster_Ostblock
31.204.128.0/19 # Interactive_3D_1 Hoster_Benelux
31.223.185.0/24 # Citynet_1 Araber_Perser
31.223.186.0/23 # CitYnet_2 Araber_Perser
31.223.188.0/22 # Citynet_3 Araber_Perser
32.0.0.0/9 # US AS7018 AT&T Global Network Services, LLC (ATGS)
32.45.0.0/16 # US AS7018 AT&T Global Network Services, LLC (ATGS)
32.128.0.0/10 # US AS7018 AT&T Global Network Services, LLC (ATGS)
32.140.0.0/16 # AT_&_T_3 Hoster_USA
32.192.0.0/12 # US AS7018 AT&T Global Network Services, LLC (ATGS)
34.64.0.0/10 # Google_Cloud_7 Hoster_USA
35.154.0.0/16 # Amazon_23 Hoster_Asia
35.184.0.0/13 # Google_Cloud_4 Hoster_USA
37.8.0.0/17 # Palestina_2 Araber_Perser
37.19.192.0/21 # Datacamp_7 Hoster_GB
37.19.200.0/22 # Datacamp_9 Hoster_GB
37.19.206.0/23 # Datacamp_3 Hoster_GB
37.19.208.0/20 # Datacamp_6 Hoster_GB
37.35.104.0/21 # AlpineDC_1 Hoster_CH
37.48.64.0/18 # Leaseweb_10 Hoster_Benelux
37.49.224.0/23 # Estroweb_1 Hoster_Benelux
37.49.226.0/24 # XEMU_1 Hoster_Benelux
37.49.229.0/24 # Cloudstar_2 Hoster_Skandinavien
37.49.230.0/24 # Estroweb_3 Hoster_Benelux
37.49.231.0/24 # Estroweb_2 Hoster_Benelux
37.58.48.0/20 # Leaseweb_13 Hoster_DE
37.59.0.0/16 # OvH_1 Hoster_France
37.61.208.0/20 # Velianet_5 Araber_Perser
37.75.208.0/22 # Palestina_9 Araber_Perser
37.75.212.0/22 # Palestina_1 Araber_Perser
37.120.128.0/18 # Globalaxs_26 Hoster_GB
37.120.192.0/19 # Globalaxs_29 Hoster_Benelux
37.143.130.0/24 # OneProvider_3 Hoster_Spain
37.153.104.0/21 # Joyent_1 Hoster_CH
37.156.216.0/22 # Rackray_2 Hoster_Ostblock
37.157.248.0/21 # MyLoc_10 Hoster_DE
37.187.0.0/16 # OvH_1 Hoster_France
37.220.0.0/19 # Redstation_8 Hoster_GB
37.235.48.0/23 # Edis_9 Hoster_Skandinavien
37.235.53.0/24 # Edis_8 Hoster_Spain
37.235.55.0/24 # Edis_4 Hoster_GB
38.0.0.0/8 # Cogent_1 Hoster_USA
40.64.0.0/13 # Microsoft_7 Hoster_USA
40.68.195.137/32 # Microsoft Azure Cloud
40.68.201.58/32 # Microsoft Azure Cloud
40.68.201.65/32 # Microsoft Azure Cloud
40.68.201.206/32 # Microsoft Azure Cloud
40.68.201.211/32 # Microsoft Azure Cloud
40.68.204.18/32 # Microsoft Azure Cloud
40.74.0.0/15 # Microsoft_17 Hoster_USA
40.76.0.0/14 # Microsoft_12 Hoster_USA
40.112.0.0/13 # Microsoft_14 Hoster_USA
40.115.37.106/32 # Microsoft Azure Cloud
40.121.219.215/32 # Microsoft Azure Cloud
40.121.221.62/32 # Microsoft Azure Cloud
40.121.222.201/32 # Microsoft Azure Cloud
40.121.223.186/32 # Microsoft Azure Cloud
40.133.40.0/21 # US AS11349 Windstream Communications LLC (WINDS-6)
40.133.48.0/20 # US AS11349 Windstream Communications LLC (WINDS-6)
40.133.64.0/18 # US AS11349 Windstream Communications LLC (WINDS-6)
40.133.128.0/17 # US AS11349 Windstream Communications LLC (WINDS-6)
40.134.0.0/15 # US AS11349 Windstream Communications LLC (WINDS-6)
40.136.0.0/15 # US AS11349 Windstream Communications LLC (WINDS-6)
40.137.104.16/30 # US AS11349 Windstream Communications LLC (WINDS-6)
40.137.135.160/29 # US AS11349 Windstream Communications LLC (WINDS-6)
40.138.0.0/17 # US AS11349 Windstream Communications LLC (WINDS-6)
40.138.128.0/18 # US AS11349 Windstream Communications LLC (WINDS-6)
40.138.192.0/20 # US AS11349 Windstream Communications LLC (WINDS-6)
40.138.208.0/21 # US AS11349 Windstream Communications LLC (WINDS-6)
40.138.216.0/22 # US AS11349 Windstream Communications LLC (WINDS-6)
41.68.0.0/15 # Vodafone Egypt_1 Araber_Perser
41.160.0.0/14 # Zimbabwe AS36937 Liquid Telecommunications Operations Limited
41.232.0.0/16 # TE-Data_1 Araber_Perser
43.245.160.0/22 # Intergrid_3 Hoster_Australia
43.245.165.0/24 # Virtual_Datacentre_2 Hoster_Australia
43.249.130.128/25 # Korea, Republic Of Cust Alloc
43.251.164.0/22 # Zero2Infinity_2 Hoster_Australia
45.9.248.0/23 # Globalaxs_15 Hoster_GB
45.12.220.0/22 # Globalaxs_35 Hoster_Skandinavien
45.16.0.0/12 # US AS7132 AT&T Corp. (AC-3280)
45.32.0.0/16 # Choopa_4 Hoster_USA
45.34.0.0/15 # Psychz_Net_2 Hoster_USA
45.55.0.0/16 # Digitalocean_14 Hoster_USA
45.56.137.0/24 # Strong_1 Hoster_Italia
45.56.200.0/24 # Miami_Net_1 Hoster_USA
45.62.192.0/18 # KW_Datacenter_2 Hoster_Canada
45.64.104.0/22 # Leapswitch_1 Hoster_Asia
45.76.0.0/15 # Choopa_3 Hoster_USA
45.83.90.0/23 # Globalaxs_43 Hoster_France
45.87.184.0/22 # Anytime_1 Hoster_GB
45.89.174.0/23 # Globalaxs_16 Hoster_France
45.89.174.0/24 # FR GLOBALAXS-MNT
45.95.144.0/22 # Alsycon_1 Hoster_Benelux
45.114.118.0/24 # CLDR_2 Hoster_USA
45.121.208.0/22 # Streamline_2 Hoster_Australia
45.123.116.0/22 # Serverfield_1 Hoster_Asia
45.126.208.0/22 # Reliablesite_3 Hoster_USA
45.129.32.0/24 # Surfshark_2 Hoster_Latin
45.132.108.0/22 # GB WAVENET-MNT
45.133.192.0/22 # Estnoc_3 Hoster_Ostblock
45.134.144.0/24 # HK
45.134.224.0/24 # Surfshark_1 Hoster_Asia
45.141.156.0/24 # Yurteh_1 Hoster_Ostblock
45.143.200.0/24 # ROZA-AS BG
45.143.203.0/24 # FOPSERVER UA [email protected]
45.143.220.0/24 # Zumy_1 Hoster_Benelux
45.143.221.0/24 # XEMU_2 Hoster_DE
45.146.164.0/24 # SELECTEL RU [email protected]
45.146.165.0/24 # SELECTEL RU [email protected]
45.148.11.0/24 # Virtono_2 Hoster_Ostblock
45.148.121.0/24 # SKB_2 Hoster_Benelux
45.155.205.0/24 # SELECTEL RU [email protected]
45.254.252.0/22 # Golden_Frog_1 Hoster_Asia
46.16.32.0/21 # AnchorFree_1 Hoster_GB
46.16.185.0/24 # Softlayer_2 Hoster_USA
46.19.176.0/21 # Link_by_Net_1 Hoster_France
46.20.46.0/24 # MyLoc_12 Hoster_DE
46.22.208.0/20 # Wavecom_1 Hoster_Ostblock
46.29.0.0/22 # Pantel_SK_1 Hoster_Ostblock
46.33.128.0/19 # UK IRA19-RIPE ICUK-MNT ICUK Computing Services Limited
46.36.32.0/19 # GTT_Net_1 Hoster_Ostblock
46.60.64.0/21 # PS
46.101.0.0/16 # Digitalocean_12 Hoster_USA
46.105.0.0/16 # OvH_1 Hoster_France
46.151.208.0/21 # Nashirnet_1 Araber_Perser
46.165.192.0/18 # Leaseweb_1 Hoster_DE
46.166.136.0/21 # NForce_1 Hoster_Benelux
46.166.144.0/21 # NForce_2 Hoster_Benelux
46.166.160.0/21 # Balticservers_3 Hoster_Ostblock
46.166.172.0/22 # Balticservers_4 Hoster_Ostblock
46.234.96.0/20 # SuperNetwork1 Hoster_Ostblock
46.246.28.0/24 # Edis_6 Hoster_Skandinavia
46.246.93.0/24 # Edis_2 Hoster_Skandinavien
46.247.0.0/17 # GB Fluidone Ltd.
46.249.32.0/19 # Serverius_1 Hoster_Benelux
47.16.0.0/14 # US AS6128 CABLE-NET-1, US United States Huntington Cablevision Systems Corp.
47.32.0.0/12 # US Charter Communications CC04 (NET-47-32-0-0-1) Spectrum Business
47.48.0.0/14 # US Charter Communications CC04 (NET-47-32-0-0-1) Spectrum Business
47.136.0.0/13 # US Frontier Communications Corporation (FCC-212)
47.144.0.0/12 # US Frontier Communications Corporation (FCC-212)
47.160.0.0/12 # US Frontier Communications Corporation (FCC-212)
47.176.0.0/14 # US Frontier Communications Corporation (FCC-212)
47.176.48.5 #
47.180.0.0/15 # US Frontier Communications Solutions
47.182.0.0/15 # US Frontier Communications Corporation (FCC-211)
47.184.0.0/14 # US Frontier Communications Corporation (FCC-211)
47.188.0.0/15 # US Frontier Communications Corporation (FCC-211)
47.190.0.0/16 # US Frontier Communications Corporation (FCC-211)
47.192.0.0/11 # US AS5650 FRONTIER-FRTR, US FCC-210 United States United States Lakeland Frontier Communications Frontier Communications Corporation
50.30.32.0/20 # Server4You_1 Hoster_USA
50.57.64.0/18 # Racks-8_1 Hoster_USA
50.73.0.0/16 # Comcast_3 Hoster_USA
50.84.0.0/16 # US Charter Communications Inc (CC-3517)
50.84.239.0/27 # US Charter Communications Inc (CC-3517)
50.106.64.0/18 # US AS5650 Frontier Communications of America, Inc. (FRTR)
50.106.128.0/17 # US AS5650 Frontier Communications of America, Inc. (FRTR)
50.107.0.0/20 # US AS5650 Frontier Communications of America, Inc. (FRTR)
50.107.16.0/21 # US AS5650 Frontier Communications of America, Inc. (FRTR)
50.115.192.0/20 # US AS2152 CVIN LLC (CL-49)
50.128.0.0/9 # US CCCH3-4 NET-50-128-0-0-1 Comcast Cable Communications, LLC
51.12.101.172/30 # Microsoft Azure Cloud
51.12.204.244/30 # Microsoft Azure Cloud
51.15.0.0/16 # Online_SAS_7 Hoster_France
51.52.0.0/16 # GB MNT-GTHL
51.75.0.0/16 # OvH_40 Hoster_France
51.77.0.0/16 # OvH_39 Hoster_DE
51.83.0.0/16 # OvH_36 Hoster_France
51.89.0.0/16 # OvH_38 Hoster_GB
51.104.0.0/15 # GB
51.104.9.100/30 # Microsoft Azure Cloud
51.116.0.0/16 # Microsoft_13 Hoster_GB
51.136.0.0/15 # GB
51.158.0.0/15 # Online_SAS_9 Hoster_France
51.254.0.0/15 # OvH_18 Hoster_France
52.0.0.0/11 # Amazon_5 Hoster_USA
52.32.0.0/11 # Amazon_6 Hoster_USA
52.64.0.0/12 # Amazon_12 Hoster_USA
52.84.0.0/14 # Amazon_13 Hoster_USA
52.88.0.0/13 # Amazon_14 Hoster_USA
52.145.0.0/16 # Microsoft_8 Hoster_USA
52.146.0.0/15 # Microsoft_9 Hoster_USA
52.148.0.0/14 # Micorosft_10 Hoster_USA
52.152.0.0/13 # Microsoft_11 Hoster_USA^
52.160.0.0/11 # Microsoft_6 Hoster_USA
52.183.20.244/32 # Microsoft Azure Cloud
52.183.31.0/32 # Microsoft Azure Cloud
52.183.94.59/32 # Microsoft Azure Cloud
52.184.145.166/32 # Microsoft Azure Cloud
52.192.0.0/11 # Amazon_4 Hoster_USA
54.36.0.0/16 # OvH_29 Hoster_France
54.37.0.0/16 # OvH_30 Hoster_DE
54.38.0.0/16 # OvH_33 Hoster_DE
54.72.0.0/13 # Amazon_10 Hoster_USA
54.80.0.0/12 # Amazon_11 Hoster_USA
54.144.0.0/12 # Amazon_8 Hoster_USA
54.174.0.0/15 # Amazon_19 Hoster_USA
54.193.0.0/16 # Amazon_16 Hoster_USA
54.208.0.0/15 # Amazon_1 Hoster_USA
54.212.0.0/15 # Amazon_7 Hoster_USA
54.216.0.0/15 # Amazon_18 Hoster_USA
54.224.0.0/12 # Amazon_2 Hoster_USA
59.160.0.0/14 # Tatacomm_1 Hoster_Asia
59.164.0.0/15 # Tatacomm_2 Hoster_Asia
61.148.0.0/15 # Unicom_1 Hoster_Asia
62.4.0.0/19 # Online_SAS_5 Hoster_France
62.73.4.0/23 # Axinet_1 Hoster_France
62.75.128.0/17 # Intergenia_1 Hoster_DE
62.128.208.0/20 # Iomart_5 Hoster_GB
62.138.0.0/19 # Host_Europe_1 Hoster_DE
62.141.32.0/20 # Fibre_ONE_1 Hoster_DE
62.171.128.0/18 # Contabo_25 Hoster_DE
62.210.0.0/16 # Online_SAS_1 Hoster_France
62.212.64.0/19 # Leaseweb_17 Hoster_Benelux
62.232.75.0/24 # GB AS5519-MNT
62.232.83.0/24 # GB
63.141.224.0/19 # Datashack_5 Hoster_USA
63.143.32.0/19 # Limestone_2 Hoster_USA
63.144.0.0/13 # US AS209 CenturyLink Communications, LLC (CCL-534) C2 FREIGHT RESOURCES INC (CFR-27)
63.144.61.96/28 # US AS209 CenturyLink Communications, LLC (CCL-534) C2 FREIGHT RESOURCES INC (CFR-27)
63.160.0.0/12 # AS1239 SPRINTLINK, US United States San Jose Sprint
63.208.0.0/13 # US Level 3 Parent, LLC (LPL-141) LEVEL4-CIDR
63.224.0.0/13 # US AS209 CenturyLink Communications, LLC (CCL-534)
63.224.161.40/29 # US AS209 CenturyLink Communications, LLC (CCL-534)
63.236.0.0/14 # US CenturyLink Communications, LLC (CCL-534)
63.247.160.0/19 # US AS6128 Cablevision Systems Corp. (CVNT)
63.247.165.128/29 # US AS6128 Cablevision Systems Corp. (CVNT)
63.247.185.96/29 # US AS6128 Cablevision Systems Corp. (CVNT)
63.247.187.0/24 # US AS6128 Cablevision Systems Corp. (CVNT)
63.251.0.0/16 # Internap_1 Hoster_USA
64.18.240.0/20 # US AS40523 OACYS TECHNOLOGY (OACYST)
64.22.64.0/18 # Global_Net_1 Hoster_USA
64.23.0.0/17 # Affinity_1 Hoster_USA
64.27.0.0/19 # Calpop_1 Hoster_USA
64.31.0.0/18 # Limestone_6 Hoster_USA
64.49.112.0/20 # US Kent Intermediate School District
64.58.128.0/18 # US AS22773 ASN-CXA-ALL-CCI-22773-RDC, US United States Rancho Santa Margarita Cox Communications Inc.
64.60.0.0/16 # US TELEPACIFIC-LA-BLK-1 TPx Communications (TPAC)
64.78.0.0/18 # Intermedia_2 Hoster_USA
64.85.128.0/19 # US Great Lakes Comnet, Inc. (GLC-30)
64.85.160.0/20 # US Great Lakes Comnet, Inc. (GLC-30)
64.88.160.0/19 # US AS20141 Quality Technology Services, LLC (QTS-9)
64.88.185.64/28 # US AS20141 Quality Technology Services, LLC (QTS-9)
64.88.185.72 #
64.120.2.0/24 # Leaseweb_6 Hoster_USA
64.128.0.0/15 # US tw telecom holdings, inc. (TWTC)
64.139.235.0/24 # US AS40285 NORTHLAND CABLE TELEVISION INC. (NCT-50)
64.139.235.182 #
64.139.236.0/22 # US AS40285 NORTHLAND CABLE TELEVISION INC. (NCT-50)
64.139.240.0/22 # US AS40285 NORTHLAND CABLE TELEVISION INC. (NCT-50)
64.139.244.0/23 # US AS40285 NORTHLAND CABLE TELEVISION INC. (NCT-50)
64.140.192.0/18 # US AS3770 WorldPath Internet Services (WPIS)
64.160.0.0/12 # AS7132 SBIS-AS, US United States Dallas Condon-johnson
64.182.0.0/16 # Corespace_1 Hoster_USA
64.184.0.0/17 # US AS32703 Organization: Intelligent Fiber Network (IFN-2)
64.184.109.160/28 # US AS32703 Organization: Intelligent Fiber Network (IFN-2)
64.184.109.174 #
64.188.0.0/19 # Quadranet_4 Hoster_USA
64.191.64.0/18 # US NETWORK INNOVATIONS, INC. (NETWO-107)
64.191.108.168/29 # US NETWORK INNOVATIONS, INC. (NETWO-107)
64.203.192.0/18 # US AS22646 Hargray Communications Group, Inc. (HARGRA-4)
64.203.249.195 #
64.206.194.0/24 # HB_Communication_1 Hoster_USA
64.225.0.0/17 # Digitalocean_23 Hoster_USA
64.250.192.0/19 # AS11650 PLDI, US United States Kingfisher Pioneer Long Distance Inc.
64.253.128.0/19 # CA Stargate Connections Inc. (STCN)
65.51.0.0/16 # US AS6128 Cablevision Systems Corp. (CVNT)
65.51.92.0/24 # US AS6128 Cablevision Systems Corp. (CVNT)
65.112.0.0/12 # US CENTURYLINK-LEGACY-QWEST-65-112-0 CenturyLink Communications, LLC (CCL-534)
65.128.0.0/11 # AS209 CENTURYLINK-US-LEGACY-QWEST, US United States Pueblo Pewag Traction Chain Inc.
65.183.160.0/19 # US AS12129 123.Net, Inc. (NETIN-6)
65.192.0.0/11 # US MCI Communications Services, Inc. d/b/a Verizon Business (MCICS)
65.240.0.0/13 # US MCI Communications Services, Inc. d/b/a Verizon Business (MCICS)
65.248.0.0/14 # US MCI Communications Services, Inc. d/b/a Verizon Business (MCICS)
65.252.0.0/15 # US MCI Communications Services, Inc. d/b/a Verizon Business (MCICS)
65.254.32.0/19 # Global_Net_2 Hoster_USA
66.6.96.0/19 # US LightEdge Solutions (LIGHT-41)
66.7.224.0/19 # US TELEPACIFIC-SJ-BLK-1 TPx Communications (TPSJ)
66.11.64.0/19 # CA AS20161 TeraGo Networks Inc. (TRGO)
66.44.0.0/17 # US RCN (RTSL-6) LLC SUGHRUE MION
66.44.92.50 #
66.46.0.0/16 # CA Allstream Corp. (ACCA-2)
66.55.80.0/20 # Cloud_1 Hoster_USA
66.70.128.0/17 # OvH_41 Hoster_Canada
66.76.0.0/16 # Suddenlink_1 Hoster_USA
66.83.0.0/16 # AS7029 WINDSTREAM, US United States Atlanta Windstream Communications
66.85.72.0/21 # Joe_Datacenter_1 Hoster_USA
66.110.192.0/19 # US Georgia Public Web GEORGIA PUBLIC WEB, INC. (GPW)
66.112.224.0/19 # AS395461 APOG-AUSTIN, US United States Austin Apogee Telecom Inc.
66.115.128.0/18 # Total_Server_5 Hoster_USA
66.117.0.0/20 # Corpcolo_2 Hoster_USA
66.135.32.0/19 # ServerBeach_1 Hoster_USA
66.154.96.0/19 # Assertivenet_1 Hoster_Canada
66.162.0.0/16 # TWTC_1 Hoster_USA
66.171.144.0/20 # US AS16582 NEXT LEVEL INTERNET, INC. (NXLI)
66.172.160.0/19 # US SWWC Service Cooperatives (SSC-161)
66.172.192.0/18 # US Long Lines Internet (LLI-9)
66.172.193.136/29 # US Long Lines Internet (LLI-9)
66.172.193.138 #
66.180.192.0/20 # US AS11051 Evocative, Inc. (EVOCAT-2)
66.180.195.152/29 # US AS11051 Evocative, Inc. (EVOCAT-2)
66.180.224.0/20 # US AS18671 PRTC
66.187.64.0/20 # Oplink_1 Hoster_USA
66.188.0.0/14 # US Charter Communications (CC04)
66.188.32.0/20 # US Charter Communications (CC04)
66.188.96.0/20 # US Charter Communications (CC04)
66.204.0.0/16 # US AS21852 State Of Arkansas, Department of InformationSystem
66.207.64.0/19 # US AS7795 LUMOS Networks, Inc. (LN-19)
66.207.192.0/19 # CA AS21949 Beanfield Technologies Inc. (BNFD)
66.207.208.64/30 # CA AS21949 Beanfield Technologies Inc. (BNFD)
66.220.0.0/19 # US AS6939 Hurricane Electric LLC (HURC)
66.232.64.0/19 # Syringa_1 Hoster_USA
66.236.0.0/14 # S2828 XO-AS15, US United States Minneapolis Verizon
66.241.96.0/20 # Vitel_1 Hoster_USA
66.244.192.0/18 # AS6327 SHAW, CA Canada Montreal Shaw Telecom G.p.
66.246.0.0/16 # US AS8001 Net Access Corporation (NAC)
66.255.240.0/20 # AS13781 ENERGYNET, US United States Hopkinsville Wireless Dhcp Range
67.20.128.0/19 # US AS22646 Hargray Communications Group, Inc. (HARGRA-4)
67.21.32.0/23 # Vivid_Hosting_1 Hoster_USA
67.52.0.0/15 # US Charter Communications Inc (CC-3517)
67.52.66.48/29 # US Charter Communications Inc (CC-3517)
67.63.64.0/18 # US AS26801, AS21831 Zito Media (TLL-10)
67.63.96.0/24 # US AS26801, AS21831 Zito Media (TLL-10)
67.68.0.0/14 # CA AS577 Bell Canada (LINX)
67.71.247.160/29 # CA AS577 Bell Canada (LINX)
67.100.0.0/14 # Megapath_1 Hoster_USA
67.128.0.0/13 # US AS209 CenturyLink Communications, LLC (CCL-534)
67.128.137.200/29 # US AS209 CenturyLink Communications, LLC (CCL-534)
67.154.188.0/22 # Datacenter-BZ_1 Hoster_USA
67.207.208.0/20 # AIS_1 Hoster_USA
67.208.64.0/19 # InfoRelay_1 Hoster_USA
67.208.224.0/19 # Arialink_1 Hoster_USA
67.211.112.0/20 # CA AS32580, AS21570 Accelerated Connections Inc. (ACLT)
67.214.192.0/20 # US AS30612 Eagle Communications, Inc. (EAGLE-9)
67.214.194.128/25 # US AS30612 Eagle Communications, Inc. (EAGLE-9)
67.215.224.0/19 # SPN_1 Hoster_USA
67.216.72.32/28 # US AS17378 Comstar Technologies
68.64.128.0/18 # Packetexchange_1 Hoster_USA
68.67.32.0/19 # US AS22652 Fibrenoire Inc. (FIBRE-1)
68.168.80.0/20 # US AS17378 TierPoint, LLC (TL-801)
68.168.87.0/24 # US AS17378 TierPoint, LLC (TL-801)
68.168.94.0/25 # US AS17378 TierPoint, LLC (TL-801)
68.184.0.0/13 # Charter_Comm_2 Hoster_USA
68.224.0.0/13 # US Cox Communications Inc. (CXA)
68.235.32.0/19 # Tzulo_2 Hoster_USA
69.2.16.0/20 # US AS14103 ACD.net (ACDC)
69.2.26.32/29 # US AS14103 ACD.net (ACDC)
69.8.192.0/18 # US AS209 CenturyLink Communications, LLC (CCL-534)
69.8.192.0/22 # US AS209 CenturyLink Communications, LLC (CCL-534)
69.8.192.50 # US
69.11.128.0/17 # US AS4181 TDS TELECOM (TDST)
69.12.94.0/23 # Quadranet_8 Hoster_USA
69.27.224.0/19 # US AS6128 Cablevision Systems Corp. (CVNT)
69.30.192.0/18 # WholeSale_1 Hoster_USA
69.39.64.0/19 # US AS12129 123.Net, Inc. (NETIN-6)
69.50.192.0/19 # Atjeu_1 Hoster_USA
69.54.48.0/20 # US OneCleveland (ONECL)
69.55.59.0/24 # SERVERSTACK-ASN US [email protected]
69.60.96.0/19 # Infolink_1 Hoster_USA
69.64.32.0/19 # Hosting_Solutions_1 Hoster_USA
69.65.0.0/18 # US AS32181 GigeNET (DMPL)
69.74.0.0/15 # CVNet_1 Hoster_USA
69.74.0.0/16 # US AS6128 Cablevision Systems Corp. (CVNT)
69.74.151.0/24 # US AS6128 Cablevision Systems Corp. (CVNT)
69.76.0.0/15 # Charter_Comm_3 Hoster_USA
69.77.192.0/18 # Golden_West_1 Hoster_USA
69.94.0.0/20 # OLM_1 Hoster_USA
69.132.0.0/14 # US Charter Communications Inc (CC-3517) Legacy Time Warner Cable IP Assets
69.162.64.0/18 # Limestone_1 Hoster_USA
69.167.0.0/18 # Paradise_1 Hoster_USA
69.169.128.0/18 # US AS29933, AS35902 Veracity Networks LLC (VNL-9)
69.169.144.32/27 # US AS29933, AS35902 Veracity Networks LLC (VNL-9)
69.174.128.0/19 # US AS30600 Metronet (CINER-3)
69.174.139.32/29 # US AS30600 Metronet (CINER-3)
69.174.160.0/20 # US AS30600 Metronet (CINER-3)
69.197.128.0/18 # Datashack_7 Hoster_USA
69.210.128.0/17 # US AT&T Corp. (AC-3280)
69.211.0.0/16 # US AT&T Corp. (AC-3280)
69.212.0.0/14 # US AT&T Corp. (AC-3280)
69.216.0.0/13 # US AT&T Corp. (AC-3280)
69.223.48.224/28 # US AT&T Corp. (AC-3280)
70.33.128.0/19 # Lumos_1 Hoster_USA
70.64.0.0/12 # CA Shaw Communications Inc. (SHAWC)
70.88.0.0/14 # Comcast_2 Hoster_USA
70.102.0.0/15 # AS26721 INYO, US United States Gardnerville Inyo Networks
71.6.0.0/17 # US TELEPACIFIC-SJ-BLK-6 TPx Communications (TPSJ)
71.8.0.0/13 # Charter_Comm_4 Hoster_USA
71.19.240.0/20 # eSecureData_2 Hoster_Canada
71.64.0.0/12 # US Charter Communications Inc (CC-3517)
71.66.186.35 #
71.173.96.0/19 # AS701 UUNET, US United States Boston Verizon
71.173.128.0/17 # AS701 UUNET, US United States Boston Verizon
71.174.0.0/15 # AS701 UUNET, US United States Boston Verizon
71.176.0.0/14 # AS701 UUNET, US United States Boston Verizon
71.180.0.0/16 # AS701 UUNET, US United States Boston Verizon
72.0.192.0/19 # CA 3Men@Work Integrated Networks, Inc. (3IN
72.5.0.0/16 # US Internap Holding LLC (IC-1425)
72.5.108.0/23 # US Internap Holding LLC (IC-1425)
72.11.128.0/19 # Quadranet_7 Hoster_USA
72.12.192.0/19 # US Wintek Corporation (WCOR)
72.12.218.0/27 # US Wintek Corporation (WCOR)
72.17.0.0/17 # US Charter Communications, Inc (CC-3518)
72.22.160.0/19 # US HVDN-IPNET-2 HUDSON VALLEY DATANET, LLC (HVDN)
72.34.96.0/19 # US Race Technologies, Inc. (RACE)
72.43.0.0/16 # Charter_Comm_5 Hoster_USA
72.46.48.0/20 # US AS15108 Allo Communications LLC (ACL-99)
72.46.52.224/28 # US AS15108 Allo Communications LLC (ACL-99)
72.87.64.0/18 # US MCI Communications Services, Inc. d/b/a Verizon Business (MCICS)
72.87.128.0/17 # US MCI Communications Services, Inc. d/b/a Verizon Business (MCICS)
72.88.0.0/14 # US MCI Communications Services, Inc. d/b/a Verizon Business (MCICS)
72.92.0.0/17 # US MCI Communications Services, Inc. d/b/a Verizon Business (MCICS)
72.95.128.0/17 # US MCI Communications Services, Inc. d/b/a Verizon Business (MCICS)
72.136.0.0/13 # CA AS812 Rogers Communications Canada Inc. (RCC-182)
72.164.0.0/15 # US AS209 CenturyLink Communications, LLC (CCL-534) LINCOLN COUNTY (LC-168)
72.165.186.208/28 # US AS209 CenturyLink Communications, LLC (CCL-534) LINCOLN COUNTY (LC-168)
72.166.0.0/16 # US AS209 CenturyLink Communications, LLC (CCL-534) LINCOLN COUNTY (LC-168)
72.192.0.0/11 # Cox_Comm_1 Hoster_USA
72.255.64.0/18 # US AS30036 Mediacom Communications Corporation (MCC-246)
74.51.208.0/20 # US AS15164 Unite Private Networks LLC. (UPNL)
74.51.211.232/29 # US AS15164 Unite Private Networks LLC. (UPNL)
74.63.128.0/18 # US AS13649 Flexential Colorado Corp. (VINS)
74.63.189.21 # US
74.63.192.0/18 # US Limestone_3 Hoster_USA
74.84.64.0/18 # US Mediacom Communications Corporation (MCC-246)
74.91.16.0/20 # Datashack_8 Hoster_USA
74.92.64.0/18 # Comcast_1 Hoster_USA
74.115.236.0/22 # US AS46871, AS7018, AS237 Oakland Community College (OCC-14)
74.118.192.0/22 # Volumedrive_6 Hoster_USA
74.119.144.0/22 # Total_Server_4 Hoster_USA
74.121.32.0/22 # AS26968 PSD-ROCKET-AS, CA Canada North Vancouver Psd Professional Systems/designs Ltd
74.124.192.0/19 # Corpcolo_1 Hoster_USA
74.128.0.0/12 # US INSIGHT-COMMUNCATIONS-CORP Charter Communications Inc (CC-3517)
74.204.0.0/17 # US AS26554 US Signal Company, L.L.C. (USSIG-1)
74.204.74.96/29 # US AS26554 US Signal Company, L.L.C. (USSIG-1)
74.207.208.0/20 # US AS22958 Fusion LLC (FL-561)
74.207.217.216/30 # US AS22958 Fusion LLC (FL-561)
74.208.0.0/16 # ONEandONE_1 Hoster_USA
74.214.224.0/19 # US Emery Telcom (EMERY)
74.218.0.0/15 # US Charter Communications Inc (CC-3517)
74.218.37.240/29 # US Charter Communications Inc (CC-3517)
75.127.128.0/17 # US AS6128 Static IP Services (CSCHO-2)
75.127.192.0/21 # US AS6128 Static IP Services (CSCHO-2)
75.127.199.160/29 # US AS6128 Static IP Services (CSCHO-2)
75.128.0.0/12 # US AS20115 Charter Communications (CC04)
75.140.128.0/20 # US AS20115 Charter Communications (CC04)
75.140.142.160/28 # US AS20115 Charter Communications (CC04)
75.144.0.0/13 # US AS7922 Comcast Cable Communications, LLC (CCCS)
75.151.224.0/19 # US AS7922 Comcast Cable Communications, LLC (CCCS)
76.0.0.0/13 # US CenturyLink Communications, LLC (CCL-534)
76.72.160.0/20 # Database_by_Design_1 Hoster_USA
76.164.192.0/20 # Versaweb_4 Hoster_USA
77.66.0.0/17 # NetGroup_1 Hoster_Skandinavien
77.81.107.0/24 # Virtono_1 Hoster_Ostblock
77.81.136.0/24 # Globalaxs_36 Hoster_USA
77.81.188.0/23 # City_Net_2 Hoster_Skandinavien
77.111.216.0/21 # UK_Node4_1 Hoster_GB
77.234.44.0/24 # Avastcloud_10 Hoster_Ostblock
77.234.46.0/24 # Avastcloud_9 Hoster_Ostblock
77.243.191.0/24 # Globalaxs_8 Hoster_Benelux
77.245.64.0/20 # Redstation_4 Hoster_GB
77.247.108.0/24 # Vitox_2 Hoster_DE
77.247.109.0/24 # Vitox_1 Hoster_Benelux
77.247.110.0/24 # Vitox_3 Hoster_Skandinavien
77.247.176.0/21 # NForce_3 Hoster_Benelux
78.31.64.0/21 # MyLoc_15 Hoster_DE
78.32.0.0/15 # UK ORG-EA52-RIPE ENTANET International Limited
78.108.38.0/24 # Synapsecom_1 Hoster_Ostblock
78.108.46.0/24 # Enahost_1 Hoster_Ostblock
78.129.128.0/17 # Iomart_3 Hoster_GB
78.138.104.0/22 # Velianet_8 Hoster_Asia
78.138.126.0/23 # FR Mahmoud Abumaree
78.143.248.0/22 # UK AS198781 G3 Network Services
78.153.199.0/24 # Avast_1 Hoster_GB
79.98.131.0/24 # Radore_1 Hoster_Ostblock
79.99.0.0/23 # GleSys_1 Hoster_Skandinavien
79.110.52.0/22 # Globalaxs_44 Hoster_Benelux
79.124.62.0/24 # DM_AUTO BG [email protected]
79.140.208.0/20 # IE IMS Primary Route
79.142.76.0/23 # Altushost_3 Hoster_Skandinavien
79.143.80.0/22 # Redstation_9 Hoster_GB
79.143.180.0/23 # Contabo_16 Hoster_DE
79.143.182.0/23 # Contabo_3 Hoster_DE
79.143.190.0/23 # Contabo_27 Hoster_DE
79.173.168.0/21 # GB AS5631-MNT
80.79.112.0/20 # Wavecom_2 Hoster_Ostblock
80.82.77.0/24 # Quasi_Net_3 Hoster_Afrika
80.82.208.0/20 # MyLoc_6 Hoster_DE
80.86.80.0/20 # PlusServer_1 Hoster_DE
80.94.93.0/24 # MyWeb_1 Hoster_Benelux
80.152.0.0/14 # AS3320 DTAG Internet service provider operations, DE Germany Berlin Deutsche Telekom Ag
80.209.160.0/20 # GB
80.211.0.0/17 # Aruba_7 Hoster_Italia
80.241.208.0/21 # Contabo_1 Hoster_DE
80.241.216.0/21 # Contabo_20 Hoster_DE
80.243.176.0/20 # Redstation_13 Hoster_GB
80.255.0.0/20 # Core_Backbone_Net_1 Hoster_DE
81.2.192.0/18 # Internet_CZ_1 Hoster_Ostblock
81.19.208.0/20 # Hydra_3 Hoster_GB
81.30.144.0/20 # MyLoc_2 Hoster_DE
81.31.96.0/19 # GB ENTANET International Ltd
81.92.200.0/21 # Globalaxs_2 Hoster_GB
81.128.0.0/11 # UK BTNET-CUSTOMER
81.171.0.0/19 # Leaseweb_14 Hoster_Benelux
81.173.12.0/22 # IE AS199256 Leeson Telecom Holdings Ltd
82.102.17.0/24 # M247_Europe_17 Hoster_Spain
82.102.18.0/24 # M247_Europe_4 Hoster_France
82.102.24.0/21 # M247_Europe_3 Hoster_Italia
82.138.192.0/20 # GB AS8190-MNT
82.165.0.0/16 # Schlund_1 Hoster_DE
82.195.133.0/24 # IE
82.205.8.0/21 # Palestina_4 Araber_Perser
82.205.16.0/20 # Palestina_8 Araber_Perser
82.205.96.0/19 # Palestina_12 Araber_Perser
82.220.0.0/21 # Sol_Net_1 Hoster_CH
82.221.128.0/19 # Advania_1 Hoster_Skandinavien
83.48.0.0/16 # Rima_1 Hoster_Spain
83.136.80.0/21 # MyLoc_16 Hoster_DE
83.143.245.0/24 # M247_Europe_7 Hoster_DE
83.244.32.0/19 # Palestina_11 Araber_Perser
84.17.32.0/19 # Datacamp_8 Hoster_GB
84.17.58.0/23 # IT CDN77_MIL_SWB DataCamp Limited
84.20.128.0/19 # Nebula_1 Hoster_Skandinavien
84.39.112.0/24 # Globalaxs_21 Hoster_CH
84.88.0.0/16 # Anella_1 Hoster_Spain
84.247.51.0/24 # Globalaxs_42 Hoster_France
85.10.48.0/20 # A1_Croatia_1 Hoster_Ostblock
85.14.240.0/20 # MyLoc_8 Hoster_DE
85.17.0.0/16 # Leaseweb_2 Hoster_DE
85.25.0.0/16 # Intergenia_2 Hoster_DE
85.31.209.0/24 # Jaguar_Network_1 Hoster_France
85.89.176.0/20 # Toya_Net_1 Hoster_Ostblock
85.93.88.0/22 # Intergenia_5 Hoster_DE
85.93.92.0/22 # Intergenia_6 Hoster_DE
85.114.96.0/19 # Palestina_7 Araber_Perser
85.114.128.0/20 # Fibre_ONE_2 Hoster_DE
85.184.240.0/22 # Palestina_13 Araber_Perser
85.195.64.0/18 # Velianet_1 Hoster_DE
85.206.160.0/22 # Bacloud_1 Hoster_Canada
85.214.192.0/18 # Strato_1 Hoster_DE
85.254.72.0/24 # Latnet_1 Hoster_Ostblock
86.106.87.0/24 # Globalaxs_48 Hoster_USA
86.106.137.0/24 # M247_Europe_2 Hoster_Ostblock
86.107.49.0/24 # City_Cloud_1 Hoster_Skandinavien
86.107.242.0/23 # City_Cloud_2 Hoster_Skandinavien
86.108.0.0/17 # Jordan_1 Araber_Perser
87.101.94.0/24 # Globalaxs_11 Hoster_Italia
87.117.192.0/18 # Iosmart_1 Hoster_GB
87.128.0.0/11 # DE
87.239.255.0/24 # Partnercom_1 Hoster_Asia
88.80.148.0/24 # BelCloud_2 Hoster_Ostblock
88.98.176.0/20 # Zen_Internet_1 Hoster_GB
88.99.0.0/16 # DE HOS-GUN
88.150.128.0/17 # Redstation_2 Hoster_GB
88.202.176.0/23 # UK2_Net_1 Hoster_GB
88.208.192.0/18 # Fast Hosts_1 Hoster_GB
88.215.0.0/20 # GB
89.33.246.0/24 # M247_Europe_1 Hoster_Ostblock
89.36.224.0/24 # Globalaxs_34 Hoster_Ostblock
89.38.96.0/22 # Worldstream_4 Hoster_Benelux
89.40.182.0/24 # Globalaxs_9 Hoster_Ostblock
89.40.216.0/23 # City_Net_1 Hoster_Skandinavien
89.44.137.0/24 # Aim4Solutions_1 Hoster_Ostblock
89.44.201.0/24 # Globalaxs_32 Hoster_Ostblock
89.46.72.0/21 # Aruba_3 Hoster_Italia
89.46.100.0/22 # M247_Europe_10 Hoster_Ostblock
89.46.222.0/23 # Hydra_2 Hoster_GB
89.47.62.0/24 # Globalaxs_37 Hoster_GB
89.101.0.0/16 # IE
89.101.22.141 #
89.111.32.0/19 # DEAC_1 Hoster_Ostblock
89.163.128.0/19 # MyLoc_4 Hoster_DE
89.163.204.0/22 # MyLoc_14 Hoster_DE
89.163.208.0/20 # MyLoc_11 Hoster_DE
89.163.224.0/19 # MyLoc_1 Hoster_DE
89.187.160.0/19 # Datacamp_2 Hoster_GB
89.197.0.0/16 # GB
89.197.172.210 #
89.207.128.0/21 # Snel_Hosting_2 Hoster_Benelux
89.238.132.0/22 # Globalaxs_38 Hoster_GB
89.238.150.0/24 # Globalaxs_30 Hoster_GB
89.238.178.0/24 # Globalaxs_13 Hoster_Spain
89.239.32.0/20 # PS PALTEL-MNTNER
89.248.165.0/24 # INT-NETWORK SC [email protected]
89.248.172.0/23 # Quasi_Net_2 Hoster_Afrika
90.176.0.0/13 # CZ_Net_1 Hoster_Ostblock
91.0.0.0/10 # DE
91.90.120.0/22 # Globalaxs_39 Hoster_Benelux
91.121.0.0/16 # OvH_4 Hoster_France
91.132.58.0/24 # RELIABLESITE US [email protected]
91.132.139.0/24 # M247_Europe_19 Hoster_Austria
91.186.0.0/19 # Simply_Transit_1 Hoster_GB
91.194.84.0/23 # MyLoc_13 Hoster_DE
91.194.90.0/23 # Contabo_24 Hoster_DE
91.206.168.0/24 # AR
91.207.102.0/23 # M247_Europe_24 Hoster_Ostblock
91.212.124.0/24 # AN_Net_1 Hoster_Ostblock
91.214.44.0/22 # Altushost_1 Hoster_Benelux
91.218.244.0/22 # MTLM_1 Hoster_Ostblock
91.219.212.0/22 # Globalaxs_49 Hoster_USA
91.219.236.0/22 # ServerAstra_1 Hoster_Ostblock
91.221.66.0/23 # Creanova_3 Hoster_Skandinavien
91.223.208.0/24 # Thundernet_1 Hoster_Ostblock
91.233.116.0/23 # Creanova_1 Hoster_Skandinavien
91.236.74.0/23 # Erank Hoster_Ostblock
91.239.156.0/24 # You_Dot_Net_1 Hoster_GB
92.38.180.0/23 # GCL_1 Hoster_Ostblock
92.42.104.0/21 # Palestina_14 Araber_Perser
92.63.197.0/24 # SIBIRINVEST NL [email protected]
92.114.32.0/24 # Dreamserver_2 Hoster_Ostblock
92.114.94.0/23 # MXHOST_1 Hoster_Ostblock
92.204.112.0/24 # US
92.207.0.0/16 # GB MNT-GTL
92.222.0.0/16 # OvH_16 Hoster_France
92.223.85.0/24 # G_Core_1 Hoster_Benelux
93.104.208.0/21 # Contabo_9 Hoster_DE
93.115.24.0/21 # Balticservers_1 Hoster_Ostblock
93.115.92.0/22 # Voxility_1 Hoster_Ostblock
93.160.0.0/13 # TDC_1 Hoster_Skandinavien
93.186.192.0/20 # MyLoc_18 Hoster_DE
93.192.0.0/10 # DE
93.240.160.226 #
94.23.0.0/16 # OvH_5 Hoster_France
94.46.12.0/22 # Almouroltec_1 Hoster_Spain
94.75.192.0/18 # Leaseweb_3 Hoster_DE
94.76.192.0/18 # Simply_Transit_3 Hoster_GB
94.102.48.0/20 # Quasi_Net_1 Hoster_Afrika
94.177.160.0/19 # Aruba_8 Hoster_Italia
94.180.112.0/21 # ER-Telecom_2 Hoster_Ostblock
94.242.192.0/18 # Root_1 Hoster_Benelux
94.246.64.0/18 # IP-Only_1 Hoster_Skandinavien
95.110.160.0/19 # Aruba_1 Hoster_Italia
95.111.252.0/22 # Contabo_28 Hoster_DE
95.141.32.0/20 # SeFlow_1 Hoster_Italia
95.142.127.0/24 # PRCDN_1 Hoster_USA
95.154.192.0/18 # Iomart_4 Hoster_GB
95.168.160.0/20 # Leaseweb_22 Hoster_Benelux
95.168.176.0/20 # Leaseweb_21 Hoster_GB
95.173.160.0/19 # Netinternet_1 Hoster_Ostblock
95.174.0.0/19 # Seeweb_2 Hoster_Italia
95.174.65.0/24 # M247_Europe_13 Hoster_Skandinavien
95.211.0.0/16 # Leaseweb_4 Hoster_DE
96.64.0.0/11 #US AS7922 Comcast Cable Communications, LLC (CCCS)
96.70.0.0/20 #US AS7922 Comcast Cable Communications, LLC (CCCS)
96.96.0.0/12 #US AS7922 Comcast Cable Communications, LLC (CCCS)
96.112.0.0/13 #US AS7922 Comcast Cable Communications, LLC (CCCS)
96.120.0.0/14 #US AS7922 Comcast Cable Communications, LLC (CCCS)
96.124.0.0/16 #US AS7922 Comcast Cable Communications, LLC (CCCS)
96.224.0.0/11 # US MCI Communications Services, Inc. d/b/a Verizon Business (MCICS)
96.229.66.16/29 # US MCI Communications Services, Inc. d/b/a Verizon Business (MCICS)
97.80.0.0/12 # US AS20115 CHARTER-20115, US Charter Communications (CC04)
98.0.0.0/12 # Charter_Comm_1 Hoster_USA
98.100.0.0/14 # Time_Warner_1 Hoster_USA
98.108.0.0/14 # MCI_1 Hoster_USA
98.112.0.0/13 # AS701 UUNET, US CI Communications Services, Inc. d/b/a Verizon Business (MCICS)
98.158.80.0/20 # CA AS36031, AS36030, AS27272, AS40341, AS12188 Q9 Networks Inc. (Q9NT)
98.160.0.0/11 # US Cox Communications Inc. (CXA)
98.174.160.0/19 # US
98.191.174.0/24 # US Cox Communications Inc. (CXA)
100.42.144.0/20 # US AS20030 Artelco (MCCLI-1)
101.0.64.0/18 # Digital_Pacific_1 Hoster_Australia
101.224.0.0/13 # ChinaNet_1 Hoster_Asia
102.165.32.0/21 # Aquanet_1 Hoster_Afrika
102.165.48.0/21 # Volumedrive_12 Hoster_Afrika
103.4.16.0/24 # Virtual_Datacentre_1 Hoster_Australia
103.9.76.0/22 # Vinahost_1 Hoster_Asia
103.10.197.0/24 # Pacswitch_1 Hoster_Asia
103.27.220.0/22 # Moomu_1 Hoster_Australia
103.27.224.0/22 # Zero2Infinity_1 Hoster_Australia
103.62.48.0/23 # Streamline_1 Hoster_Australia
103.75.118.0/24 # OneProvider_2 Hoster_Asia
103.75.119.0/24 # OneProvider_1 Hoster_Asia
103.77.233.0/24 # Intergrid_6 Hoster_Australia
103.77.234.0/24 # Intergrid_7 Hoster_Australia
103.103.0.0/24 # Webcom_1 Hoster_Asia
103.108.92.0/23 # Intergrid_8 Hoster_Australia
103.108.94.0/24 # Intergrid_5 Hoster_Australia
103.145.12.0/24 # Vitox_4 Hoster_Benelux
103.145.13.0/24 # SQUITTER-NETWORKS NL [email protected]
103.200.208.0/22 # WPPL_1 Hoster_Asia
103.205.140.0/22 # Infusion_1 Hoster_Asia
103.212.68.0/22 # YTE_1 Hoster_Asia
103.231.90.0/23 # Intergrid_1 Hoster_Australia
103.238.212.0/22 # Bizmac_1 Hoster_Asia
103.251.64.0/22 # Xponent_1 Hoster_USA
104.40.0.0/13 # Microsoft_4 Hoster_USA
104.129.0.0/18 # Quadranet_6 Hoster_USA
104.130.0.0/16 # Rackspace_3 Hoster_USA
104.131.0.0/16 # Digitalocean_4 Hoster_USA
104.149.0.0/16 # US AS40676 Psychz Networks (PS-184)
104.151.0.0/16 # Enzu_3 Hoster_USA
104.152.80.0/22 # US AS394752 Avative Fiber (AL-464)
104.152.216.0/21 # CDC_Net_1 Hoster_USA
104.154.0.0/15 # Google_Cloud_3 Hoster_USA
104.156.206.0/24 # Virtuzo_1 Hoster_USA
104.160.48.0/20 # US AS21713 Bulloch County Rural Telephone Cooperative, Inc. (BULLOC-2)
104.168.0.0/17 # Colocrossing_10 Hoster_USA
104.193.8.0/22 # Volumedrive_9 Hoster_USA
104.194.24.0/22 # Versaweb_1 Hoster_USA
104.196.0.0/14 # Google_Cloud_1 Hoster_USA
104.200.128.0/19 # Total_Server_8 Hoster_USA
104.202.0.0/15 # Enzu_1 Hoster_USA
104.208.0.0/13 # Microsoft_5 Hoster_USA
104.214.165.80/30 # Microsoft Azure Cloud
104.216.0.0/15 # Psychz_Net_1 Hoster_USA
104.218.16.0/21 # Joe_Datacenter_2 Hoster_USA
104.218.56.0/21 # Unmetered_1 Hoster_Canada
104.223.0.0/17 # Quadranet_3 Hoster_USA
104.227.0.0/16 # B2_Net_Solutions_10 Hoster_Canada
104.236.0.0/16 # Digitalocean_3 Hoster_USA
104.238.198.0/23 # Versaweb_2 Hoster_USA
104.238.200.0/22 # Versaweb_3 Hoster_USA
104.239.128.0/17 # Rackspace_5 Hoster_USA
104.243.32.0/20 # Reliablesite_1 Hoster_Latin
104.244.208.0/22 # US AS13737 INCX Global, LLC (IGL-112)
104.245.96.0/21 # Volumedrive_7 Hoster_USA
104.245.144.0/22 # Amanah_4 Hoster_Canada
104.247.208.0/24 # Quick_Packet_1 Hoster_USA
104.248.0.0/16 # Digitalocean_21 Hoster_USA
104.250.108.0/24 # CLDR_1 Hoster_USA
104.254.88.0/21 # Amanah_5 Hoster_Canada
104.255.64.0/21 # Volumedrive_8 Hoster_USA
107.0.0.0/14 # US AS7922 Comcast Cable Communications, LLC (CCCS)
107.4.0.0/15 # US AS7922 Comcast Cable Communications, LLC (CCCS)
107.6.128.0/18 # Singlehop_1 Hoster_USA
107.20.0.0/14 # Amazon_15 Hoster_USA
107.144.0.0/14 # US AS33363 Charter Communications, Inc (CC-3518)
107.144.148.176/28 # US AS33363 Charter Communications, Inc (CC-3518)
107.150.0.0/19 # Quadranet_5 Hoster_USA
107.150.32.0/19 # Datashack_1 Hoster_USA
107.150.95.0/24 # Cached_1 Hoster_Ostblock
107.152.128.0/17 # B2_Net_Solutions_3 Hoster_USA
107.161.176.0/20 # Dimenoc_1 Hoster_USA
107.167.224.0/20 # Hugeserver_2 Hoster_USA
107.167.240.0/21 # Hugeserver_3 Hoster_USA
107.170.0.0/16 # Digitalocean_6 Hoster_USA
107.172.0.0/14 # Colocrossing_8 Hoster_USA
107.181.160.0/19 # Total_Server_7 Hoster_USA
107.182.16.0/20 # Volumedrive_1 Hoster_USA
108.0.0.0/11 # US MCI Communications Services, Inc. d/b/a Verizon Business (MCICS)
108.32.0.0/12 # US MCI Communications Services, Inc. d/b/a Verizon Business (MCICS)
108.48.0.0/13 # US MCI Communications Services, Inc. d/b/a Verizon Business (MCICS)
108.56.0.0/15 # US MCI Communications Services, Inc. d/b/a Verizon Business (MCICS)
108.59.0.0/20 # Leaseweb_5 Hoster_DE
108.61.0.0/16 # Choopa_2 Hoster_USA
108.62.16.0/21 # Ubiquiti_1 Hoster_USA
108.62.48.0/21 # Ubiquiti_3 Hoster_USA
108.163.128.0/18 # Server4Sale_1 Hoster_USA
108.170.0.0/18 # Secured_Servers_1 Hoster_USA
108.178.192.0/18 # US AS30036 Mediacom Communications Corporation (MCC-246)
109.72.0.0/20 # Internet_PB_1 Hoster_Ostblock
109.73.64.0/20 # Redstation_15 Hoster_GB
109.90.0.0/16 # Unity_Media_1 Hoster_DE
109.168.0.0/17 # KPNQuest_Italia_1 Hoster_Italia
109.169.0.0/18 # Iomart_1 Hoster_GB
109.169.64.0/19 # Iomart_2 Hoster_GB
109.201.128.0/19 # NForce_6 Hoster_Benelux
109.230.208.0/20 # Webtraffic_1 Hoster_DE
109.236.80.0/20 # Worldstream_1 Hoster_Benelux
110.8.0.0/13 # Hanaro_1 Hoster_Asia
111.68.96.0/20 # PERN_1 Araber_Perser
113.21.224.0/22 # HD_Net_1 Hoster_Australia
113.52.144.0/24 # Fluccs_1 Hoster_Australia
113.136.0.0/13 # ChinaNet_3 Hoster_Asia
113.192.0.0/18 # Ultraserve_1 Hoster_Australia
115.112.0.0/13 # Tatacomm_3 Hoster_Asia
115.160.224.0/21 # TCISL_1 Hoster_Asia
115.239.230.0/24 # Lanzhong_1 Hoster_Asia
116.90.72.0/24 # GSL_Net_1 Hoster_Australia
116.206.228.0/24 # Intergrid_4 Hoster_Australia
116.206.229.0/24 # Intergrid_2 Hoster_Australia
117.32.0.0/13 # ChinaNet_2 Hoster_Asia
118.69.192.0/20 # FPT_2 Hoster_Latin
119.9.88.0/21 # Rackspace_4 Hoster_Asia
119.81.0.0/16 # Softlayer_6 Hoster_USA
120.92.0.0/17 # Kingsoft_1 Hoster_Asia
123.30.0.0/15 # VDC_Net Hoster_Asia
124.150.139.0/24 # Express_Web_1 Hoster_Australia