blob: c1edcf155bf9ee8627080cd616d3e02e32b5c9f2 (
plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
|
## Last changed: 2019-04-18 15:01:18 CEST
## Image name: jinstall-host-qfx-5-17.3R3.10-signed.tgz
version 17.3R3.10;
system {
host-name r1.tele;
# Tar snapshot fra backup til primærpartisjon dersom primær ikke kommer
# opp ved boot. Etter dette er gjort, rebooter switchen.
auto-snapshot;
domain-name tg19.gathering.org;
time-zone Europe/Oslo;
authentication-order tacplus;
root-authentication {
encrypted-password "<removed>";
}
name-server {
2a06:5841:a:103::62;
2a06:5841:a:104::126;
}
tacplus-server {
134.90.150.164 secret "<removed>";
2a02:20c8:1930::164 secret "<removed>";
}
login {
user technet {
uid 2000;
class super-user;
authentication {
encrypted-password "<removed>";
}
}
}
services {
ssh {
root-login deny;
no-tcp-forwarding;
protocol-version v2;
client-alive-count-max 2;
client-alive-interval 300;
connection-limit 50;
rate-limit 5;
}
netconf {
ssh {
port 830;
}
}
dhcp-local-server {
traceoptions {
file log-dhcp size 10000000;
flag all;
}
dhcpv6 {
group tele-v6 {
interface irb.103;
}
}
group tele-v4 {
interface irb.103;
}
}
}
syslog {
user * {
any emergency;
}
host log.tg19.gathering.org {
any warning;
authorization info;
daemon warning;
user warning;
change-log any;
interactive-commands any;
match "!(.*License.*)";
allow-duplicates;
facility-override local7;
explicit-priority;
}
/* Local logging of syslog message */
file messages {
any notice;
authorization info;
match "!(.*License.*)";
}
/* Local logging of all user-commands typed in the CLI */
file interactive-commands {
interactive-commands any;
match "UI_CMDLINE_READ_LINE|UI_COMMIT_COMPLETED";
}
}
/* Save changes to central site */
archival {
configuration {
transfer-on-commit;
archive-sites {
"scp://user@host/some/folder/" password "<removed>";
}
}
}
commit synchronize;
ntp {
/* ntp.uio.no */
server 2001:700:100:2::6;
}
}
chassis {
redundancy {
graceful-switchover;
}
aggregated-devices {
ethernet {
device-count 50;
}
}
alarm {
management-ethernet {
link-down ignore;
}
}
}
services {
analytics {
resource {
system {
polling-interval {
traffic-monitoring 10;
}
}
}
streaming-server telemetry_server {
remote-address 185.110.149.4;
remote-port 5015;
}
export-profile export_20302 {
local-address 185.110.148.64;
local-port 20302;
reporting-rate 60;
format gpb;
transport udp;
}
sensor junos_system_linecard_interface {
server-name telemetry_server;
export-name export_20302;
resource /junos/system/linecard/interface/;
}
sensor junos_system_linecard_interface_logical_usage {
server-name telemetry_server;
export-name export_20302;
resource /junos/system/linecard/interface/logical/usage/;
}
sensor optics {
server-name telemetry_server;
export-name export_20302;
resource /junos/system/linecard/optics/;
}
}
}
security {
ssh-known-hosts {
host <removed> {
ecdsa-sha2-nistp256-key <removed>;
}
}
}
interfaces {
interface-range all-ports {
member ge-*/*/*;
member xe-*/*/*;
member et-*/*/*;
}
ge-0/0/0 {
description "C: Taempnett Tele";
unit 0 {
family ethernet-switching {
interface-mode access;
vlan {
members testnett;
}
}
}
}
ge-0/0/1 {
description "C: Tempnett Tele";
unit 0 {
family ethernet-switching {
interface-mode access;
vlan {
members testnett;
}
}
}
}
ge-0/0/10 {
description TeleCam;
unit 0 {
family ethernet-switching {
vlan {
members testnett;
}
}
}
}
xe-0/0/24 {
ether-options {
802.3ad ae5;
}
}
xe-0/0/25 {
ether-options {
802.3ad ae8;
}
}
ge-0/0/34 {
description "C: ME IPME";
unit 0 {
family ethernet-switching {
vlan {
members vlan100;
}
}
}
}
xe-0/0/41 {
description "G: r1.tele (xe-0/0/42) loop-kabel for redundans";
ether-options {
802.3ad ae7;
}
}
xe-0/0/42 {
description "G: r1.tele (xe-0/0/41) loop-kabel for redundans";
ether-options {
802.3ad ae6;
}
}
xe-0/0/43 {
description "G: r1.tele (xe-0/0/44) loop-kabel for redundans";
ether-options {
802.3ad ae7;
}
}
xe-0/0/44 {
description "G: r1.tele (xe-0/0/43) loop-kabel for redundans";
ether-options {
802.3ad ae6;
}
}
xe-0/0/45 {
description "G: Telenor (ae0)";
ether-options {
802.3ad ae0;
}
}
xe-0/0/46 {
description "G: Telenor (ae0)";
ether-options {
802.3ad ae0;
}
}
xe-0/0/47 {
description "G: Telenor (ae0)";
ether-options {
802.3ad ae0;
}
}
et-0/0/50 {
description "G: r1.ring (ae3)";
ether-options {
802.3ad ae3;
}
}
et-0/0/51 {
description "G: r1.noc (ae0)";
ether-options {
802.3ad ae2;
}
}
et-0/0/52 {
description "G: fw.tele (X)";
ether-options {
802.3ad ae1;
}
}
et-0/0/53 {
description "G: r1.stand (ae4)";
ether-options {
802.3ad ae4;
}
}
ge-1/0/0 {
description "C: Taempnett Tele";
unit 0 {
family ethernet-switching {
interface-mode access;
vlan {
members testnett;
}
}
}
}
ge-1/0/1 {
description "C: Tempnett Tele";
unit 0 {
family ethernet-switching {
interface-mode access;
vlan {
members testnett;
}
}
}
}
xe-1/0/24 {
ether-options {
802.3ad ae5;
}
}
xe-1/0/25 {
ether-options {
802.3ad ae8;
}
}
ge-1/0/34 {
description "C: GREATGIVING IPME";
unit 0 {
family ethernet-switching {
vlan {
members vlan100;
}
}
}
}
xe-1/0/41 {
description "G: r1.tele (xe-1/0/42) loop-kabel for redundans";
ether-options {
802.3ad ae7;
}
}
xe-1/0/42 {
description "G: r1.tele (xe-1/0/41) loop-kabel for redundans";
ether-options {
802.3ad ae6;
}
}
xe-1/0/43 {
description "G: r1.tele (xe-1/0/44) loop-kabel for redundans";
ether-options {
802.3ad ae7;
}
}
xe-1/0/44 {
description "G: r1.tele (xe-1/0/43) loop-kabel for redundans";
ether-options {
802.3ad ae6;
}
}
xe-1/0/45 {
description "G: Telenor (ae0)";
disable;
ether-options {
802.3ad ae0;
}
}
xe-1/0/46 {
description "G: Telenor (ae0)";
ether-options {
802.3ad ae0;
}
}
xe-1/0/47 {
description "G: Telenor (ae0)";
ether-options {
802.3ad ae0;
}
}
et-1/0/50 {
description "G: r1.ring (ae3)";
ether-options {
802.3ad ae3;
}
}
et-1/0/51 {
description "G: r1.noc (ae0)";
ether-options {
802.3ad ae2;
}
}
et-1/0/52 {
description "G: fw1.tele (X)";
ether-options {
802.3ad ae1;
}
}
et-1/0/53 {
description "G: r1.stand (ae4)";
ether-options {
802.3ad ae4;
}
}
ae0 {
description "P: Telenor";
aggregated-ether-options {
lacp {
active;
}
}
unit 0 {
family inet {
filter {
input internet-ingress-v4;
output internet-egress-v4;
}
address 193.212.22.2/30;
}
family inet6 {
filter {
input internet-ingress-v6;
output internet-egress-v6;
}
address 2001:4600:9:300::292/126;
}
}
}
ae1 {
description "B: fw1.tele";
vlan-tagging;
encapsulation flexible-ethernet-services;
aggregated-ether-options {
lacp {
active;
}
}
unit 11 {
description "B: fw1.tele outside";
vlan-id 11;
family inet {
address 185.110.148.128/31;
}
family inet6 {
address 2a06:5841:f:f01::/127;
}
}
unit 12 {
description "B: fw1.tele inside";
vlan-id 12;
family inet {
address 185.110.148.130/31;
}
family inet6 {
address 2a06:5841:f:f02::/127;
}
}
}
ae2 {
description "B: r1.noc ae0";
aggregated-ether-options {
lacp {
active;
}
}
unit 0 {
family inet {
address 185.110.148.134/31;
}
family inet6 {
address 2a06:5841:f:f04::/127;
}
}
}
ae3 {
description "B: r1.ring ae3";
aggregated-ether-options {
lacp {
active;
}
}
unit 0 {
family inet {
address 185.110.148.132/31;
}
family inet6 {
address 2a06:5841:f:f03::/127;
}
}
}
ae4 {
description "B: r1.stand ae1";
aggregated-ether-options {
lacp {
active;
}
}
unit 0 {
family inet {
address 185.110.148.138/31;
}
family inet6 {
address 2a06:5841:f:f06::/127;
}
}
}
ae5 {
description "C: me bond0";
vlan-tagging;
encapsulation flexible-ethernet-services;
aggregated-ether-options {
lacp {
active;
}
}
unit 0 {
family ethernet-switching {
interface-mode trunk;
vlan {
members [ vlan100 vlan101 vlan102 ];
}
}
}
}
ae6 {
description "G: r1.tele (ae7) loop-kabel for redundans";
unit 0 {
family inet {
address 185.110.148.162/31;
}
family inet6 {
address 2a06:5841:f:f12::/127;
}
}
}
ae7 {
description "G: r1.tele (ae6) loop-kabel for redundans";
unit 0 {
family inet {
address 185.110.148.163/31;
}
family inet6 {
address 2a06:5841:f:f12::1/127;
}
}
}
ae8 {
description "C: greatgiving.tele";
vlan-tagging;
encapsulation flexible-ethernet-services;
aggregated-ether-options {
lacp {
active;
}
}
unit 0 {
family ethernet-switching {
interface-mode trunk;
vlan {
members [ vlan100 vlan101 vlan102 ];
}
}
}
}
em0 {
unit 0 {
family inet {
dhcp;
}
}
}
em1 {
unit 0 {
family inet {
address 169.254.0.2/24;
}
}
}
irb {
unit 100 {
description "C: Tele VM hosts vlan 100";
family inet {
address 185.110.149.129/27;
}
family inet6 {
address 2a06:5841:a:101::1/64;
}
}
unit 101 {
description "C: Tele tech-vm vlan 101";
family inet {
address 185.110.149.1/26;
}
family inet6 {
address 2a06:5841:a:103::1/64;
}
}
unit 102 {
description "C: Tele misc-vm vlan 102";
family inet {
address 88.92.16.1/24;
}
family inet6 {
address 2a06:5841:a:201::1/64;
}
}
unit 103 {
family inet {
address 185.110.148.33/27;
}
family inet6 {
address 2a06:5841:a:301::1/64;
}
}
}
lo0 {
unit 0 {
family inet {
filter {
input mgmt-v4;
}
address 127.0.0.1/32;
address 185.110.148.64/32;
}
family inet6 {
filter {
input mgmt-v6;
}
address ::1/128;
address 2a06:5841:f:e::64/128;
}
}
}
}
snmp {
contact NOC;
community <removed> {
authorization read-only;
client-list-name mgmt;
}
community <removed> {
authorization read-only;
client-list-name mgmt;
}
}
forwarding-options {
storm-control-profiles default {
all;
}
}
routing-options {
nonstop-routing;
rib inet6.0 {
static {
route 2a06:5840::/29 discard;
}
}
rib inet.0 {
static {
route 185.110.148.0/22 discard;
route 88.92.0.0/17 discard;
}
}
autonomous-system 21067;
}
protocols {
igmp {
interface irb.100 {
version 2;
}
}
router-advertisement {
interface irb.103 {
managed-configuration;
other-stateful-configuration;
}
}
ospf {
export [ direct-to-ospf static-to-ospf ];
reference-bandwidth 1000g;
area 0.0.0.0 {
interface ae1.12;
interface ae2.0;
interface ae4.0;
interface ae3.0;
interface ae6.0;
}
}
ospf3 {
export [ direct-to-ospf static-to-ospf ];
reference-bandwidth 1000g;
area 0.0.0.0 {
interface ae1.12;
interface ae2.0;
interface ae4.0;
interface ae3.0;
interface ae6.0;
}
}
lldp {
interface all;
}
lldp-med {
interface all;
}
igmp-snooping {
vlan default;
}
sflow {
agent-id 185.110.148.64;
sample-rate {
ingress 10000;
egress 10000;
}
collector <removed>;
collector 185.110.149.139 {
udp-port 6343;
}
interfaces all-ports;
}
}
policy-options {
prefix-list mgmt-v4 {
}
prefix-list mgmt-v6 {
}
/* Merged separate v4- og v6-lister */
prefix-list mgmt {
apply-path "policy-options prefix-list <mgmt-v*> <*>";
}
policy-statement default-v4 {
term default-only {
from {
route-filter 0.0.0.0/0 exact;
}
then accept;
}
term reject-all {
then reject;
}
}
policy-statement default-v6 {
term default-only {
from {
route-filter ::/0 exact;
}
then accept;
}
term reject-all {
then reject;
}
}
policy-statement direct-to-ospf {
from protocol direct;
then {
external {
type 1;
}
accept;
}
}
policy-statement static-to-ospf {
from protocol static;
then {
external {
type 1;
}
accept;
}
}
policy-statement telenor-in-v4 {
term accept-default {
from {
route-filter 0.0.0.0/0 exact;
}
then accept;
}
term reject-all {
then reject;
}
}
policy-statement telenor-in-v6 {
term accept-default {
from {
route-filter ::/0 exact;
}
then accept;
}
term reject-all {
then reject;
}
}
policy-statement telenor-out-v4 {
term accept-our-routes {
from {
route-filter 88.92.0.0/17 exact;
route-filter 194.143.120.0/21 upto /24;
route-filter 185.110.148.0/22 upto /24;
}
then accept;
}
term reject-all {
then reject;
}
}
policy-statement telenor-out-v6 {
term accept-our-routes {
from {
route-filter 2a06:5840::/29 exact;
route-filter 2001:4610:7617::/48 exact;
}
then accept;
}
term reject-all {
then reject;
}
}
}
firewall {
family inet {
filter mgmt-v4 {
term accept-ssh {
from {
source-prefix-list {
mgmt-v4;
}
destination-port 22;
}
then accept;
}
term discard-ssh {
from {
destination-port 22;
}
then {
discard;
}
}
term accept-all {
then accept;
}
}
filter internet-ingress-v4 {
interface-specific;
term count-our {
from {
source-address {
88.92.0.0/17;
185.110.148.0/22;
}
}
then {
count count-our;
accept;
}
}
term accept-all {
then {
count accept-all;
accept;
}
}
}
filter internet-egress-v4 {
interface-specific;
term accept-all {
then {
count accept-all;
accept;
}
}
}
}
family inet6 {
filter mgmt-v6 {
term accept-ssh {
from {
source-prefix-list {
mgmt-v6;
}
destination-port 22;
}
then accept;
}
term discard-ssh {
from {
destination-port 22;
}
then discard;
}
term accept-all {
then accept;
}
}
filter internet-ingress-v6 {
interface-specific;
term accept-all {
then {
count accept-all;
accept;
}
}
}
filter internet-egress-v6 {
interface-specific;
term accept-all {
then {
count accept-all;
accept;
}
}
}
}
}
access {
address-assignment {
pool tele-v4 {
family inet {
network 185.110.148.32/27;
range tele-v4 {
low 185.110.148.34;
high 185.110.148.63;
}
dhcp-attributes {
name-server {
1.1.1.1;
}
router {
185.110.148.33;
}
}
}
}
pool tele-v6 {
family inet6 {
prefix 2a06:5841:a:301::0/64;
range tele-v6 {
low 2a06:5841:a:301::1337:1337:1/128;
high 2a06:5841:a:301::1337:1337:ffff/128;
}
dhcp-attributes {
dns-server {
2001:4860:4860::8888;
2001:4860:4860::8844;
}
}
}
}
}
}
routing-instances {
internet {
instance-type vrf;
interface ae0.0;
interface ae1.11;
interface ae7.0;
interface lo0.0;
route-distinguisher 21067:2;
vrf-target target:21067:2;
routing-options {
rib internet.inet.0 {
static {
route 88.92.58.128/25 next-hop 88.92.58.1;
route 88.92.0.0/17 discard;
route 185.110.148.0/22 discard;
route 194.143.120.0/21 discard;
}
}
rib internet.inet6.0 {
static {
route 2a06:5840::/29 discard;
route 2001:4610:7617::/48 discard;
route 2001:4610:7618::/48 discard;
}
}
router-id 185.110.148.64;
}
protocols {
bgp {
group telenor {
authentication-key "<removed>";;
peer-as 2119;
neighbor 193.212.22.1 {
import telenor-in-v4;
export telenor-out-v4;
}
neighbor 2001:4600:9:300::291 {
import telenor-in-v6;
export telenor-out-v6;
}
}
}
ospf {
export [ direct-to-ospf static-to-ospf default-v4 ];
reference-bandwidth 1000g;
area 0.0.0.0 {
interface ae1.11;
interface ae7.0;
}
}
ospf3 {
export [ direct-to-ospf static-to-ospf default-v6 ];
reference-bandwidth 1000g;
area 0.0.0.0 {
interface ae1.11;
interface ae7.0;
}
}
}
}
}
virtual-chassis {
preprovisioned;
no-split-detection;
member 0 {
role routing-engine;
serial-number <removed>;
}
member 1 {
role routing-engine;
serial-number <removed>;
}
}
vlans {
testnett {
description testnett-tele;
vlan-id 103;
l3-interface irb.103;
}
vlan100 {
vlan-id 100;
l3-interface irb.100;
}
vlan101 {
vlan-id 101;
l3-interface irb.101;
}
vlan102 {
vlan-id 102;
l3-interface irb.102;
}
}
|