-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrt0.cowshed.hw.esgob.com
More file actions
1053 lines (1053 loc) · 25.6 KB
/
rt0.cowshed.hw.esgob.com
File metadata and controls
1053 lines (1053 loc) · 25.6 KB
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
firewall {
all-ping enable
broadcast-ping disable
group {
address-group adsb {
address 185.61.113.152
description ""
}
address-group authdns {
address 185.61.112.98
description ""
}
address-group bgpextneighbors {
address 90.155.53.61
address 90.155.53.62
description "Offnet BGP neighbors"
}
address-group cctvnvr {
address 185.61.112.148
description ""
}
address-group dotwaffle {
address 212.111.40.190
address 88.198.24.72
description ""
}
address-group downstream_as30746 {
address 193.47.147.0/24
address 185.61.112.0/23
description ""
}
address-group mosh_servers {
address 185.61.112.98
description ""
}
address-group ournets {
address 185.61.112.0/22
address 185.19.148.0/23
address 195.177.252.0/23
address 91.232.181.0/24
address 193.47.147.0/24
description ""
}
address-group servicenodes {
address 185.19.148.54
address 185.19.148.58
address 185.19.148.62
description ""
}
address-group trusted_nat {
address 185.19.150.0/24
address 185.61.112.0/23
address 195.177.252.0/23
description ""
}
network-group no_filter_nets {
description ""
network 195.177.253.0/24
network 193.47.147.0/24
}
port-group cctvnvr_ports {
description ""
port 80
port 554
port 8000
port 9010
port 9020
}
port-group mosh_ports {
description ""
port 60000-61000
}
port-group trusted_dst_ports {
description ""
port 22
port 443
}
}
ipv6-receive-redirects disable
ipv6-src-route disable
ip-src-route disable
log-martians enable
modify pppoe_modify_out {
rule 1 {
action modify
modify {
tcp-mss 1452
}
protocol tcp
tcp {
flags SYN
}
}
}
name transit4_in {
default-action drop
description ""
rule 2 {
action accept
description established
log disable
protocol all
state {
established enable
invalid disable
new disable
related enable
}
}
rule 3 {
action accept
description outbound
log disable
protocol all
source {
group {
address-group ournets
}
}
state {
established disable
invalid disable
new enable
related disable
}
}
rule 4 {
action accept
description ICMP
log disable
protocol icmp
state {
established enable
invalid disable
new enable
related disable
}
}
rule 5 {
action accept
description Traceroute
destination {
port 33434-33524
}
log disable
protocol udp
state {
established enable
invalid disable
new enable
related enable
}
}
rule 22 {
action accept
description "ssh to servicenodes"
destination {
group {
address-group servicenodes
}
port 22
}
log disable
protocol tcp
state {
established enable
invalid disable
new enable
related disable
}
}
rule 23 {
action accept
description "allow to nigels anything"
destination {
address 195.177.252.30
}
log disable
protocol all
state {
established enable
invalid disable
new enable
related disable
}
}
rule 24 {
action accept
description "allow any to as30746"
destination {
group {
address-group downstream_as30746
}
}
log disable
protocol all
state {
established disable
invalid disable
new enable
related disable
}
}
}
name transit4_local {
default-action drop
description ""
rule 1 {
action accept
description established
log disable
protocol all
state {
established enable
invalid disable
new disable
related enable
}
}
rule 2 {
action accept
description "inbound ping"
log disable
protocol icmp
}
rule 3 {
action accept
description "bgp from aaisp"
destination {
port 179
}
log disable
protocol tcp
source {
group {
address-group bgpextneighbors
}
}
state {
established disable
invalid disable
new enable
related disable
}
}
rule 4 {
action accept
description "trusted from nat"
destination {
group {
port-group trusted_dst_ports
}
}
log disable
protocol all
source {
group {
address-group trusted_nat
}
}
state {
established disable
invalid disable
new enable
related disable
}
}
}
receive-redirects disable
send-redirects enable
source-validation disable
syn-cookies enable
}
interfaces {
ethernet eth0 {
description "Transit: FTTC AAISP 1 in Mathry Cowshed"
duplex auto
pppoe 0 {
default-route auto
firewall {
in {
name transit4_in
}
local {
name transit4_local
}
out {
modify pppoe_modify_out
}
}
ipv6 {
address {
}
dup-addr-detect-transmits 1
enable {
}
}
mtu 1492
name-server auto
password ****************
user-id el6@a.1
}
speed auto
}
ethernet eth1 {
description "Transit: FTTC AAISP 2 in Mathry Cowshed"
duplex auto
pppoe 1 {
default-route auto
firewall {
in {
name transit4_in
}
local {
name transit4_local
}
out {
modify pppoe_modify_out
}
}
ipv6 {
address {
}
dup-addr-detect-transmits 1
enable {
}
}
mtu 1492
name-server auto
password ****************
user-id el6@a.2
}
speed auto
}
ethernet eth2 {
address 185.19.148.41/30
address 2a04:ebc0:748:2:3::1/112
description svc0
duplex auto
speed auto
}
ethernet eth3 {
address 2a04:ebc0:748:201::1/64
description "sw0 port 26"
duplex auto
speed auto
}
ethernet eth4 {
description "Core: PtP Cowshed to LlwynYGorras"
duplex auto
ip {
ospf {
cost 50
dead-interval 40
hello-interval 10
network point-to-point
priority 1
retransmit-interval 5
transmit-delay 1
}
}
ipv6 {
dup-addr-detect-transmits 1
ospfv3 {
cost 50
dead-interval 40
hello-interval 10
instance-id 0
priority 1
retransmit-interval 5
transmit-delay 1
}
}
speed auto
}
ethernet eth5 {
description svc1
duplex auto
speed auto
}
ethernet eth6 {
duplex auto
speed auto
}
ethernet eth7 {
address 185.19.148.89/30
description "temp to rt1.cowshed"
duplex auto
ip {
ospf {
cost 10
dead-interval 40
hello-interval 10
network point-to-point
priority 1
retransmit-interval 5
transmit-delay 1
}
}
speed auto
}
loopback lo {
address 185.19.148.1/32
address 2a04:ebc0:748:1::1/128
address 185.19.150.68/32
address 2a04:ec40:e004::1/128
}
}
policy {
community-list 66 {
description rtbh-in
rule 1 {
action permit
regex 60036:666
}
}
community-list 100 {
description transit-out
rule 1 {
action permit
regex 60036:8001
}
rule 2 {
action permit
regex 60036:9000
}
}
prefix-list all-v4 {
rule 10 {
action permit
le 32
prefix 0.0.0.0/0
}
}
prefix-list slash24orless-v4 {
rule 10 {
action permit
le 24
prefix 0.0.0.0/0
}
}
prefix-list6 all-v6 {
rule 10 {
action permit
le 128
prefix ::/0
}
}
prefix-list6 slash48orless-v6 {
rule 10 {
action permit
le 48
prefix ::/0
}
}
route-map deny-all-v4 {
rule 10 {
action deny
match {
ip {
address {
prefix-list all-v4
}
}
}
}
}
route-map deny-all-v6 {
rule 10 {
action deny
match {
ipv6 {
address {
prefix-list all-v6
}
}
}
}
}
route-map originated-internal-v4-map {
rule 10 {
action permit
set {
community "60036:4004 60036:8000 60036:8002"
}
}
}
route-map originated-internal-v6-map {
rule 10 {
action permit
set {
community "60036:4004 60036:8000 60036:8002"
}
}
}
route-map originated-supernet-v4-map {
rule 10 {
action permit
set {
community "60036:4004 60036:8000 60036:8001"
}
}
}
route-map originated-supernet-v6-map {
rule 10 {
action permit
set {
community "60036:4004 60036:8000 60036:8001"
}
}
}
route-map rtbh-in {
rule 1 {
action permit
match {
community {
community-list 66
}
}
set {
ip-next-hop 192.0.2.1
}
}
}
route-map transit-aaisp-v4-in-map {
rule 10 {
action permit
set {
community "60036:1000 60036:1001 60036:4004"
}
}
}
route-map transit-aaisp-v4-out-map {
rule 10 {
action permit
match {
community {
community-list 100
}
ip {
address {
prefix-list slash24orless-v4
}
}
}
}
}
route-map transit-aaisp-v6-in-map {
rule 10 {
action permit
set {
community "60036:1000 60036:1001 60036:4004"
}
}
}
route-map transit-aaisp-v6-out-map {
rule 10 {
action permit
match {
community {
community-list 100
}
ipv6 {
address {
prefix-list slash48orless-v6
}
}
}
}
}
}
protocols {
bgp 60036 {
address-family {
ipv6-unicast {
network 2A04:EBC0:700::/40 {
route-map originated-supernet-v6-map
}
network 2A04:EBC0:714::/48 {
route-map originated-supernet-v6-map
}
network 2A04:EBC0:748::/48 {
route-map originated-supernet-v6-map
}
network 2A04:EBC0:766::/48 {
route-map originated-supernet-v6-map
}
network 2a04:ebc0:714:201::/64 {
route-map originated-internal-v6-map
}
network 2a04:ebc0:748:2:3::/112 {
route-map originated-internal-v6-map
}
network 2a04:ebc0:748:200::/64 {
}
network 2a04:ebc0:748:201::/64 {
route-map originated-internal-v6-map
}
}
}
neighbor 90.155.53.61 {
description aaisp1
ebgp-multihop 4
maximum-prefix 500
remote-as 20712
remove-private-as
route-map {
export transit-aaisp-v4-out-map
import transit-aaisp-v4-in-map
}
soft-reconfiguration {
inbound
}
update-source 185.19.150.68
}
neighbor 90.155.53.62 {
description aaisp2
ebgp-multihop 4
maximum-prefix 500
remote-as 20712
remove-private-as
route-map {
export transit-aaisp-v4-out-map
import transit-aaisp-v4-in-map
}
soft-reconfiguration {
inbound
}
update-source 185.19.150.68
}
neighbor 185.19.148.2 {
description rt1.cowshed
maximum-prefix 1000
nexthop-self
remote-as 60036
update-source 185.19.148.1
}
neighbor 185.19.148.3 {
description rt3.gorras
maximum-prefix 1000
nexthop-self
remote-as 60036
update-source 185.19.148.1
}
neighbor 185.19.148.5 {
description rt1.jordanston
maximum-prefix 1000
nexthop-self
remote-as 60036
update-source 185.19.148.1
}
neighbor 185.19.148.8 {
description rt1.maildy
maximum-prefix 1000
nexthop-self
remote-as 60036
update-source 185.19.148.1
}
neighbor 185.19.148.9 {
description rt1.treddafydd
maximum-prefix 1000
nexthop-self
remote-as 60036
update-source 185.19.148.1
}
neighbor 185.19.148.11 {
description reflector1
maximum-prefix 1000
nexthop-self
remote-as 60036
update-source 185.19.148.1
}
neighbor 185.19.148.12 {
description reflector2
maximum-prefix 1000
nexthop-self
remote-as 60036
update-source 185.19.148.1
}
neighbor 185.19.148.13 {
description reflector3
maximum-prefix 1000
nexthop-self
remote-as 60036
update-source 185.19.148.1
}
neighbor 185.19.148.14 {
description hotspotgw1
maximum-prefix 1000
nexthop-self
remote-as 60036
update-source 185.19.148.1
}
neighbor 185.19.148.42 {
remote-as 65534
}
neighbor 185.61.112.65 {
maximum-prefix 1000
nexthop-self
remote-as 60036
update-source 185.19.148.1
}
neighbor 185.61.112.70 {
maximum-prefix 1000
nexthop-self
remote-as 60036
update-source 185.19.148.1
}
neighbor 185.61.112.71 {
maximum-prefix 1000
nexthop-self
remote-as 60036
update-source 185.19.148.1
}
neighbor 185.61.112.72 {
maximum-prefix 1000
nexthop-self
remote-as 60036
update-source 185.19.148.1
}
neighbor 2a04:ebc0:748:2:3::2 {
address-family {
ipv6-unicast {
maximum-prefix 1000
}
}
no-activate
remote-as 65534
}
neighbor 2a04:ebc0:766:1::65 {
address-family {
ipv6-unicast {
maximum-prefix 1000
nexthop-self
}
}
no-activate
remote-as 60036
route-map {
import deny-all-v4
}
update-source lo
}
neighbor 2a04:ebc0:766:1::70 {
address-family {
ipv6-unicast {
maximum-prefix 1000
nexthop-self
}
}
no-activate
remote-as 60036
route-map {
import deny-all-v4
}
update-source lo
}
neighbor 2a04:ebc0:766:1::71 {
address-family {
ipv6-unicast {
maximum-prefix 1000
nexthop-self
}
}
no-activate
remote-as 60036
route-map {
import deny-all-v4
}
update-source lo
}
neighbor 2a04:ebc0:766:1::72 {
address-family {
ipv6-unicast {
maximum-prefix 1000
nexthop-self
}
}
no-activate
remote-as 60036
route-map {
import deny-all-v4
}
update-source lo
}
neighbor 2001:8b0:0:53::61 {
address-family {
ipv6-unicast {
maximum-prefix 500
route-map {
export transit-aaisp-v6-out-map
import transit-aaisp-v6-in-map
}
}
}
ebgp-multihop 4
maximum-prefix 500
no-activate
remote-as 20712
remove-private-as
soft-reconfiguration {
inbound
}
update-source 2a04:ec40:e004::1
}
neighbor 2001:8b0:0:53::62 {
address-family {
ipv6-unicast {
maximum-prefix 500
route-map {
export transit-aaisp-v6-out-map
import transit-aaisp-v6-in-map
}
}
}
ebgp-multihop 4
maximum-prefix 500
no-activate
remote-as 20712
remove-private-as
soft-reconfiguration {
inbound
}
update-source 2a04:ec40:e004::1
}
network 185.19.148.32/30 {
route-map originated-internal-v4-map
}
network 185.19.148.40/30 {
route-map originated-internal-v4-map
}
network 185.19.148.52/30 {
route-map originated-internal-v4-map
}
network 185.19.148.96/30 {
}
parameters {
default {
}
router-id 185.19.148.1
}
}
ospf {
area 0 {
network 185.19.148.1/32
network 185.19.148.88/30
}
parameters {
abr-type cisco
router-id 185.19.148.1
}
}
ospfv3 {
area 0.0.0.0 {
interface eth4
interface lo
}
parameters {
router-id 185.19.148.1
}
}
static {
interface-route 0.0.0.0/0 {
next-hop-interface pppoe1 {
}
}
interface-route 90.155.53.60/32 {
next-hop-interface pppoe0 {
}
next-hop-interface pppoe1 {
}
}
interface-route 90.155.53.61/32 {
next-hop-interface pppoe0 {
}
next-hop-interface pppoe1 {
}
}
interface-route 90.155.53.62/32 {
next-hop-interface pppoe0 {
}
next-hop-interface pppoe1 {
}
}
interface-route6 ::/0 {
next-hop-interface pppoe0 {
}
next-hop-interface pppoe1 {
}
}
interface-route6 2001:8b0:0:53::60/128 {
next-hop-interface pppoe0 {
}
next-hop-interface pppoe1 {
}
}
interface-route6 2001:8b0:0:53::61/128 {
next-hop-interface pppoe0 {
}
next-hop-interface pppoe1 {
}
}
interface-route6 2001:8b0:0:53::62/128 {
next-hop-interface pppoe0 {
}
next-hop-interface pppoe1 {
}
}
route 185.19.148.98/32 {
next-hop 185.19.148.90 {
}
}
route 185.19.149.98/32 {
next-hop 185.19.148.90 {
}
}
route 186.129.138.69/32 {
blackhole {
description anycastddos
}
}
route 192.0.2.1/32 {
blackhole {
}
}
route 195.147.56.40/32 {
blackhole {
description anycastddos
}
}
route6 2A04:EBC0:700::/40 {
blackhole {
}
}
route6 2A04:EBC0:714::/48 {
blackhole {
}
}
route6 2A04:EBC0:748::/48 {
blackhole {
}
}
route6 2A04:EBC0:766::/48 {
blackhole {
}
}
route6 2a04:ebc0:714:201::/64 {
blackhole {
}
}
route6 2a04:ebc0:748:201::/64 {
blackhole {
}
}
}
}
service {
dhcp-server {
disabled true
hostfile-update disable
use-dnsmasq disable
}
gui {
http-port 80
https-port 443
older-ciphers enable
}
lldp {
interface all {
}
}
snmp {
community <hidden> {
authorization ro
}
}
ssh {
port 22
protocol-version v2
}
}
system {
host-name rt0-cowshed
login {
user nat {
authentication {
encrypted-password ****************
plaintext-password ****************
}
level admin
}
user neil {
authentication {
encrypted-password ****************
plaintext-password ****************
}
level admin
}
user oxidized-prod {
authentication {