-
Notifications
You must be signed in to change notification settings - Fork 79
/
peers.yaml
1078 lines (878 loc) · 21.2 KB
/
peers.yaml
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
---
AS1200:
description: AMS-IX Office
import: AS1200
export: "AS8283:AS-COLOCLUE"
AS6777:
description: AMS-IX Route Servers
import: AS6777:AS-AMS-IX-RS AS6777:AS-AMS-IX-RS-V6 AS6777:AS-AMS-IX-RS-SETS AS6777:AS-AMS-IX-RS-SETS-V6
export: "AS8283:AS-COLOCLUE"
AS34307:
description: NL-IX Route Servers
import: AS-NL-IX-RS
export: "AS8283:AS-COLOCLUE"
AS12713:
description: OTEGLOBE
import: AS-OTEGLOBE
export: "AS8283:AS-COLOCLUE"
AS13285:
description: TalkTalk
import: AS-OPAL
export: "AS8283:AS-COLOCLUE"
AS6939:
description: Hurricane Electric
import: AS-HURRICANE
export: "AS8283:AS-COLOCLUE"
not_on:
- decix
- franceix
- swissix
AS16298:
description: InterBox Internet
import: AS-INTERBOX
export: "AS8283:AS-COLOCLUE"
AS41692:
description: OpenCarrier
import: AS-OPENCARRIER AS-OPENCARRIER6
export: "AS8283:AS-COLOCLUE"
AS12859:
description: BIT
import: AS-BIT
export: "AS8283:AS-COLOCLUE"
not_on:
- decix
AS13101:
description: TNG
import: AS-TNG AS-TNG-IPV6
export: "AS8283:AS-COLOCLUE"
AS48200:
description: Opteamax
import: AS-OPTEAMAX-v4 AS-OPTEAMAX
export: "AS8283:AS-COLOCLUE"
AS25091:
description: IP-Max SA
import: AS-IP-MAX
export: "AS8283:AS-COLOCLUE"
AS61349:
description: MaxiTEL
import: AS-MAXITEL
export: "AS8283:AS-COLOCLUE"
AS50763:
description: MCKAYCOM Ltd
import: AS-MCKAY
export: "AS8283:AS-COLOCLUE"
AS42:
description: Packet Clearing House
import: AS-PCH
export: "AS8283:AS-COLOCLUE"
AS3856:
description: Packet Clearing House
import: AS-PCH
export: "AS8283:AS-COLOCLUE"
AS30844:
description: Liquid Telecom
import: AS-LIQUID
export: "AS8283:AS-COLOCLUE"
AS8365:
description: MANDA
import: AS-MANDA
export: "AS8283:AS-COLOCLUE"
AS58291:
description: Colocenter.nl
import: AS-COLOCENTER
export: "AS8283:AS-COLOCLUE"
AS9150:
description: Interconnect Services B.V.
import: "AS9150:AS-INTERCONNECT"
export: "AS8283:AS-COLOCLUE"
AS20562:
description: OpenPeering
import: AS-OPENPEERING
export: "AS8283:AS-COLOCLUE"
AS12414:
description: Solcon
import: AS-SOLCON AS-SOLCON6
export: "AS8283:AS-COLOCLUE"
AS39686:
description: Eurofiber
import: AS-EUROFIBER
export: "AS8283:AS-COLOCLUE"
AS36692:
description: OpenDNS
import: AS-OPENDNS
export: "AS8283:AS-COLOCLUE"
AS20940:
description: Akamai
import: AS-AKAMAI
export: "AS8283:AS-COLOCLUE"
AS20847:
description: Previder
import: AS-PREVIDER
export: "AS8283:AS-COLOCLUE"
AS12654:
description: RIPE NCC RIS Project
import: AS12654:RS-RIS
export: ANY
only_on:
- eunetworks-2.router.nl.coloclue.net
AS2906:
description: Netflix
import: as-nflx
export: "AS8283:AS-COLOCLUE"
AS8657:
description: PT Comunicacoes S.A.
import: AS-CPRM
export: "AS8283:AS-COLOCLUE"
AS2914:
description: NTT
import: AS2914:AS-GLOBAL
export: "AS8283:AS-COLOCLUE"
AS1101:
description: Not Surfnet
import: AS-NOTSURFNET
export: "AS8283:AS-COLOCLUE"
AS5524:
description: Breedband Nederland
import: AS-BREEDBANDNEDERLAND
export: "AS8283:AS-COLOCLUE"
AS16265:
description: Leaseweb
import: AS-LEASEWEB
export: "AS8283:AS-COLOCLUE"
AS13030:
description: Init7
import: AS-INIT7
export: "AS8283:AS-COLOCLUE"
AS714:
description: Apple Inc
import: AS-APPLE
export: "AS8283:AS-COLOCLUE"
AS31477:
description: Duocast
import: AS-DUOCAST
export: "AS8283:AS-COLOCLUE"
AS34968:
description: Iunxi
import: AS-IUNXI
export: "AS8283:AS-COLOCLUE"
AS197731:
description: Tuxis Internet Engineering
import: AS-TUXIS
export: "AS8283:AS-COLOCLUE"
AS15435:
description: DELTA Fiber Nederland BV
import: AS-KABELFOON
export: "AS8283:AS-COLOCLUE"
AS2603:
description: NORDUNet
import: AS-NORDUNET
export: "AS8283:AS-COLOCLUE"
AS29119:
description: Aire Networks del Mediterraneo S.L.U.
import: AS-SERVIHOSTING
export: "AS8283:AS-COLOCLUE"
AS2852:
description: CESNET z.s.p.o.
import: AS-CESNET
export: "AS8283:AS-COLOCLUE"
AS30132:
description: Internet Systems Consortium, F-Root Operator
import: AS30132:AS-SET
export: "AS8283:AS-COLOCLUE"
AS2119:
description: Telenor
import: AS-TELENOR
export: "AS8283:AS-COLOCLUE"
AS50266:
description: T-mobile thuis
import: AS-PROJECTJAGUAR
export: "AS8283:AS-COLOCLUE"
AS8966:
description: Emirates Telecommunications Corporation
import: AS-EMIX
export: "AS8283:AS-COLOCLUE"
AS43190:
description: Gelderland Internet Exchange
import: AS-GLIX
export: "AS8283:AS-COLOCLUE"
AS30781:
description: Jaguar Network
import: AS-JAGUAR AS-JAGUAR-V6
export: "AS8283:AS-COLOCLUE"
AS12552:
description: IP-Only
import: AS-IPO
export: "AS8283:AS-COLOCLUE"
AS51088:
description: A2B Internet
import: AS-A2B
export: "AS8283:AS-COLOCLUE"
AS8674:
description: Netnod
import: AS-NETNOD
export: "AS8283:AS-COLOCLUE"
AS20857:
description: TransIP
import: AS-TRANSIP
export: "AS8283:AS-COLOCLUE"
AS6677:
description: Iceland Telecom Ltd.
import: AS-ICENET
export: "AS8283:AS-COLOCLUE"
AS31122:
description: Viatel Ltd
import: AS-DIGIWEB
export: "AS8283:AS-COLOCLUE"
AS49685:
description: IT-Ernity Internet Services B.V.
import: AS-ITIS
export: "AS8283:AS-COLOCLUE"
AS8359:
description: MTS
import: AS-MTU
export: "AS8283:AS-COLOCLUE"
AS16509:
description: Amazon
import: AS-AMAZON
export: "AS8283:AS-COLOCLUE"
AS3257:
description: GTT
import: AS-GTT
export: "AS8283:AS-COLOCLUE"
AS5400:
description: BT
import: AS-BT-EU
export: "AS8283:AS-COLOCLUE"
AS33891:
description: Core Backbone GmbH
import: AS-CORE-BACKBONE
export: "AS8283:AS-COLOCLUE"
AS43996:
description: Booking.com
import: AS-BOOKING
export: "AS8283:AS-COLOCLUE"
AS3491:
description: PCCW Global
import: AS-CAIS
export: "AS8283:AS-COLOCLUE"
AS15562:
description: Job Snijders
import: AS15562:AS-SNIJDERS
export: ANY
type: downstream
AS47065:
description: BGPMUX / PEERING TestBed
import: RS-PEERING-TESTBED
export: ANY
type: downstream
AS112:
description: AS112 Project
import: AS112
export: "AS8283:AS-COLOCLUE"
AS8426:
description: Claranet Ltd.
import: AS-CLARANET
export: "AS8283:AS-COLOCLUE"
AS8075:
description: Microsoft
import: AS-MICROSOFT
export: "AS8283:AS-COLOCLUE"
AS1764:
description: Nextlayer.at
import: AS-NEXTLAYER AS-NEXTLAYER-V6
export: "AS8283:AS-COLOCLUE"
AS50673:
description: Serverius
import: AS-SERVERIUS
export: "AS8283:AS-COLOCLUE"
AS14907:
description: Wikimedia Foundation
import: AS-WIKIMEDIA
export: "AS8283:AS-COLOCLUE"
AS29140:
description: Hostserver.de
import: AS-HOSTSERVER
export: "AS8283:AS-COLOCLUE"
AS2635:
description: Automattic Inc.
import: AS-AUTOMATTIC
export: "AS8283:AS-COLOCLUE"
AS2484:
description: AFNIC
import: AS-AFNIC
export: "AS8283:AS-COLOCLUE"
AS16276:
description: OVH
import: AS-OVH
export: "AS8283:AS-COLOCLUE"
not_on:
- decix
- franceix
- swissix
AS49544:
description: I3D
import: AS-INTERACTIVE3D
export: "AS8283:AS-COLOCLUE"
AS1273:
description: Vodafone Group
import: AS1273:AS-CWW AS1273:AS-CWW-V6
export: "AS8283:AS-COLOCLUE"
AS12759:
description: SOCO Network Solutions GmbH
import: AS-SOCO
export: "AS8283:AS-COLOCLUE"
AS8218:
description: Zayo France
import: AS-NEOT AS-NEOT6 AS8218:AS-CUSTOMERS
export: "AS8283:AS-COLOCLUE"
AS13335:
description: Cloudflare
import: AS-CLOUDFLARE
export: "AS8283:AS-COLOCLUE"
AS32934:
description: Facebook
import: AS-FACEBOOK
export: "AS8283:AS-COLOCLUE"
AS6830:
description: Liberty Global
import: AS-AORTA AS-AORTA6
export: "AS8283:AS-COLOCLUE"
AS6461:
description: Zayo / Abovenet
import: AS-MFNX
export: "AS8283:AS-COLOCLUE"
AS3320:
description: Deutsche Telekom
import: AS3320:AS-DTAG AS3320:AS-CUSTOMERS-V6
export: "AS8283:AS-COLOCLUE"
ignore_peeringdb: true
only_with:
- 80.249.209.211
- 2001:7f8:1::a500:3320:1
AS1299:
description: Arelion
import: AS-TELIANET AS-TELIANET-V6
export: "AS8283:AS-COLOCLUE"
ipv4_limit: 650000
ipv6_limit: 120000
ignore_peeringdb: true
private_peerings:
- 62.115.144.32
- 2001:2035:0:ebc::1
AS61955:
description: ColocationIX
import: AS-COLOCATIONIX
export: "AS8283:AS-COLOCLUE"
AS43350:
description: NFOrce Entertainment B.V.
import: AS-NFORCE
export: "AS8283:AS-COLOCLUE"
only_with:
- 193.239.116.142
- 193.239.116.214
- 2001:7f8:13::a504:3350:1
- 2001:7f8:13::a504:3350:2
AS48519:
description: Knipp Medien und Kommunikation GmbH
import: AS-IRONDNS AS-IRONDNS-v6
export: "AS8283:AS-COLOCLUE"
AS200023:
description: Qonnected B.V.
import: AS200023
export: "AS8283:AS-COLOCLUE"
AS41913:
description: Computerline Group
import: AS-COMPUTERLINE
export: "AS8283:AS-COLOCLUE"
AS31027:
description: GlobalConnect Group
import: AS31027:AS-GCNET
export: "AS8283:AS-COLOCLUE"
AS38880:
description: Micron21
import: AS-M21
export: "AS8283:AS-COLOCLUE"
AS46489:
description: Twitch / Justin.tv
import: AS-TWITCH
export: "AS8283:AS-COLOCLUE"
AS31500:
description: Global Network Management
import: AS-GLOBAL-NET
export: "AS8283:AS-COLOCLUE"
AS1103:
description: SURF
import: AS-SURFNET
export: "AS8283:AS-COLOCLUE"
AS24875:
description: NovoServe
import: AS-NOVOSERVE
export: "AS8283:AS-COLOCLUE"
AS10310:
description: Yahoo
import: AS-YAHOO
export: "AS8283:AS-COLOCLUE"
not_on:
- nlix
AS48635:
description: PCextreme
import: AS-PCEXTREME
export: "AS8283:AS-COLOCLUE"
AS6774:
description: Belgacom International Carrier Services (aka BICS)
import: AS6774:AS-BICS-TRANSIT
export: "AS8283:AS-COLOCLUE"
AS15169:
description: Google
import: AS-GOOGLE
export: "AS8283:AS-COLOCLUE"
not_on:
- asteroid
- speedix
- decix
- franceix
- swissix
AS59605:
description: Zain Group
import: AS-ZAINGP
export: "AS8283:AS-COLOCLUE"
AS20932:
description: SIG-Telecom
import: AS-SIG-TELECOM
export: "AS8283:AS-COLOCLUE"
AS25369:
description: Bandwidth Technologies
import: AS-BANDWIDTH
export: "AS8283:AS-COLOCLUE"
AS34942:
description: Vivor
import: AS-VIVOR
export: "AS8283:AS-COLOCLUE"
AS6453:
description: Tata
import: AS-GLOBEINTERNET
export: "AS8283:AS-COLOCLUE"
ignore_peeringdb: true
only_with:
- 80.249.209.167
- 2001:7f8:1::a500:6453:1
AS1257:
description: Tele2 SWIPNet
import: AS-TELE2
export: "AS8283:AS-COLOCLUE"
AS198203:
description: Weservit B.V.
import: AS-ROUTELABEL
export: "AS8283:AS-COLOCLUE"
AS54113:
description: Fastly inc.
import: AS-FASTLY
export: "AS8283:AS-COLOCLUE"
not_with:
- 193.239.118.130
- 193.239.118.162
- 2001:7f8:13::a505:4113:3
- 2001:7f8:13::a505:4113:2
# AS3910:
# description: Centurylink
# import: AS3919
# export: "AS8283:AS-COLOCLUE"
# ipv4_limit: 80000
# ipv6_limit: 4000
AS49206:
description: PeakFactory
import: AS-PEAKFACTORY
export: "AS8283:AS-COLOCLUE"
AS6762:
description: Telecom Italia Sparkle
import: AS-SEABONE
export: "AS8283:AS-COLOCLUE"
AS54825:
description: packet.net
import: AS-PACKET
export: "AS8283:AS-COLOCLUE"
AS12956:
description: Telxius
import: AS-TDATANET
export: "AS8283:AS-COLOCLUE"
AS59964:
description: Asteroid Route Collector
import: AS-NULL
export: "AS8283:AS-COLOCLUE"
AS41693:
description: Asteroid MLP Route Server
import: AS-ASTEROID_RS_AMSTERDAM
export: "AS8283:AS-COLOCLUE"
AS13414:
description: Twitter
import: AS-TWITTER
export: AS8283:AS-COLOCLUE
AS41441:
description: SPEED-IX route server peers
import: AS-IX
export: AS8283:AS-COLOCLUE
AS206313:
description: Freifunk Nordwest e.V
import: AS-FFNW
export: AS8283:AS-COLOCLUE
AS56662:
description: e-utp.net
import: AS-EUTPNET
export: AS8283:AS-COLOCLUE
AS44901:
description: Belcloud
import: as-belcloud
export: AS8283:AS-COLOCLUE
AS201290:
description: BlackGATE BV
import: AS-BlackGATE
export: AS8283:AS-COLOCLUE
AS34779:
description: T-2 d.o.o.
import: AS-T2-CUST
export: AS8283:AS-COLOCLUE
AS394354:
description: Canadian Internet Registration Authority
import: AS-394354
export: AS8283:AS-COLOCLUE
AS19679:
description: Dropbox Inc
import: AS-DROPBOX
export: AS8283:AS-COLOCLUE
AS8315:
description: Accenture BV
import: AS8315:AS-ACNBB
export: AS8283:AS-COLOCLUE
AS24961:
description: myLoc managed IT AG
import: AS-MYLOC
export: AS8283:AS-COLOCLUE
AS39647:
description: Redhosting B.V.
import: AS-REDHOSTING
export: AS8283:AS-COLOCLUE
AS202365:
description: Chronos
import: AS-CHRONOS
export: AS8283:AS-COLOCLUE
AS34872:
description: Servperso-Systems
import: AS-SERVPERSO
export: AS8283:AS-COLOCLUE
AS200020:
description: Stichting Nationale Beheersorganisatie Internet Providers (NBIP)
import: AS-NBIP AS-NBIP6
export: AS8283:AS-COLOCLUE
AS24940:
description: Hetzner Online GmbH
import: AS-Hetzner
export: AS8283:AS-COLOCLUE
not_on:
- decix
- franceix
AS32590:
description: Valve Corporation
import: AS-VALVE
export: AS8283:AS-COLOCLUE
AS197301:
description: Parknet F.M.B.A.
import: AS-PARKNET
export: AS8283:AS-COLOCLUE
AS44222:
description: CLOUDITY Network
import: AS-CLOUDITY
export: AS8283:AS-COLOCLUE
AS51430:
description: AltusHost B.V.
import: AS51430
export: AS8283:AS-COLOCLUE
AS44684:
description: Mythic Beasts Ltd
import: AS-MYTHIC
export: AS8283:AS-COLOCLUE
AS48886:
description: CS Net
import: AS-CSNET-NL
export: AS8283:AS-COLOCLUE
AS57782:
description: Cynthia Maja Revstrom
import: AS57782:AS-CMR
export: AS8283:AS-COLOCLUE
AS64404:
description: Stichting EventInfra
import: AS-EVENTINFRA
export: AS8283:AS-COLOCLUE
AS35709:
description: TRIX
import: AS-TRIX
export: AS8283:AS-COLOCLUE
AS15133:
description: EdgeCast Networks Inc
import: AS-EDGECAST
export: AS8283:AS-COLOCLUE
AS41887:
description: Prolocation B.V.
import: AS-PROLOCATION
export: AS8283:AS-COLOCLUE
AS49627:
description: Speakup
import: AS49627
export: AS8283:AS-COLOCLUE
AS37100:
description: Seacom
import: AS-SET-SEACOM
export: AS8283:AS-COLOCLUE
AS59985:
description: SAM Office B.V.
import: AS-SAMOFFICE
export: AS8283:AS-COLOCLUE
AS8859:
description: OSN Online Service Nuernberg GmbH
import: AS8859:AS-OSN
export: AS8283:AS-COLOCLUE
AS132203:
description: Tencent Holdings Ltd.
import: AS132203:AS-TENCENT
export: AS8283:AS-COLOCLUE
AS205668:
description: Green Mini host BV
import: AS205668:AS-GREENMINI
export: AS8283:AS-COLOCLUE
AS20495:
description: WD6.net B.V.
import: AS-WEDARE
export: AS8283:AS-COLOCLUE
AS31019:
description: Meanie
import: AS-MEANIE
export: AS8283:AS-COLOCLUE
AS39637:
description: ADES / NetLogics
import: AS-NETLOGICS
export: AS8283:AS-COLOCLUE
AS25182:
description: Nederlandse Publieke Omroep - NPO
import: AS-PUBLIEKEOMROEP
export: AS8283:AS-COLOCLUE
AS60557:
description: Alpine North
import: AS-ALPINE-NORTH
export: AS8283:AS-COLOCLUE
AS47172:
description: Greenhost
import: AS-GREENHOST
export: AS8283:AS-COLOCLUE
AS206238:
description: Freedom Internet
import: AS-FREEDOM
export: AS8283:AS-COLOCLUE
AS201401:
description: Unithost Internet BV
import: AS-NEWVM
export: AS8283:AS-COLOCLUE
AS213050:
description: Nedap NV
import: AS-NEDAP
export: AS8283:AS-COLOCLUE
AS213035:
description: Serverion B.V.
import: AS-SERVERION
export: AS8283:AS-COLOCLUE
AS56393:
description: Frys-IX Route Servers
import: AS-FRYS-IX-CONNECTED
export: AS8283:AS-COLOCLUE
AS8298:
description: IPng Networks GmbH
import: AS-IPNG
export: AS8283:AS-COLOCLUE
not_on:
- decix
- franceix
- swissix
- nlix
- locix
AS6695:
description: DE-CIX Frankfurt Route Servers
import: AS-DECIX AS-DECIX-V6
export: AS8283:AS-COLOCLUE
# https://de-cix.net/en/resources/faqs#Blackholing
blackhole_accept: true
blackhole_community:
- '65535:666'
# https://portal.de-cix.net/help-center/article/5355426
- 'RT:6695:4200000000'
AS51706:
description: France-IX Paris Route Servers
import: AS51706:AS-MEMBERS:AS-PAR-RS
export: AS8283:AS-COLOCLUE
AS42476:
description: SwissIX Route Servers
import: AS-SWISSIX-RS
export: AS8283:AS-COLOCLUE
# https://www.swissix.ch/resources/blackholing-guide/
blackhole_accept: true
AS57118:
description: communityrack.org
import: AS-COMRACK
export: AS8283:AS-COLOCLUE
AS13150:
description: Cato Networks Ltd
import: AS13150
export: AS8283:AS-COLOCLUE
AS38965:
description: HostIn
import: AS-HOSTIN
export: AS8283:AS-COLOCLUE
AS25220:
description: equada network GmbH
import: AS-GLOBALNOC
export: AS8283:AS-COLOCLUE
AS36236:
description: NetActuate Inc.
import: AS-NETACTUATE
export: AS8283:AS-COLOCLUE
not_on:
- nlix
AS209288:
description: Solutions4xs
import: AS-SOL4XS
export: AS8283:AS-COLOCLUE
AS204151:
description: Kviknet.dk ApS
import: AS204151:AS-PEERING
export: AS8283:AS-COLOCLUE
AS1104:
description: NIKHEF
import: AS-NIKHEF
export: AS8283:AS-COLOCLUE
AS23764:
description: China Telecom
import: AS-CTGNET
export: AS8283:AS-COLOCLUE
AS8560:
description: IONOS SE
import: AS-IONOS
export: AS8283:AS-COLOCLUE
AS60051:
description: Earthlink Telecommunications Equipment Trading & Services DMCC
import: AS-DMCC
export: AS8283:AS-COLOCLUE
AS207176:
description: OpenFiber
import: AS-OPENFIBER
export: AS8283:AS-COLOCLUE
AS48927:
description: ESEVEN DevOps
import: AS-ESEVEN
export: AS8283:AS-COLOCLUE
AS209643:
description: LOCIX NL Route Servers
import: AS-LOCIX
export: AS8283:AS-COLOCLUE
AS16278:
description: Sentia Labs
import: AS16278:AS-SENTIALABS
export: AS8283:AS-COLOCLUE
AS29169:
description: Gandi
import: AS-GANDI
export: AS8283:AS-COLOCLUE
AS211588:
description: Xyphen IT
import: AS211588:AS-XYPHEN
export: AS8283:AS-COLOCLUE
AS200132:
description: NetOne NL
import: AS200132:AS-NETONE-NL
export: AS8283:AS-COLOCLUE
AS212855:
description: LUJE.net
import: AS212855:AS-LUJE
export: AS8283:AS-COLOCLUE
not_on:
- nlix
AS56584:
description: INTERIX Route Servers
import: AS56584:AS-INTERIX
export: AS8283:AS-COLOCLUE
AS202427:
description: Ursin Filli
import: AS-FILLI
export: AS8283:AS-COLOCLUE
AS139901:
description: Apple Communications Ltd.
import: AS-DTLIIG-139901
export: AS8283:AS-COLOCLUE
AS8309:
description: Sipartech SAS
import: AS-SPH
export: AS8283:AS-COLOCLUE
AS202585:
description: Nick Bouwhuis
import: AS-NICK
export: AS8283:AS-COLOCLUE