-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathv4-show-protocols-all
2618 lines (2471 loc) · 123 KB
/
v4-show-protocols-all
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
BIRD 1.4.0 ready.
name proto table state since info
device1 Device master up 2015-03-18
Preference: 240
Input filter: ACCEPT
Output filter: REJECT
Routes: 0 imported, 0 exported, 0 preferred
Route change stats: received rejected filtered ignored accepted
Import updates: 0 0 0 0 0
Import withdraws: 0 0 --- 0 0
Export updates: 0 0 0 --- 0
Export withdraws: 0 --- --- --- 0
pp_0109_as42 Pipe master up 2015-03-18 => t_0109_as42
Description: Pipe for AS42 - Packet Clearing House DNS - VLAN Interface 109
Preference: 70
Input filter: f_import_0109_as42
Output filter: (unnamed)
Routes: 35 imported, 41391 exported
Route change stats: received rejected filtered ignored accepted
Import updates: 15230378 15224324 0 785 5269
Import withdraws: 6838309 0 --- 0 5234
Export updates: 15235332 6054 4945 631190 14593143
Export withdraws: 6840173 0 --- 2081 6833075
pb_0109_as42 BGP t_0109_as42 up 2016-09-30 Established
Description: RIB for AS42 - Packet Clearing House DNS - VLAN Interface 109
Preference: 100
Input filter: (unnamed)
Output filter: ACCEPT
Import limit: 1000
Action: restart
Routes: 35 imported, 41127 exported, 2590 preferred
Route change stats: received rejected filtered ignored accepted
Import updates: 94 0 0 0 94
Import withdraws: 59 0 --- 0 59
Export updates: 1089442 94 0 --- 1089348
Export withdraws: 216076 --- --- --- 216017
BGP state: Established
Neighbor address: 193.242.111.60
Neighbor AS: 42
Neighbor ID: 204.61.210.182
Neighbor caps: refresh
Session: external route-server
Source address: 193.242.111.8
Route limit: 35/1000
Hold timer: 124/180
Keepalive timer: 39/60
pp_0086_as112 Pipe master up 2015-03-18 => t_0086_as112
Description: Pipe for AS112 - AS112 Reverse DNS - VLAN Interface 86
Preference: 70
Input filter: f_import_0086_as112
Output filter: (unnamed)
Routes: 2 imported, 41424 exported
Route change stats: received rejected filtered ignored accepted
Import updates: 14627814 14627786 4 1 23
Import withdraws: 6838312 0 --- 0 21
Export updates: 14630834 25 3023 29397 14598389
Export withdraws: 6840173 0 --- 159 6838288
pb_0086_as112 BGP t_0086_as112 up 2016-09-01 Established
Description: RIB for AS112 - AS112 Reverse DNS - VLAN Interface 86
Preference: 100
Input filter: (unnamed)
Output filter: ACCEPT
Import limit: 20
Action: restart
Routes: 2 imported, 41160 exported, 148 preferred
Route change stats: received rejected filtered ignored accepted
Import updates: 2 0 0 0 2
Import withdraws: 0 0 --- 0 0
Export updates: 2633949 2 0 --- 2633947
Export withdraws: 511271 --- --- --- 511271
BGP state: Established
Neighbor address: 193.242.111.6
Neighbor AS: 112
Neighbor ID: 193.242.111.6
Neighbor caps: refresh AS4
Session: external route-server AS4
Source address: 193.242.111.8
Route limit: 2/20
Hold timer: 56/90
Keepalive timer: 5/30
pp_0004_as1213 Pipe master up 2015-03-18 => t_0004_as1213
Description: Pipe for AS1213 - HEAnet - VLAN Interface 4
Preference: 70
Input filter: f_import_0004_as1213
Output filter: (unnamed)
Routes: 24 imported, 41402 exported
Route change stats: received rejected filtered ignored accepted
Import updates: 14938222 14937135 26 242 819
Import withdraws: 6838324 0 --- 0 698
Export updates: 14942195 1062 3996 339544 14597593
Export withdraws: 6840173 0 --- 1132 6837611
pb_0004_as1213 BGP t_0004_as1213 up 2016-04-27 Established
Description: RIB for AS1213 - HEAnet - VLAN Interface 4
Preference: 100
Input filter: (unnamed)
Output filter: ACCEPT
Import limit: 100
Action: restart
Routes: 24 imported, 41146 exported, 1168 preferred
Route change stats: received rejected filtered ignored accepted
Import updates: 888 0 36 499 353
Import withdraws: 283 0 --- 7 312
Export updates: 8261538 320 0 --- 8261218
Export withdraws: 2964795 --- --- --- 2964511
BGP state: Established
Neighbor address: 193.242.111.16
Neighbor AS: 1213
Neighbor ID: 193.1.238.129
Neighbor caps: refresh AS4
Session: external route-server AS4
Source address: 193.242.111.8
Route limit: 24/100
Hold timer: 26/45
Keepalive timer: 2/15
pp_0034_as2110 Pipe master up 2015-03-18 => t_0034_as2110
Description: Pipe for AS2110 - BT Ireland - VLAN Interface 34
Preference: 70
Input filter: f_import_0034_as2110
Output filter: (unnamed)
Routes: 125 imported, 41299 exported
Route change stats: received rejected filtered ignored accepted
Import updates: 17096271 17083520 1945 6964 3842
Import withdraws: 6838812 0 --- 1216 2080
Export updates: 17106028 10847 11632 2488983 14594566
Export withdraws: 6840173 0 --- 8764 6836227
pb_0034_as2110 BGP t_0034_as2110 up 2015-12-03 Established
Description: RIB for AS2110 - BT Ireland - VLAN Interface 34
Preference: 100
Input filter: (unnamed)
Output filter: ACCEPT
Import limit: 1000
Action: restart
Routes: 134 imported, 41092 exported, 5059 preferred
Route change stats: received rejected filtered ignored accepted
Import updates: 3855 0 361 1567 1927
Import withdraws: 1000 0 --- 147 1214
Export updates: 10504891 1641 0 --- 10503250
Export withdraws: 4485007 --- --- --- 4484968
BGP state: Established
Neighbor address: 193.242.111.17
Neighbor AS: 2110
Neighbor ID: 193.95.128.130
Neighbor caps: refresh AS4
Session: external route-server AS4
Source address: 193.242.111.8
Route limit: 134/1000
Hold timer: 83/180
Keepalive timer: 17/60
pp_0042_as2128 Pipe master up 2015-03-18 => t_0042_as2128
Description: Pipe for AS2128 - INEX - VLAN Interface 42
Preference: 70
Input filter: f_import_0042_as2128
Output filter: (unnamed)
Routes: 3 imported, 41423 exported
Route change stats: received rejected filtered ignored accepted
Import updates: 14633324 14633283 0 3 38
Import withdraws: 6838309 0 --- 0 9
Export updates: 14636349 41 3024 34910 14598374
Export withdraws: 6840173 0 --- 160 6838300
pb_0042_as2128 BGP t_0042_as2128 up 2016-06-03 Established
Description: RIB for AS2128 - INEX - VLAN Interface 42
Preference: 100
Input filter: (unnamed)
Output filter: ACCEPT
Import limit: 20
Action: restart
Routes: 3 imported, 41159 exported, 222 preferred
Route change stats: received rejected filtered ignored accepted
Import updates: 23 0 0 3 20
Import withdraws: 0 0 --- 0 0
Export updates: 7217690 20 0 --- 7217670
Export withdraws: 2320791 --- --- --- 2320794
BGP state: Established
Neighbor address: 193.242.111.2
Neighbor AS: 2128
Neighbor ID: 193.242.111.224
Neighbor caps: refresh AS4
Session: external route-server AS4
Source address: 193.242.111.8
Route limit: 3/20
Hold timer: 63/90
Keepalive timer: 6/30
pp_0077_as2128 Pipe master up 2015-03-18 => t_0077_as2128
Description: Pipe for AS2128 - INEX - VLAN Interface 77
Preference: 70
Input filter: f_import_0077_as2128
Output filter: (unnamed)
Routes: 0 imported, 41426 exported
Route change stats: received rejected filtered ignored accepted
Import updates: 14633324 14633324 0 0 0
Import withdraws: 6838309 0 --- 0 0
Export updates: 14636349 0 3024 34913 14598412
Export withdraws: 6840173 0 --- 160 6838309
pb_0077_as2128 BGP t_0077_as2128 up 2016-10-02 Established
Description: RIB for AS2128 - INEX - VLAN Interface 77
Preference: 100
Input filter: (unnamed)
Output filter: ACCEPT
Import limit: 20
Action: restart
Routes: 0 imported, 41162 exported, 0 preferred
Route change stats: received rejected filtered ignored accepted
Import updates: 0 0 0 0 0
Import withdraws: 0 0 --- 0 0
Export updates: 1003138 0 0 --- 1003138
Export withdraws: 201055 --- --- --- 201055
BGP state: Established
Neighbor address: 193.242.111.126
Neighbor AS: 2128
Neighbor ID: 193.242.111.227
Neighbor caps: refresh AS4
Session: external route-server AS4
Source address: 193.242.111.8
Route limit: 0/20
Hold timer: 123/180
Keepalive timer: 23/60
pp_0151_as2906 Pipe master up 2015-03-18 => t_0151_as2906
Description: Pipe for AS2906 - Netflix - VLAN Interface 151
Preference: 70
Input filter: f_import_0151_as2906
Output filter: (unnamed)
Routes: 0 imported, 41367 exported
Route change stats: received rejected filtered ignored accepted
Import updates: 14757095 14757080 7 4 4
Import withdraws: 6837086 0 --- 1 4
Export updates: 14762218 8 5130 160193 14596887
Export withdraws: 6840173 0 --- 745 6837081
pb_0151_as2906 BGP t_0151_as2906 up 2016-05-24 Established
Description: RIB for AS2906 - Netflix - VLAN Interface 151
Preference: 100
Input filter: (unnamed)
Output filter: ACCEPT
Import limit: 50
Action: restart
Routes: 1 imported, 41112 exported, 1 preferred
Route change stats: received rejected filtered ignored accepted
Import updates: 6 0 0 1 5
Import withdraws: 0 0 --- 0 0
Export updates: 7381740 5 0 --- 7381735
Export withdraws: 2447900 --- --- --- 2447900
BGP state: Established
Neighbor address: 193.242.111.85
Neighbor AS: 2906
Neighbor ID: 45.57.12.1
Neighbor caps: refresh AS4
Session: external route-server AS4
Source address: 193.242.111.8
Route limit: 1/50
Hold timer: 26/30
Keepalive timer: 7/10
pp_0110_as3856 Pipe master up 2015-03-18 => t_0110_as3856
Description: Pipe for AS3856 - PCH Route Collector - VLAN Interface 110
Preference: 70
Input filter: f_import_0110_as3856
Output filter: (unnamed)
Routes: 1 imported, 41425 exported
Route change stats: received rejected filtered ignored accepted
Import updates: 14598412 14598405 0 0 7
Import withdraws: 6838309 0 --- 0 6
Export updates: 14601276 7 2864 0 14598405
Export withdraws: 6840173 0 --- 0 6838303
pb_0110_as3856 BGP t_0110_as3856 up 2016-09-30 Established
Description: RIB for AS3856 - PCH Route Collector - VLAN Interface 110
Preference: 100
Input filter: (unnamed)
Output filter: ACCEPT
Import limit: 20
Action: restart
Routes: 1 imported, 41161 exported, 74 preferred
Route change stats: received rejected filtered ignored accepted
Import updates: 1 0 0 0 1
Import withdraws: 0 0 --- 0 0
Export updates: 1092508 1 0 --- 1092507
Export withdraws: 216741 --- --- --- 216741
BGP state: Established
Neighbor address: 193.242.111.61
Neighbor AS: 3856
Neighbor ID: 74.80.92.4
Neighbor caps: refresh AS4
Session: external route-server AS4
Source address: 193.242.111.8
Route limit: 1/20
Hold timer: 136/180
Keepalive timer: 9/60
pp_0061_as5466 Pipe master up 2015-03-18 => t_0061_as5466
Description: Pipe for AS5466 - Eircom Net - VLAN Interface 61
Preference: 70
Input filter: f_import_0061_as5466
Output filter: (unnamed)
Routes: 54 imported, 41367 exported
Route change stats: received rejected filtered ignored accepted
Import updates: 16036793 16031272 1047 1962 2512
Import withdraws: 6838429 0 --- 836 2429
Export updates: 16044472 4487 8690 1435477 14595818
Export withdraws: 6840173 0 --- 5744 6835823
pb_0061_as5466 BGP t_0061_as5466 up 2016-05-06 Established
Description: RIB for AS5466 - Eircom Net - VLAN Interface 61
Preference: 100
Input filter: (unnamed)
Output filter: ACCEPT
Import limit: 200
Action: restart
Routes: 68 imported, 41107 exported, 3715 preferred
Route change stats: received rejected filtered ignored accepted
Import updates: 413 0 0 246 167
Import withdraws: 89 0 --- 0 89
Export updates: 8147447 162 0 --- 8147285
Export withdraws: 2898955 --- --- --- 2898900
BGP state: Established
Neighbor address: 193.242.111.82
Neighbor AS: 5466
Neighbor ID: 86.43.251.243
Neighbor caps: refresh AS4
Session: external route-server AS4
Source address: 193.242.111.8
Route limit: 68/200
Hold timer: 72/90
Keepalive timer: 17/30
pp_0187_as6939 Pipe master up 2015-03-18 => t_0187_as6939
Description: Pipe for AS6939 - Hurricane Electric - VLAN Interface 187
Preference: 70
Input filter: f_import_0187_as6939
Output filter: (unnamed)
Routes: 39206 imported, 2198 exported
Route change stats: received rejected filtered ignored accepted
Import updates: 14598175 414326 7 0 14183842
Import withdraws: 6838212 0 --- 0 6651238
Export updates: 14601276 14183842 3108 0 414326
Export withdraws: 6840173 0 --- 0 186967
pb_0187_as6939 BGP t_0187_as6939 up 2016-06-16 Established
Description: RIB for AS6939 - Hurricane Electric - VLAN Interface 187
Preference: 100
Input filter: (unnamed)
Output filter: ACCEPT
Import limit: 110000
Action: restart
Routes: 39206 imported, 2015 exported, 2896876 preferred
Route change stats: received rejected filtered ignored accepted
Import updates: 7230467 0 0 186696 7043771
Import withdraws: 2238841 0 --- 0 2238841
Export updates: 7499079 7427086 0 --- 71993
Export withdraws: 2151345 --- --- --- 502077
BGP state: Established
Neighbor address: 193.242.111.69
Neighbor AS: 6939
Neighbor ID: 216.218.252.215
Neighbor caps: refresh AS4
Session: external route-server AS4
Source address: 193.242.111.8
Route limit: 39206/110000
Hold timer: 146/180
Keepalive timer: 5/60
pp_0023_as8075 Pipe master up 2015-03-18 => t_0023_as8075
Description: Pipe for AS8075 - Microsoft - VLAN Interface 23
Preference: 70
Input filter: f_import_0023_as8075
Output filter: (unnamed)
Routes: 213 imported, 41213 exported
Route change stats: received rejected filtered ignored accepted
Import updates: 15296996 15270792 518 4317 21369
Import withdraws: 6838597 0 --- 145 20873
Export updates: 15301739 25721 5221 693764 14577033
Export withdraws: 6840173 0 --- 2347 6817436
pb_0023_as8075 BGP t_0023_as8075 up 2016-09-24 Established
Description: RIB for AS8075 - Microsoft - VLAN Interface 23
Preference: 100
Input filter: (unnamed)
Output filter: ACCEPT
Import limit: 500
Action: restart
Routes: 217 imported, 40949 exported, 15766 preferred
Route change stats: received rejected filtered ignored accepted
Import updates: 373 0 0 0 373
Import withdraws: 135 0 --- 0 135
Export updates: 1438445 373 0 --- 1438072
Export withdraws: 288094 --- --- --- 287959
BGP state: Established
Neighbor address: 193.242.111.28
Neighbor AS: 8075
Neighbor ID: 207.46.33.48
Neighbor caps: refresh AS4
Session: external route-server AS4
Source address: 193.242.111.8
Route limit: 217/500
Hold timer: 65/90
Keepalive timer: 10/30
pp_0112_as12388 Pipe master up 2015-03-18 => t_0112_as12388
Description: Pipe for AS12388 - Cablesurf - VLAN Interface 112
Preference: 70
Input filter: f_import_0112_as12388
Output filter: (unnamed)
Routes: 1 imported, 41425 exported
Route change stats: received rejected filtered ignored accepted
Import updates: 14598422 14598402 10 0 10
Import withdraws: 6838319 0 --- 0 8
Export updates: 14601276 10 2864 0 14598402
Export withdraws: 6840173 0 --- 0 6838301
pb_0112_as12388 BGP t_0112_as12388 up 2015-12-03 Established
Description: RIB for AS12388 - Cablesurf - VLAN Interface 112
Preference: 100
Input filter: (unnamed)
Output filter: ACCEPT
Import limit: 20
Action: restart
Routes: 1 imported, 41161 exported, 74 preferred
Route change stats: received rejected filtered ignored accepted
Import updates: 5 0 0 0 5
Import withdraws: 3 0 --- 0 3
Export updates: 10504758 5 0 --- 10504753
Export withdraws: 4484922 --- --- --- 4484919
BGP state: Established
Neighbor address: 193.242.111.62
Neighbor AS: 12388
Neighbor ID: 83.220.203.171
Neighbor caps: refresh AS4
Session: external route-server AS4
Source address: 193.242.111.8
Route limit: 1/20
Hold timer: 98/180
Keepalive timer: 57/60
pp_0143_as13237 Pipe master up 2015-03-18 => t_0143_as13237
Description: Pipe for AS13237 - euNetworks - VLAN Interface 143
Preference: 70
Input filter: f_import_0143_as13237
Output filter: (unnamed)
Routes: 941 imported, 40482 exported
Route change stats: received rejected filtered ignored accepted
Import updates: 71443710 69160094 277397 1756224 249995
Import withdraws: 6927495 0 --- 175822 53863
Export updates: 71372273 2006349 205626 54811893 14348405
Export withdraws: 6840173 0 --- 202750 6784446
pb_0143_as13237 BGP t_0143_as13237 up 2016-06-16 Established
Description: RIB for AS13237 - euNetworks - VLAN Interface 143
Preference: 100
Input filter: (unnamed)
Output filter: ACCEPT
Import limit: 5000
Action: restart
Routes: 1032 imported, 40269 exported, 65951 preferred
Route change stats: received rejected filtered ignored accepted
Import updates: 52936 0 0 0 52936
Import withdraws: 24068 0 --- 0 24068
Export updates: 7059689 52367 0 --- 7007322
Export withdraws: 2218137 --- --- --- 2194747
BGP state: Established
Neighbor address: 193.242.111.79
Neighbor AS: 13237
Neighbor ID: 81.209.156.2
Neighbor caps: refresh AS4
Session: external route-server AS4
Source address: 193.242.111.8
Route limit: 1032/5000
Hold timer: 155/180
Keepalive timer: 28/60
pp_0099_as15169 Pipe master up 2015-03-18 => t_0099_as15169
Description: Pipe for AS15169 - Google - VLAN Interface 99
Preference: 70
Input filter: f_import_0099_as15169
Output filter: (unnamed)
Routes: 168 imported, 41229 exported
Route change stats: received rejected filtered ignored accepted
Import updates: 15221772 15212761 814 3028 5169
Import withdraws: 6838665 0 --- 151 3911
Export updates: 15226272 8202 5262 619793 14593015
Export withdraws: 6840173 0 --- 2170 6834331
pb_0099_as15169 BGP t_0099_as15169 up 2016-07-21 Established
Description: RIB for AS15169 - Google - VLAN Interface 99
Preference: 100
Input filter: (unnamed)
Output filter: ACCEPT
Import limit: 2000
Action: restart
Routes: 175 imported, 40965 exported, 12439 preferred
Route change stats: received rejected filtered ignored accepted
Import updates: 1439 0 0 0 1439
Import withdraws: 588 0 --- 0 588
Export updates: 5136071 1437 0 --- 5134634
Export withdraws: 1202743 --- --- --- 1202217
BGP state: Established
Neighbor address: 193.242.111.57
Neighbor AS: 15169
Neighbor ID: 209.85.252.165
Neighbor caps: refresh AS4
Session: external route-server AS4
Source address: 193.242.111.8
Route limit: 175/2000
Hold timer: 53/90
Keepalive timer: 11/30
pp_0105_as15502 Pipe master up 2015-03-18 => t_0105_as15502
Description: Pipe for AS15502 - Vodafone Ireland Limited - VLAN Interface 105
Preference: 70
Input filter: f_import_0105_as15502
Output filter: (unnamed)
Routes: 29 imported, 41476 exported
Route change stats: received rejected filtered ignored accepted
Import updates: 14744606 14743528 891 36 151
Import withdraws: 6840661 0 --- 97 63
Export updates: 14743735 207 0 142403 14601125
Export withdraws: 6840173 0 --- 0 6840110
pb_0105_as15502 BGP t_0105_as15502 up 2016-02-03 Established
Description: RIB for AS15502 - Vodafone Ireland Limited - VLAN Interface 105
Preference: 100
Input filter: (unnamed)
Output filter: ACCEPT
Import limit: 100
Action: restart
Routes: 41 imported, 41212 exported, 2129 preferred
Route change stats: received rejected filtered ignored accepted
Import updates: 866 0 0 572 294
Import withdraws: 91 0 --- 0 91
Export updates: 9906557 446 0 --- 9906111
Export withdraws: 4016294 --- --- --- 4016355
BGP state: Established
Neighbor address: 193.242.111.43
Neighbor AS: 15502
Neighbor ID: 213.233.129.103
Neighbor caps: refresh AS4
Session: external route-server AS4
Source address: 193.242.111.8
Route limit: 41/100
Hold timer: 12/15
Keepalive timer: 3/5
pp_0001_as15806 Pipe master up 2015-03-18 => t_0001_as15806
Description: Pipe for AS15806 - OGCIO - VLAN Interface 1
Preference: 70
Input filter: f_import_0001_as15806
Output filter: (unnamed)
Routes: 13 imported, 41413 exported
Route change stats: received rejected filtered ignored accepted
Import updates: 14598431 14597942 19 0 470
Import withdraws: 6838327 0 --- 0 455
Export updates: 14601276 470 2864 0 14597942
Export withdraws: 6840173 0 --- 0 6837854
pb_0001_as15806 BGP t_0001_as15806 up 2015-12-03 Established
Description: RIB for AS15806 - OGCIO - VLAN Interface 1
Preference: 100
Input filter: (unnamed)
Output filter: ACCEPT
Import limit: 20
Action: restart
Routes: 14 imported, 41149 exported, 963 preferred
Route change stats: received rejected filtered ignored accepted
Import updates: 1308 0 0 897 411
Import withdraws: 397 0 --- 0 397
Export updates: 10504781 411 0 --- 10504370
Export withdraws: 4484935 --- --- --- 4484896
BGP state: Established
Neighbor address: 193.242.111.33
Neighbor AS: 15806
Neighbor ID: 137.191.224.229
Neighbor caps: refresh AS4
Session: external route-server AS4
Source address: 193.242.111.8
Route limit: 14/20
Hold timer: 130/180
Keepalive timer: 23/60
pp_0021_as16171 Pipe master up 2015-03-18 => t_0021_as16171
Description: Pipe for AS16171 - Strencom - VLAN Interface 21
Preference: 70
Input filter: f_import_0021_as16171
Output filter: (unnamed)
Routes: 3 imported, 41423 exported
Route change stats: received rejected filtered ignored accepted
Import updates: 14598412 14598322 0 0 90
Import withdraws: 6838309 0 --- 0 83
Export updates: 14601276 90 2864 0 14598322
Export withdraws: 6840173 0 --- 0 6838226
pb_0021_as16171 BGP t_0021_as16171 up 2016-02-10 Established
Description: RIB for AS16171 - Strencom - VLAN Interface 21
Preference: 100
Input filter: (unnamed)
Output filter: ACCEPT
Import limit: 20
Action: restart
Routes: 3 imported, 41159 exported, 222 preferred
Route change stats: received rejected filtered ignored accepted
Import updates: 12 0 0 1 11
Import withdraws: 9 0 --- 1 8
Export updates: 9594227 14 0 --- 9594213
Export withdraws: 3905482 --- --- --- 3905493
BGP state: Established
Neighbor address: 193.242.111.29
Neighbor AS: 16171
Neighbor ID: 77.107.253.12
Neighbor caps: refresh AS4
Session: external route-server AS4
Source address: 193.242.111.8
Route limit: 3/20
Hold timer: 124/180
Keepalive timer: 29/60
pp_0096_as20940 Pipe master up 2015-03-18 => t_0096_as20940
Description: Pipe for AS20940 - Akamai Technologies - VLAN Interface 96
Preference: 70
Input filter: f_import_0096_as20940
Output filter: (unnamed)
Routes: 19 imported, 41407 exported
Route change stats: received rejected filtered ignored accepted
Import updates: 34796571 34763089 86 12014 21382
Import withdraws: 6838138 0 --- 77 20033
Export updates: 34874944 33405 78383 20186311 14576845
Export withdraws: 6840173 0 --- 75334 6818105
pb_0096_as20940 BGP t_0096_as20940 up 2015-12-03 Established
Description: RIB for AS20940 - Akamai Technologies - VLAN Interface 96
Preference: 100
Input filter: (unnamed)
Output filter: ACCEPT
Import limit: 500
Action: restart
Routes: 19 imported, 41143 exported, 1406 preferred
Route change stats: received rejected filtered ignored accepted
Import updates: 35710 0 0 14712 20998
Import withdraws: 19737 0 --- 0 19737
Export updates: 10578873 21036 0 --- 10557837
Export withdraws: 4484925 --- --- --- 4471616
BGP state: Established
Neighbor address: 193.242.111.55
Neighbor AS: 20940
Neighbor ID: 92.123.72.254
Neighbor caps: refresh AS4
Session: external route-server AS4
Source address: 193.242.111.8
Route limit: 19/500
Hold timer: 104/180
Keepalive timer: 8/60
pp_0179_as24637 Pipe master up 2015-03-18 => t_0179_as24637
Description: Pipe for AS24637 - Webdiscount - VLAN Interface 179
Preference: 70
Input filter: f_import_0179_as24637
Output filter: (unnamed)
Routes: 18 imported, 41408 exported
Route change stats: received rejected filtered ignored accepted
Import updates: 14837157 14836603 0 127 427
Import withdraws: 6838309 0 --- 0 290
Export updates: 14840981 554 3820 238622 14597985
Export withdraws: 6840173 0 --- 956 6838019
pb_0179_as24637 BGP t_0179_as24637 up 2015-12-03 Established
Description: RIB for AS24637 - Webdiscount - VLAN Interface 179
Preference: 100
Input filter: (unnamed)
Output filter: ACCEPT
Import limit: 200
Action: restart
Routes: 18 imported, 41144 exported, 1332 preferred
Route change stats: received rejected filtered ignored accepted
Import updates: 464 0 0 201 263
Import withdraws: 4758 0 --- 4619 139
Export updates: 10504770 263 0 --- 10504507
Export withdraws: 4484925 --- --- --- 4484786
BGP state: Established
Neighbor address: 193.242.111.99
Neighbor AS: 24637
Neighbor ID: 212.3.67.252
Neighbor caps: refresh AS4
Session: external route-server AS4
Source address: 193.242.111.8
Route limit: 18/200
Hold timer: 113/180
Keepalive timer: 33/60
pp_0011_as25441 Pipe master up 2015-03-18 => t_0011_as25441
Description: Pipe for AS25441 - imag!ne - VLAN Interface 11
Preference: 70
Input filter: f_import_0011_as25441
Output filter: (unnamed)
Routes: 31 imported, 41474 exported
Route change stats: received rejected filtered ignored accepted
Import updates: 14700769 14699576 609 48 536
Import withdraws: 6840722 0 --- 15 450
Export updates: 14700278 608 95 98930 14600645
Export withdraws: 6840173 0 --- 0 6839723
pb_0011_as25441 BGP t_0011_as25441 up 2016-09-28 Established
Description: RIB for AS25441 - imag!ne - VLAN Interface 11
Preference: 100
Input filter: (unnamed)
Output filter: ACCEPT
Import limit: 50
Action: restart
Routes: 35 imported, 41210 exported, 2275 preferred
Route change stats: received rejected filtered ignored accepted
Import updates: 48 0 3 0 45
Import withdraws: 4 0 --- 1 6
Export updates: 1186137 45 0 --- 1186092
Export withdraws: 234912 --- --- --- 234906
BGP state: Established
Neighbor address: 193.242.111.19
Neighbor AS: 25441
Neighbor ID: 87.192.46.90
Neighbor caps: refresh AS4
Session: external route-server AS4
Source address: 193.242.111.8
Route limit: 35/50
Hold timer: 62/90
Keepalive timer: 19/30
pp_0038_as26415 Pipe master up 2015-03-18 => t_0038_as26415
Description: Pipe for AS26415 - Verisign J Root & com/net - VLAN Interface 38
Preference: 70
Input filter: f_import_0038_as26415
Output filter: (unnamed)
Routes: 2 imported, 41424 exported
Route change stats: received rejected filtered ignored accepted
Import updates: 18036155 18035645 19 339 152
Import withdraws: 6838316 0 --- 10 150
Export updates: 18051421 493 15229 3437439 14598260
Export withdraws: 6840173 0 --- 12365 6838159
pb_0038_as26415 BGP t_0038_as26415 up 2016-10-19 Established
Description: RIB for AS26415 - Verisign J Root & com/net - VLAN Interface 38
Preference: 100
Input filter: (unnamed)
Output filter: ACCEPT
Import limit: 20
Action: restart
Routes: 2 imported, 41160 exported, 148 preferred
Route change stats: received rejected filtered ignored accepted
Import updates: 2 0 0 0 2
Import withdraws: 0 0 --- 0 0
Export updates: 105147 2 0 --- 105145
Export withdraws: 50005 --- --- --- 50007
BGP state: Established
Neighbor address: 193.242.111.40
Neighbor AS: 26415
Neighbor ID: 193.242.111.40
Neighbor caps: refresh AS4
Session: external route-server AS4
Source address: 193.242.111.8
Route limit: 2/20
Hold timer: 143/180
Keepalive timer: 16/60
pp_0120_as29644 Pipe master up 2015-03-18 => t_0120_as29644
Description: Pipe for AS29644 - Airspeed Telecom - VLAN Interface 120
Preference: 70
Input filter: f_import_0120_as29644
Output filter: (unnamed)
Routes: 21 imported, 41405 exported
Route change stats: received rejected filtered ignored accepted
Import updates: 14893867 14875931 2701 156 15079
Import withdraws: 6840972 0 --- 22 15037
Export updates: 14894909 15241 3737 292598 14583333
Export withdraws: 6840173 0 --- 873 6823272
pb_0120_as29644 BGP t_0120_as29644 up 2016-02-19 Established
Description: RIB for AS29644 - Airspeed Telecom - VLAN Interface 120
Preference: 100
Input filter: (unnamed)
Output filter: ACCEPT
Import limit: 250
Action: restart
Routes: 23 imported, 41145 exported, 1260 preferred
Route change stats: received rejected filtered ignored accepted
Import updates: 343 0 0 4 339
Import withdraws: 309 0 --- 0 309
Export updates: 9568054 333 0 --- 9567721
Export withdraws: 3889140 --- --- --- 3888905
BGP state: Established
Neighbor address: 193.242.111.67
Neighbor AS: 29644
Neighbor ID: 77.75.103.3
Neighbor caps: refresh AS4
Session: external route-server AS4
Source address: 193.242.111.8
Route limit: 23/250
Hold timer: 67/90
Keepalive timer: 20/30
pp_0081_as30900 Pipe master up 2015-03-18 => t_0081_as30900
Description: Pipe for AS30900 - Web World Ireland - VLAN Interface 81
Preference: 70
Input filter: f_import_0081_as30900
Output filter: (unnamed)
Routes: 0 imported, 41426 exported
Route change stats: received rejected filtered ignored accepted
Import updates: 14705437 14705221 133 3 80
Import withdraws: 6838440 0 --- 1 80
Export updates: 14708407 84 3102 106889 14598332
Export withdraws: 6840173 0 --- 238 6838229
pb_0081_as30900 BGP t_0081_as30900 start 2015-11-27 Active Socket: No route to host
Description: RIB for AS30900 - Web World Ireland - VLAN Interface 81
Preference: 100
Input filter: (unnamed)
Output filter: ACCEPT
Import limit: 20
Action: restart
Routes: 0 imported, 0 exported, 0 preferred
Route change stats: received rejected filtered ignored accepted
Import updates: 0 0 0 0 0
Import withdraws: 0 0 --- 0 0
Export updates: 0 0 0 --- 0
Export withdraws: 0 --- --- --- 0
BGP state: Active
Neighbor address: 193.242.111.51
Neighbor AS: 30900
Start delay: 1/5
Last error: Socket: No route to host
pp_0147_as31084 Pipe master up 2015-03-18 => t_0147_as31084
Description: Pipe for AS31084 - Magrathea - VLAN Interface 147
Preference: 70
Input filter: f_import_0147_as31084
Output filter: (unnamed)
Routes: 6 imported, 41420 exported
Route change stats: received rejected filtered ignored accepted
Import updates: 14631149 14630821 16 4 308
Import withdraws: 6838324 0 --- 0 302
Export updates: 14634158 313 3024 32717 14598104
Export withdraws: 6840173 0 --- 160 6838007
pb_0147_as31084 BGP t_0147_as31084 up 2015-03-19 Established
Description: RIB for AS31084 - Magrathea - VLAN Interface 147
Preference: 100
Input filter: (unnamed)
Output filter: ACCEPT
Import limit: 20
Action: restart
Routes: 6 imported, 41156 exported, 444 preferred
Route change stats: received rejected filtered ignored accepted
Import updates: 332 0 0 9 323
Import withdraws: 24355 0 --- 24038 317
Export updates: 14492508 323 0 --- 14492185
Export withdraws: 6708802 --- --- --- 6708485
BGP state: Established
Neighbor address: 193.242.111.83
Neighbor AS: 31084
Neighbor ID: 87.238.77.77
Neighbor caps: refresh AS4
Session: external route-server AS4
Source address: 193.242.111.8
Route limit: 6/20
Hold timer: 100/180
Keepalive timer: 41/60
pp_0016_as31122 Pipe master up 2015-03-18 => t_0016_as31122
Description: Pipe for AS31122 - Viatel - VLAN Interface 16
Preference: 70
Input filter: f_import_0016_as31122
Output filter: (unnamed)
Routes: 54 imported, 41365 exported
Route change stats: received rejected filtered ignored accepted
Import updates: 15303605 15301182 60 1119 1244
Import withdraws: 6838286 0 --- 5 1050
Export updates: 15308659 2370 5106 704093 14597090
Export withdraws: 6840173 0 --- 2164 6837188
pb_0016_as31122 BGP t_0016_as31122 up 2015-12-03 Established
Description: RIB for AS31122 - Viatel - VLAN Interface 16
Preference: 100
Input filter: (unnamed)
Output filter: ACCEPT
Import limit: 200
Action: restart
Routes: 54 imported, 41108 exported, 3437 preferred
Route change stats: received rejected filtered ignored accepted
Import updates: 660 0 0 302 358
Import withdraws: 296 0 --- 0 296
Export updates: 10504794 354 0 --- 10504440
Export withdraws: 4484960 --- --- --- 4484702
BGP state: Established
Neighbor address: 193.242.111.20
Neighbor AS: 31122
Neighbor ID: 83.147.162.134
Neighbor caps: refresh AS4
Session: external route-server AS4
Source address: 193.242.111.8
Route limit: 54/200
Hold timer: 142/180
Keepalive timer: 3/60
pp_0022_as31641 Pipe master up 2015-03-18 => t_0022_as31641
Description: Pipe for AS31641 - Bytel - VLAN Interface 22
Preference: 70
Input filter: f_import_0022_as31641
Output filter: (unnamed)
Routes: 0 imported, 41505 exported
Route change stats: received rejected filtered ignored accepted
Import updates: 14600512 14600398 64 0 50
Import withdraws: 6840294 0 --- 0 26
Export updates: 14601276 50 828 0 14600398
Export withdraws: 6840173 0 --- 0 6840240
pb_0022_as31641 BGP t_0022_as31641 start 2016-05-31 Connect Socket: No route to host
Description: RIB for AS31641 - Bytel - VLAN Interface 22
Preference: 100
Input filter: (unnamed)
Output filter: ACCEPT
Import limit: 20
Action: restart
Routes: 0 imported, 0 exported, 0 preferred
Route change stats: received rejected filtered ignored accepted
Import updates: 0 0 0 0 0
Import withdraws: 0 0 --- 0 0
Export updates: 0 0 0 --- 0
Export withdraws: 0 --- --- --- 0
BGP state: Connect
Neighbor address: 193.242.111.27
Neighbor AS: 31641
Last error: Socket: No route to host
pp_0100_as34218 Pipe master up 2015-03-18 => t_0100_as34218
Description: Pipe for AS34218 - 3 Ireland - VLAN Interface 100
Preference: 70
Input filter: f_import_0100_as34218
Output filter: (unnamed)
Routes: 23 imported, 41482 exported
Route change stats: received rejected filtered ignored accepted
Import updates: 14705968 14705291 2 66 609
Import withdraws: 6840269 0 --- 0 332
Export updates: 14706157 676 190 104814 14600477
Export withdraws: 6840173 0 --- 0 6839936
pb_0100_as34218 BGP t_0100_as34218 up 2015-12-03 Established
Description: RIB for AS34218 - 3 Ireland - VLAN Interface 100
Preference: 100
Input filter: (unnamed)
Output filter: ACCEPT
Import limit: 100
Action: restart
Routes: 23 imported, 41218 exported, 1700 preferred
Route change stats: received rejected filtered ignored accepted
Import updates: 164 0 0 2 162
Import withdraws: 71 0 --- 0 71
Export updates: 10506285 162 0 --- 10506123
Export withdraws: 4486361 --- --- --- 4486372
BGP state: Established
Neighbor address: 193.242.111.58
Neighbor AS: 34218
Neighbor ID: 92.251.255.254
Neighbor caps: refresh AS4
Session: external route-server AS4
Source address: 193.242.111.8
Route limit: 23/100
Hold timer: 42/90
Keepalive timer: 14/30
pp_0026_as34245 Pipe master up 2015-03-18 => t_0026_as34245
Description: Pipe for AS34245 - Magnet Networks - VLAN Interface 26
Preference: 70
Input filter: f_import_0026_as34245
Output filter: (unnamed)
Routes: 10 imported, 41495 exported
Route change stats: received rejected filtered ignored accepted
Import updates: 14705973 14705895 58 10 10
Import withdraws: 6840266 0 --- 29 0
Export updates: 14706426 20 510 105140 14600756
Export withdraws: 6840173 0 --- 0 6840266
pb_0026_as34245 BGP t_0026_as34245 up 2016-10-13 Established
Description: RIB for AS34245 - Magnet Networks - VLAN Interface 26
Preference: 100
Input filter: (unnamed)
Output filter: ACCEPT
Import limit: 50
Action: restart
Routes: 39 imported, 41208 exported, 769 preferred
Route change stats: received rejected filtered ignored accepted
Import updates: 39 0 0 0 39
Import withdraws: 0 0 --- 0 0
Export updates: 378669 39 0 --- 378630
Export withdraws: 104370 --- --- --- 104393
BGP state: Established