-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathex_template.j2
More file actions
1167 lines (1165 loc) · 36.6 KB
/
ex_template.j2
File metadata and controls
1167 lines (1165 loc) · 36.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
#jinja2: lstrip_blocks: "True", trim_blocks: "True"
{%- macro vl300_int(fpc,port) -%}
ge-{{fpc}}/0/{{port}} {
unit 0 {
family ethernet-switching {
interface-mode access;
vlan {
members VL300_WIRED;
}
}
}
}
{%- endmacro %}
{%- macro vl300_old_int(fpc,port) -%}
ge-{{fpc}}/0/{{port}} {
unit 0 {
family ethernet-switching {
port-mode access;
vlan {
members VL300_WIRED;
}
}
}
}
{%- endmacro %}
{%- macro vl300_int_4600(fpc,port) -%}
xe-{{fpc}}/0/{{port}} {
unit 0 {
family ethernet-switching {
interface-mode access;
vlan {
members VL300_WIRED;
}
}
}
}
{%- endmacro %}
#############################################
# CTRL+H (Find & Replace)
#############################################
# {{data['<HOSTNAME>']}} - Switch hostname
# {{data['<LOOPBACK>']}} - Loopback IP Address w/o Subnet (I.e. 10.249.24.1)
# {{data['<AE_COUNT>']}} - Access switch count + 2 (EF0x)
# {{data['<EF01_HOSTNAME>']}} - EF01 Hostname
# {{data['<VL300_IP>']}} - VL300 IP Address w/o Subnet
# {{data['<VL300_BM>']}} - VL300 Subnet Mask in Bits
# {{data['<VL300_NW>']}} - VLAN 300 Network Address
# {{data['<VL300_DHCP_LOW>']}} - VLAN 300 DHCP Low-end IP Address
# {{data['<VL300_DHCP_HIGH>']}} - VLAN 300 DHCP High-end IP address
# {{data['<VL310_IP>']}} - VL310 IP Address w/o Subnet
# {{data['<VL310_BM>']}} - VL310 Subnet Mask in Bits
# {{data['<VL310_NW>']}} - VLAN 310 Network Address
# {{data['<VL310_DHCP_LOW>']}} - VLAN 310 DHCP Low-end IP Address
# {{data['<VL310_DHCP_HIGH>']}} - VLAN 310 DHCP High-end IP address
# {{data['<VL311_IP>']}} - VL311 IP Address w/o Subnet
# {{data['<VL311_BM>']}} - VL311 Subnet Mask in Bits
# {{data['<VL311_NW>']}} - VLAN 311 Network Address
# {{data['<VL311_DHCP_LOW>']}} - VLAN 311 DHCP Low-end IP Address
# {{data['<VL311_DHCP_HIGH>']}} - VLAN 311 DHCP High-end IP address
# {{data['<VL320_IP>']}} - VL320 IP Address w/o Subnet
# {{data['<VL320_BM>']}} - VL320 Subnet Mask in Bits
# {{data['<VL320_NW>']}} - VLAN 320 Network Address
# {{data['<VL320_DHCP_LOW>']}} - VLAN 320 DHCP Low-end IP Address
# {{data['<VL320_DHCP_HIGH>']}} - VLAN 320 DHCP High-end IP address
# {{data['<VL330_IP>']}} - VL330 IP Address w/o Subnet
# {{data['<VL330_BM>']}} - VL330 Subnet Mask in Bits
# {{data['<VL330_NW>']}} - VLAN 330 Network Address
# {{data['<VL901_EF01>']}} - VL989 IP Address w/o Subnet
# {{data['<VL901_CS01>']}} - VL989 EF01 IP Address
# {{data['<CS_N0_SN>']}} - Member 0 serial number
# {{data['<CS_N1_SN>']}} - Member 1 serial number
# {{data['<CS_N2_SN>']}} - Member 2 serial number
# {{data['<CS_N3_SN>']}} - Member 3 serial number
# {{data['<VC_N0_SN>']}} - Member 0 serial number
# {{data['<VC_N1_SN>']}} - Member 1 serial number
# {{data['<VC_N2_SN>']}} - Member 2 serial number
# {{data['<VC_N3_SN>']}} - Member 3 serial number
#############################################
system {
host-name {{data['<HOSTNAME>']}};
auto-snapshot;
domain-name dynutil.com;
{%- if data['<CORE>'] in ['EX4300-24p', 'EX4300-48p', 'EX4600-24p'] and data['<VC_CORE>'] != 1%}
switchover-on-routing-crash;
{%- endif %}
internet-options {
path-mtu-discovery;
}
authentication-order radius;
ports {
console {
authentication-order radius;
log-out-on-disconnect;
}
{% if data['<CORE>'] not in ['EX2200-24p', 'EX2200-48p'] or data['<SWITCH>'] not in ['EX2200-24p', 'EX2200-48p'] %}
auxiliary port-type mini-usb;
{% endif %}
}
root-authentication {
encrypted-password ""; ## SECRET-DATA
}
name-server {
10.3.33.55;
}
radius-server {
10.132.8.128 {
port 1812;
secret :"; ## SECRET-DATA
timeout 1;
{%- if data['<ACCESS>'] == 'No' %}
source-address {{data['<LOOPBACK>']}};
{%- endif %}
{%- if data['<ACCESS>'] == 'Yes' %}
source-address {{data['<ACCESSIP>']}};
{%- endif %}
}
10.132.10.152 {
port 1812;
secret ""; ## SECRET-DATA
timeout 1;
{%- if data['<ACCESS>'] == 'No' %}
source-address {{data['<LOOPBACK>']}};
{%- endif %}
{%- if data['<ACCESS>'] == 'Yes' %}
source-address {{data['<ACCESSIP>']}};
{%- endif %}
}
}
accounting {
events [ login change-log interactive-commands ];
destination {
radius;
}
}
login {
message "\n\nWARNING: Restricted System, Property of . or its subsidiaries.\nThis computer system is for OFFICIAL USE ONLY by specifically authorized \npersonnel and includes confidential, proprietary and privileged information. \nThis system may be subject to monitoring. No expectation of privacy is to be \nassumed. Unauthorized attempts to upload, download or change information on \nthis system or other unauthorized activities are subject to disciplinary action \nincluding termination and criminal and civil prosecution. By continuing to use \nthis system you indicate your awareness of and consent to these terms and \nconditions of use.\n\n\n";
retry-options {
tries-before-disconnect 3;
backoff-threshold 1;
backoff-factor 5;
lockout-period 10;
}
user remote {
full-name "RADIUS Remote Users";
uid 2100;
class super-user;
}
}
services {
ssh {
root-login deny;
no-tcp-forwarding;
protocol-version v2;
max-sessions-per-connection 10;
{% if data['<CORE>'] not in ['EX2200-12p', 'EX2200-24p', 'EX2200-48p'] or data['<SWITCH>'] not in ['EX2200-12p', 'EX2200-24p', 'EX2200-48p'] %}
sftp-server;
{% endif %}
{%- if data['<CORE>'] in ['EX4300-24p', 'EX4300-48p', 'EX4600-24p'] or data['<SWITCH>'] in ['EX4300-24p', 'EX4300-48p'] %}
ciphers [ aes256-ctr "aes256-gcm@openssh.com" "chacha20-poly1305@openssh.com" ];
macs [ "umac-128-etm@openssh.com" hmac-sha2-256 "hmac-sha2-256-etm@openssh.com" "hmac-sha2-512-etm@openssh.com" ];
key-exchange [ curve25519-sha256 group-exchange-sha2 ];
{%- endif %}
{%- if data['<CORE>'] in ['EX2200-12p', 'EX2200-24p', 'EX2200-48p', 'EX2300-12p', 'EX2300-24p', 'EX2300-48p', 'EX4300-24p', 'EX4300-48p', 'EX4600-24p'] or data['<SWITCH>'] in ['EX2200-12p', 'EX2200-24p', 'EX2200-48p', 'EX2300-12p', 'EX2300-24p', 'EX2300-48p', 'EX4300-24p', 'EX4300-48p'] %}
ciphers [ aes256-ctr aes256-cbc ];
macs hmac-sha2-256;
key-exchange [ group-exchange-sha2 ecdh-sha2-nistp256 ecdh-sha2-nistp384 ecdh-sha2-nistp521 ];
{%- endif %}
client-alive-count-max 4;
client-alive-interval 10;
hostkey-algorithm {
no-ssh-dss;
ssh-rsa;
no-ssh-ecdsa;
{%- if data['<CORE>'] in ['EX2300-12p', 'EX2300-24p', 'EX2300-48p', 'EX4300-24p', 'EX4300-48p', 'EX4600-24p'] or data['<SWITCH>'] in ['EX2300-12p', 'EX2300-24p', 'EX2300-48p', 'EX4300-24p', 'EX4300-48p'] %}
ssh-ed25519;
{%- endif %}
}
{%- if data['<CORE>'] in ['EX4300-24p', 'EX4300-48p', 'EX4600-24p'] or data['<SWITCH>'] in ['EX4300-24p', 'EX4300-48p'] %}
fingerprint-hash sha2-256;
{%- endif %}
connection-limit 30;
rate-limit 5;
}
{%- if data['<CORE>'] in ['EX2200-12p', 'EX2200-24p', 'EX2200-48p'] %}
dhcp {
pool {{data['<VL300_NW>']}}/{{data['<VL300_BM>']}} {
address-range low {{data['<VL300_DHCP_LOW>']}} high {{data['<VL300_DHCP_HIGH>']}};
domain-name dynutil.com;
name-server {
10.3.33.55;
8.8.8.8;
}
router {
{{data['<VL300_IP>']}};
}
}
pool {{data['<VL320_NW>']}}/{{data['<VL320_BM>']}} {
address-range low {{data['<VL320_DHCP_LOW>']}} high {{data['<VL320_DHCP_HIGH>']}};
domain-name dynutil.com;
name-server {
10.3.33.55;
8.8.8.8;
}
router {
{{data['<VL320_IP>']}};
}
}
pool {{data['<VL310_NW>']}}/{{data['<VL310_BM>']}} {
address-range low {{data['<VL310_DHCP_LOW>']}} high {{data['<VL310_DHCP_HIGH>']}};
domain-name dynutil.com;
name-server {
8.8.8.8;
1.1.1.1;
}
router {
{{data['<VL310_IP>']}};
}
}
pool {{data['<VL311_NW>']}}/{{data['<VL311_BM>']}} {
address-range low {{data['<VL311_DHCP_LOW>']}} high {{data['<VL311_DHCP_HIGH>']}};
domain-name dynutil.com;
name-server {
10.3.33.55;
8.8.8.8;
}
router {
{{data['<VL311_IP>']}};
}
}
}
{%- endif %}
netconf {
ssh;
}
{%- if data['<ACCESS>'] != 'Yes' and data['<CORE>'] in ['EX2300-12p', 'EX2300-24p', 'EX2300-48p', 'EX4300-24p', 'EX4300-48p', 'EX4600-24p'] %}
dhcp-local-server {
pool-match-order {
ip-address-first;
}
route-suppression {
access-internal;
}
group VL300-WIRED {
interface irb.300;
}
group VL310-VOICE {
interface irb.310;
}
group VL320-CORPWIFI {
interface irb.320;
}
group VL330-SERVERS {
interface irb.330;
}
group VL311-APMGMT {
interface irb.311;
}
}
{%- endif %}
}
syslog {
archive size 1m files 10 world-readable;
user * {
any emergency;
match "!(.*Scheduler Oinker*.|.*Frame*.|.*ms without yielding*.)";
}
host 10.3.64.68 {
any info;
authorization any;
structured-data {
brief;
}
}
host 10.3.4.27 {
any notice;
explicit-priority;
}
host 10.3.4.67 {
any info;
explicit-priority;
}
host 10.135.1.117 {
any info;
explicit-priority;
}
host 10.135.1.209 {
any info;
explicit-priority;
}
host 10.135.1.234 {
any info;
explicit-priority;
}
file messages {
any critical;
authorization info;
}
file interactive-commands {
interactive-commands info;
}
file default-log-messages {
any any;
match "(requested 'commit' operation)|(requested 'commit synchronize' operation)|(copying configuration to juniper.save)|(commit complete)|ifAdminStatus|(FRU power)|(FRU removal)|(FRU insertion)|(link UP)|transitioned|Transferred|transfer-file|(license add)|(license delete)|(package -X update)|(package -X delete)|(FRU Online)|(FRU Offline)|(plugged in)|(unplugged)|CFMD_CCM_DEFECT| LFMD_3AH | RPD_MPLS_PATH_BFD|(Master Unchanged, Members Changed)|(Master Changed, Members Changed)|(Master Detected, Members Changed)|(vc add)|(vc delete)|(Master detected)|(Master changed)|(Backup detected)|(Backup changed)|(interface vcp-)|BR_INFRA_DEVICE|(AIS_DATA_AVAILABLE)";
structured-data;
}
time-format year millisecond;
{%- if data['<ACCESS>'] == 'No' %}
source-address {{data['<LOOPBACK>']}};
{%- endif %}
{%- if data['<ACCESS>'] == 'Yes' %}
source-address {{data['<ACCESSIP>']}};
{%- endif %}
}
{%- if data['<CORE>'] in ['EX2300-24p', 'EX2300-48p', 'EX4300-24p', 'EX4300-48p', 'EX4600-24p'] %}
commit synchronize;
{%- endif %}
ntp {
server 199.255.122.221 version 4;
server 199.68.212.201 version 4;
}
}
chassis {
{%- if data['<VC_CORE>'] is in [2, 3, 4] or data['<VC>'] is in [1, 2, 3, 4] %}
redundancy {
graceful-switchover;
}
aggregated-devices {
ethernet {
device-count {{data['<AE_COUNT>']}};
}
}
{%- endif %}
alarm {
management-ethernet {
link-down ignore;
}
}
}
interfaces {
interface-range RSTP {
{%- if data['<ACCESS>'] == 'No' %}
member-range ge-0/0/0 to ge-0/0/{{data['<CORE_PORTS2>']}};
{%- endif %}
{%- if data['<ACCESS>'] == 'Yes' %}
member-range ge-0/0/0 to ge-0/0/{{data['<ACCESS_PORTS2>']}};
{%- endif %}
{%- if data['<VC_CORE>'] in [2, 3, 4] and data['<ACCESS>'] == 'No' %}
member-range ge-1/0/0 to ge-1/0/{{data['<CORE_PORTS2>']}};
{%- endif %}
{%- if data['<VC_CORE>'] in [3, 4] and data['<ACCESS>'] == 'No' %}
member-range ge-2/0/0 to ge-2/0/{{data['<CORE_PORTS2>']}};
{%- endif %}
{%- if data['<VC_CORE>'] in [4] and data['<ACCESS>'] == 'No' %}
member-range ge-3/0/0 to ge-3/0/{{data['<CORE_PORTS2>']}};
{%- endif %}
{%- if data['<VC_CORE>'] in [2, 3, 4] and data['<ACCESS>'] == 'No' %}
member-range xe-0/2/0 to xe-0/2/2;
{%- endif %}
{%- if data['<VC_CORE>'] in [2, 3, 4] and data['<ACCESS>'] == 'No' %}
member-range xe-1/2/0 to xe-1/2/2;
{%- endif %}
{%- if data['<VC_CORE>'] in [3, 4] and data['<ACCESS>'] == 'No' %}
member-range xe-2/2/0 to xe-2/2/2;
{%- endif %}
{%- if data['<VC_CORE>'] in [4] and data['<ACCESS>'] == 'No' %}
member-range xe-3/2/0 to xe-3/2/2;
{%- endif %}
{%- if data['<VC>'] in [2, 3, 4] and data['<ACCESS>'] == 'Yes' %}
member-range ge-1/0/0 to ge-1/0/{{data['<ACCESS_PORTS2>']}};
{%- endif %}
{%- if data['<VC>'] in [3, 4] and data['<ACCESS>'] == 'Yes' %}
member-range ge-2/0/0 to ge-2/0/{{data['<ACCESS_PORTS2>']}};
{%- endif %}
{%- if data['<VC>'] in [4] and data['<ACCESS>'] == 'Yes' %}
member-range ge-3/0/0 to ge-3/0/{{data['<ACCESS_PORTS2>']}};
{%- endif %}
{%- if data['<VC>'] in [2, 3, 4] and data['<ACCESS>'] == 'Yes' %}
member-range xe-0/2/0 to xe-0/2/2;
{%- endif %}
{%- if data['<VC>'] in [2, 3, 4] and data['<ACCESS>'] == 'Yes' %}
member-range xe-1/2/0 to xe-1/2/2;
{%- endif %}
{%- if data['<VC>'] in [3, 4] and data['<ACCESS>'] == 'Yes' %}
member-range xe-2/2/0 to xe-2/2/2;
{%- endif %}
{%- if data['<VC>'] in [4] and data['<ACCESS>'] == 'Yes' %}
member-range xe-3/2/0 to xe-3/2/2;
{%- endif %}
no-traps;
}
{%- if data['<ACCESS>'] == 'No' and data['<CORE>'] in ['EX4600-24p'] %}
{%- for i in range (0,data['<VC_CORE>']) %}
{%- for j in range(0,data['<CORE_PORTS>']) %}
{{ vl300_int_4600(i,j) }}
{%- endfor %}
{%- endfor %}
{%- endif %}
{%- if data['<ACCESS>'] == 'No' and data['<CORE>'] in ['EX2300-12p', 'EX2300-24p', 'EX2300-48p', 'EX4300-24p', 'EX4300-48p'] %}
{%- for i in range (0,data['<VC_CORE>']) %}
{%- for j in range(0,data['<CORE_PORTS>']) %}
{{ vl300_int(i,j) }}
{%- endfor %}
{%- endfor %}
{%- endif %}
{%- if data['<ACCESS>'] == 'Yes' and data['<SWITCH>'] in ['EX2300-12p', 'EX2300-24p', 'EX2300-48p', 'EX4300-24p', 'EX4300-48p'] %}
{%- for i in range (0,data['<VC>']) %}
{%- for j in range(0,data['<ACCESS_PORTS>']) %}
{{ vl300_int(i,j) }}
{%- endfor %}
{%- endfor %}
{%- endif %}
{%- if data['<ACCESS>'] == 'Yes' and data['<SWITCH>'] in ['EX2200-12p', 'EX2200-24p', 'EX2200-48p'] %}
{%- for i in range (0,data['<VC>']) %}
{%- for j in range(0,data['<ACCESS_PORTS>']) %}
{{ vl300_old_int(i,j) }}
{%- endfor %}
{%- endfor %}
{%- endif %}
{%- if data['<ACCESS>'] == 'No' and data['<CORE>'] in ['EX2200-12p', 'EX2200-24p', 'EX2200-48p'] %}
{%- for i in range (0,data['<VC_CORE>']) %}
{%- for j in range(0,data['<CORE_PORTS>']) %}
{{ vl300_old_int(i,j) }}
{%- endfor %}
{%- endfor %}
{%- endif %}
{%- if data['<CORE>'] in ['EX2300-48p', 'EX4300-48p'] and data['<VC_CORE>'] not in [2,3,4] and data['<ACCESS>'] == 'No' %}
ge-0/0/47 {
description "{{data['<EF01_HOSTNAME>']}} ge-0/0/5";
unit 0 {
family ethernet-switching {
interface-mode access;
vlan {
members VL901_FW;
}
}
}
}
{%- endif %}
{%- if data['<CORE>'] == 'EX2200-48p' and data['<VC_CORE>'] not in [2,3,4] and data['<ACCESS>'] == 'No' %}
ge-0/0/47 {
description "{{data['<EF01_HOSTNAME>']}} ge-0/0/5";
unit 0 {
family ethernet-switching {
port-mode access;
vlan {
members VL901_FW;
}
}
}
}
{%- endif %}
{%- if data['<CORE>'] == 'EX2200-24p' and data['<ACCESS>'] == 'No' %}
ge-0/0/23 {
description "{{data['<EF01_HOSTNAME>']}} ge-0/0/5";
unit 0 {
family ethernet-switching {
port-mode access;
vlan {
members VL901_FW;
}
}
}
}
{%- endif %}
{%- if data['<CORE>'] == 'EX2200-12p' or data['<SWITCH>'] == 'EX2200-12p' and data['<ACCESS>'] == 'No' %}
ge-0/0/11 {
description "{{data['<EF01_HOSTNAME>']}} ge-0/0/5";
unit 0 {
family ethernet-switching {
port-mode access;
vlan {
members VL901_FW;
}
}
}
}
{%- endif %}
{%- if data['<CORE>'] in ['EX2300-24p', 'EX4300-24p'] and data['<ACCESS>'] == 'No' %}
ge-0/0/23 {
description "{{data['<EF01_HOSTNAME>']}} ge-0/0/5";
unit 0 {
family ethernet-switching {
interface-mode access;
vlan {
members VL901_FW;
}
}
}
}
{%- endif %}
{%- if data['<CORE>'] in ['EX2300-12p', 'EX4300-12p'] and data['<ACCESS>'] == 'No' %}
ge-0/0/11 {
description "{{data['<EF01_HOSTNAME>']}} ge-0/0/5";
unit 0 {
family ethernet-switching {
interface-mode access;
vlan {
members VL901_FW;
}
}
}
}
{%- endif %}
{%- if data['<SWITCH>'] in ['EX2300-12p', 'EX2300-24p', 'EX2300-48p', 'EX4300-24p', 'EX4300-48p', 'EX4600-24p'] and data['<ACCESS>'] == 'Yes' and data['<VC_CORE>'] is in [1] %}
ge-0/0/{{data['<ACCESS_PORTS>']}} {
description "{{data['<CS01_HOSTNAME>']}} ge-0/0/X";
unit 0 {
family ethernet-switching {
interface-mode trunk;
vlan {
members VL300_WIRED;
}
}
}
}
{%- endif %}
{%- if data['<SWITCH>'] in ['EX2200-12p', 'EX2200-24p', 'EX2200-48p'] and data['<ACCESS>'] == 'Yes' and data['<VC_CORE>'] is in [1] %}
ge-0/0/{{data['<ACCESS_PORTS>']}} {
description "{{data['<CS01_HOSTNAME>']}} ge-0/0/X";
unit 0 {
family ethernet-switching {
port-mode trunk;
vlan {
members VL300_WIRED;
}
}
}
}
{%- endif %}
{%- if data['<SWITCH>'] in ['EX2300-12p', 'EX2300-24p', 'EX2300-48p', 'EX4300-24p', 'EX4300-48p'] and data['<ACCESS>'] == 'Yes' and data['<VC_CORE>'] is in [2, 3, 4] %}
ge-0/0/47 {
description "{{data['<CS01_HOSTNAME>']}} node0 ge-0/0/X";
ether-options {
802.3ad ae2;
}
}
ge-{{data['<VC>']}}/0/47 {
description "{{data['<CS01_HOSTNAME>']}} node0 ge-0/0/X";
ether-options {
802.3ad ae2;
}
}
{%- endif %}
{%- if data['<SWITCH>'] in ['EX2200-12p', 'EX2200-24p', 'EX2200-48p'] and data['<ACCESS>'] == 'Yes' and data['<VC_CORE>'] is in [2, 3, 4] %}
ge-0/0/47 {
description "{{data['<CS01_HOSTNAME>']}} node0 ge-0/0/X";
ether-options {
802.3ad ae2;
}
}
ge-{{fpc}}/0/47 {
description "{{data['<CS01_HOSTNAME>']}} node0 ge-0/0/X";
ether-options {
802.3ad ae2;
}
}
{%- endif %}
{%- if data['<VC_CORE>'] in [2, 3, 4] and data['<CORE>'] in ['EX2300-48p', 'EX4300-48p'] and data['<ACCESS>'] == 'No' %}
ge-0/0/47 {
description "{{data['<EF01_HOSTNAME>']}} node0 ge-0/0/X";
ether-options {
802.3ad ae0;
}
}
{%- endif %}
{%- if data['<VC_CORE>'] == 2 and data['<CORE>'] in ['EX2200-48p', 'EX2300-48p', 'EX4300-48p'] and data['<ACCESS>'] == 'No' %}
ge-1/0/47 {
description "{{data['<EF01_HOSTNAME>']}} node1 ge-1/0/x";
ether-options {
802.3ad ae1;
}
}
{%- endif %}
{%- if data['<VC_CORE>'] == 3 and data['<CORE>'] in ['EX2200-48p', 'EX2300-48p', 'EX4300-48p'] and data['<ACCESS>'] == 'No' %}
ge-2/0/47 {
description "{{data['<EF01_HOSTNAME>']}} node1 ge-1/0/x";
ether-options {
802.3ad ae1;
}
}
{%- endif %}
{%- if data['<VC_CORE>'] == 4 and data['<CORE>'] in ['EX2200-48p', 'EX2300-48p', 'EX4300-48p'] and data['<ACCESS>'] == 'No' %}
ge-3/0/47 {
description "{{data['<EF01_HOSTNAME>']}} node1 ge-1/0/x";
ether-options {
802.3ad ae1;
}
}
{%- endif %}
{%- if data['<VC_CORE>'] in [2, 3] and data['<ACCESS>'] == 'No' %}
ae0 {
description EF_Node0;
aggregated-ether-options {
lacp {
active;
periodic slow;
}
}
unit 0 {
family ethernet-switching {
interface-mode trunk;
vlan {
members VL901_FW;
}
}
}
}
ae1 {
description EF_Node1;
aggregated-ether-options {
lacp {
active;
periodic slow;
}
}
unit 0 {
family ethernet-switching {
interface-mode trunk;
vlan {
members VL901_FW;
}
}
}
}
{%- endif %}
{%- if data['<VC>'] in [2, 3, 4] %}
ae2 {
description {{data['<AS01_HOSTNAME>']}};
aggregated-ether-options {
lacp {
active;
}
}
unit 0 {
family ethernet-switching {
interface-mode trunk;
vlan {
members [ VL300_WIRED VL310_VOICE VL311_APMGMT VL320_CORPWIFI VL330_SERVERS ]
}
}
}
}
{%- endif %}
{%- if data['<ACCESS>'] == 'No' and data['<CORE>'] in ['EX2300-12p', 'EX2300-24p', 'EX2300-48p', 'EX4300-24p', 'EX4300-48p', 'EX4600-24p'] %}
irb {
unit 300 {
description VL300_WIRED;
family inet {
address {{data['<VL300_IP>']}}/{{data['<VL300_BM>']}};
}
}
unit 310 {
description VL310_VOICE;
family inet {
address {{data['<VL310_IP>']}}/{{data['<VL310_BM>']}};
}
}
unit 311 {
description VL311_APMGMT;
family inet {
address {{data['<VL311_IP>']}}/{{data['<VL311_BM>']}};
}
}
unit 320 {
description VL320_CORPWIFI;
family inet {
address {{data['<VL320_IP>']}}/{{data['<VL320_BM>']}};
}
}
unit 330 {
description VL330_SERVERS;
family inet {
address {{data['<VL330_IP>']}}/{{data['<VL330_BM>']}};
}
}
unit 901 {
description VL901_FW;
family inet {
address {{data['<VL901_CS01>']}}/31;
}
}
}
{%- endif %}
{%- if data['<ACCESS>'] == 'No' and data['<CORE>'] in ['EX2200-12p', 'EX2200-24p', 'EX2200-48p'] %}
vlan {
unit 300 {
description VL300_WIRED;
family inet {
address {{data['<VL300_IP>']}}/{{data['<VL300_BM>']}};
}
}
unit 310 {
description VL310_VOICE;
family inet {
address {{data['<VL310_IP>']}}/{{data['<VL310_BM>']}};
}
}
unit 311 {
description VL311_APMGMT;
family inet {
address {{data['<VL311_IP>']}}/{{data['<VL311_BM>']}};
}
}
unit 320 {
description VL320_CORPWIFI;
family inet {
address {{data['<VL320_IP>']}}/{{data['<VL320_BM>']}};
}
}
unit 330 {
description VL330_SERVERS;
family inet {
address {{data['<VL330_IP>']}}/{{data['<VL330_BM>']}};
}
}
unit 901 {
description VL901_FW;
family inet {
address {{data['<VL901_CS01>']}}/31;
}
}
}
{%- endif %}
{%- if data['<ACCESS>'] == 'Yes' and data['<SWITCH>'] in ['EX2200-12p', 'EX2200-24p', 'EX2200-48p'] %}
vlan {
unit 300 {
description VL300_WIRED;
family inet {
address {{data['<ACCESSIP>']}}/{{data['<VL300_BM>']}};
}
}
}
{%- endif %}
{%- if data['<ACCESS>'] == 'Yes' and data['<SWITCH>'] in ['EX2300-12p', 'EX2300-24p', 'EX2300-48p', 'EX4300-24p', 'EX4300-48p'] %}
irb {
unit 300 {
description VL300_WIRED;
family inet {
address {{data['<ACCESSIP>']}}/{{data['<VL300_BM>']}};
}
}
}
{%- endif %}
{%- if data['<ACCESS>'] == 'No' %}
lo0 {
unit 0 {
family inet {
address {{data['<LOOPBACK>']}}/32;
}
}
}
{%- endif %}
}
snmp {
community user {
authorization read-only;
}
trap-options {
source-address lo0;
}
trap-group user {
version v2;
targets {
10.3.4.27;
10.3.4.67;
10.135.1.117;
10.135.1.209;
10.135.1.234;
}
}
}
{%- if data['SWITCH'] in ['EX2200-12p', 'EX2200-24p', 'EX2200-48p'] or data['CORE'] in ['EX2200-12p', 'EX2200-24p', 'EX2200-48p'] %}
event-options {
generate-event {
MIDNIGHT-EASTERN time-of-day "05:00:00 +0000";
}
policy CLEAR-SSH-LOCK {
events MIDNIGHT-EASTERN;
then {
execute-commands {
commands {
"file delete /var/db/login-locks";
"file delete /var/db/login-attempts";
}
output-filename LOGIN-LOCK-EVENT.log;
destination local;
output-format text;
}
}
}
destinations {
local {
archive-sites {
/var/log/;
}
}
}
}
{%- endif %}
routing-options {
{%- if data['<VC>'] not in [0, 1] or data['<VC_CORE>'] != 1 %}
nonstop-routing;
{%- endif %}
static {
{%- if data['<ACCESS>'] == 'No' %}
route 0.0.0.0/0 next-hop {{data['<VL901_EF01>']}};
{%- endif %}
{%- if data['<ACCESS>'] == 'Yes' %}
route 0.0.0.0/0 next-hop {{data['<VL300_IP>']}};
{%- endif %}
}
{%- if data['<ACCESS>'] == 'No' %}
router-id {{data['<LOOPBACK>']}};
{%- endif %}
{%- if data['<ACCESS>'] == 'Yes' %}
router-id {{data['<ACCESSIP>']}};
{%- endif %}
}
protocols {
{%- if data['<ACCESS>'] == 'No' %}
igmp-snooping {
vlan all;
}
{%- endif %}
lldp {
{%- if data['<ACCESS>'] == 'No' %}
management-address {{data['<LOOPBACK>']}};
{%- endif %}
{%- if data['<ACCESS>'] == 'Yes' %}
management-address {{data['<ACCESSIP>']}};
{%- endif %}
port-id-subtype interface-name;
port-description-type interface-description;
interface all;
}
lldp-med {
interface all;
}
{%- if data['<VC>'] not in [0, 1] or data['<VC_CORE>'] != 1 %}
layer2-control {
nonstop-bridging;
}
{%- endif %}
rstp {
bridge-priority 28k;
interface RSTP {
{%- if data['<ACCESS>'] == 'Yes' %}
edge;
{%- endif %}
no-root-port;
}
}
}
policy-options {
prefix-list DII-SNMP-HOSTS {
10.3.0.0/24;
10.3.4.0/24;
10.135.0.0/23;
}
}
class-of-service {
classifiers {
dscp ENT_VOIP {
import default;
forwarding-class VOICE {
loss-priority low code-points 101110;
}
}
}
forwarding-classes {
class VOICE queue-num 6;
}
interfaces {
ge-* {
scheduler-map VOICE_SCHED_MAP;
unit * {
classifiers {
dscp ENT_VOIP;
}
}
}
}
scheduler-maps {
VOICE_SCHED_MAP {
forwarding-class VOICE scheduler VOICE_SCHED;
}
}
schedulers {
VOICE_SCHED {
priority strict-high;
}
}
}
{%- if data['<ACCESS>'] == 'No' and data['<CORE>'] not in ['EX2200-12p', 'EX2200-24p', 'EX2200-48p'] %}
access {
address-assignment {
high-utilization 80;
abated-utilization 70;
pool VL300-WIRED {
family inet {
network {{data['<VL300_NW>']}}/{{data['<VL300_BM>']}};
range CLIENTRANGE {
low {{data['<VL300_DHCP_LOW>']}};
high {{data['<VL300_DHCP_HIGH>']}};
}
dhcp-attributes {
domain-name dynutil.com;
name-server {
10.3.33.55;
1.1.1.1;
}
router {
{{data['<VL300_IP>']}};
}
}
}
}
pool VL310-VOICE {
family inet {
network {{data['<VL310_NW>']}}/{{data['<VL310_BM>']}};
range CLIENTRANGE {
low {{data['<VL310_DHCP_LOW>']}};
high {{data['<VL310_DHCP_HIGH>']}};
}
dhcp-attributes {
domain-name dynutil.com;
name-server {
1.1.1.1;
8.8.8.8;
}
router {
{{data['<VL310_IP>']}};
}
}
}
}
pool VL311-APMGMT {
family inet {
network {{data['<VL311_NW>']}}/{{data['<VL311_BM>']}};
range CLIENTRANGE {
low {{data['<VL311_DHCP_LOW>']}};
high {{data['<VL311_DHCP_HIGH>']}};
}
dhcp-attributes {
domain-name dynutil.com;
name-server {
10.3.33.55;
1.1.1.1;
}
router {
{{data['<VL311_IP>']}};
}
}
}
}
pool VL320-CORPWIFI {
family inet {
network {{data['<VL320_NW>']}}/{{data['<VL320_BM>']}};
range CLIENTRANGE {
low {{data['<VL320_DHCP_LOW>']}};
high {{data['<VL320_DHCP_HIGH>']}};
}
dhcp-attributes {
domain-name dynutil.com;
name-server {
10.3.33.55;
1.1.1.1;
}
router {
{{data['<VL320_IP>']}};
}
}
}
}
pool VL330-SERVERS {
family inet {
network {{data['<VL330_NW>']}}/{{data['<VL330_BM>']}};
dhcp-attributes {
domain-name dynutil.com;
name-server {
10.3.33.55;
1.1.1.1;
}
router {
{{data['<VL330_IP>']}};
}
}
}
}
}
}
{%- endif %}
{%- if data['<SWITCH>'] in ['EX2300-12p', 'EX2300-24p', 'EX2300-48p', 'EX4300-24p', 'EX4300-48p'] or data['<CORE>'] in ['EX2300-12p', 'EX2300-24p', 'EX2300-48p', 'EX4300-24p', 'EX4300-48p', 'EX4600-24p'] %}
switch-options {
voip {
interface access-ports {
vlan 310;
forwarding-class VOICE;
}