-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathatla
More file actions
8061 lines (8060 loc) · 235 KB
/
Copy pathatla
File metadata and controls
8061 lines (8060 loc) · 235 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
## Last commit: 2015-05-28 20:09:00 UTC by majhoffm
version 12.3R6.6;
groups {
re0 {
system {
host-name ATLA-re0;
}
}
re1 {
system {
host-name ATLA-re1;
}
}
INTERFACE-BACKBONE {
interfaces {
{
mtu 9192;
unit <*> {
family inet {
mtu 9174;
filter {
input backbone-in;
output interface-out;
}
}
family iso {
mtu 1497;
}
family inet6 {
mtu 9174;
filter {
input v6filter;
output v6filter;
}
}
family mpls {
mtu 9174;
}
}
}
{
mtu 9192;
unit <*> {
family inet {
mtu 9174;
filter {
input backbone-in;
output interface-out;
}
}
family iso {
mtu 1497;
}
family inet6 {
mtu 9174;
filter {
input v6filter;
output v6filter;
}
}
family mpls {
mtu 9174;
}
}
}
{
mtu 9192;
unit <*> {
family inet {
mtu 9174;
filter {
input backbone-in;
output interface-out;
}
}
family iso {
mtu 1497;
}
family inet6 {
mtu 9174;
filter {
input v6filter;
output v6filter;
}
}
family mpls {
mtu 9174;
}
}
}
{
mtu 9192;
unit <*> {
family inet {
mtu 9170;
filter {
input backbone-in;
output interface-out;
}
}
family iso {
mtu 1497;
}
family inet6 {
mtu 9170;
filter {
input v6filter;
output v6filter;
}
}
family mpls {
mtu 9170;
}
}
}
}
}
INTERFACE-CONNECTOR {
interfaces {
{
unit <*> {
family inet {
filter {
input connector-in;
output interface-out;
}
}
family inet6 {
filter {
input v6filter;
output v6filter;
}
}
}
}
{
mtu 9192;
unit <*> {
family inet {
mtu 9000;
filter {
input connector-in;
output interface-out;
}
}
family inet6 {
mtu 9000;
filter {
input v6filter;
output v6filter;
}
}
}
}
{
mtu 9192;
unit <*> {
family inet {
mtu 9000;
filter {
input connector-in;
output interface-out;
}
}
family inet6 {
mtu 9000;
filter {
input v6filter;
output v6filter;
}
}
}
}
{
mtu 9192;
unit <*> {
family inet {
mtu 9000;
filter {
input connector-in;
output interface-out;
}
}
family inet6 {
mtu 9000;
filter {
input v6filter;
output v6filter;
}
}
}
}
}
}
MSDP-SA-Limit-per-peer-group {
protocols {
msdp {
group <*> {
peer <*> {
active-source-limit {
maximum 100000;
threshold 90000;
}
}
}
}
}
}
MSDP-STRICT {
protocols {
msdp {
group CONNECTOR {
peer <*> {
active-source-limit {
maximum 2000;
threshold 1800;
}
}
}
group ITN {
peer <*> {
active-source-limit {
maximum 500;
threshold 450;
}
}
}
group FEDNET {
peer <*> {
active-source-limit {
maximum 4000;
threshold 3600;
}
}
}
group NONITN {
peer <*> {
active-source-limit {
maximum 4000;
threshold 3600;
}
}
}
}
}
}
}
apply-groups [ re0 re1 ];
system {
domain-name net.internet2.edu;
time-zone UTC;
dump-on-panic;
authentication-order [ radius password ];
location country-code US;
ports {
auxiliary type vt100;
}
root-authentication {
}
name-server {
134.68.1.9;
129.79.5.100;
}
radius-server {
140.182.44.69 {
timeout 2;
source-address 64.57.28.243;
}
140.182.45.56 {
timeout 2;
source-address 64.57.28.243;
}
}
radius-options {
attributes {
nas-ip-address 64.57.28.243;
}
}
Login Stanza Removed
services {
ssh {
protocol-version v2;
connection-limit 30;
}
}
syslog {
archive files 100;
user * {
any critical;
}
host 134.68.107.9 {
any any;
authorization info;
interactive-commands info;
facility-override local6;
}
host 140.182.44.73 {
any any;
authorization info;
interactive-commands info;
facility-override local6;
}
file messages {
any any;
authorization info;
match "!(.*RPD_IGMP_ROUTER_VERSION_MISMATCH.*)";
archive size 2m files 20;
}
file interactive-commands {
interactive-commands any;
archive size 2m files 20;
}
file updown {
any info;
match "SNMP_TRAP_LINK_|RPD_ISIS_ADJ";
archive size 2m files 20;
}
file junk {
any any;
match RPD_IGMP_ROUTER_VERSION_MISMATCH;
archive size 66k files 1;
}
console {
user critical;
}
time-format millisecond;
source-address 64.57.28.243;
}
ddos-protection {
protocols {
sample {
aggregate {
bandwidth 6500;
}
host {
bandwidth 6500;
}
}
}
}
ntp {
server 129.79.5.100;
server 134.68.1.9 prefer;
server 198.32.10.252;
server 198.32.10.254;
}
}
chassis {
dump-on-panic;
redundancy {
failover {
on-loss-of-keepalives;
on-disk-failure;
}
keepalive-time 5;
}
routing-engine {
on-disk-failure disk-failure-action reboot;
}
aggregated-devices {
ethernet {
device-count 15;
}
}
fpc 10 {
pic 0 {
tunnel-services {
bandwidth 10g;
}
}
}
network-services ip;
}
interfaces {
xe-0/0/0 {
description "BACKBONE: ATLA-CHIC 10GE of LAG ae0 | I2-ATLA-CHIC-10GE-05419";
gigether-options {
802.3ad ae0;
}
}
xe-0/0/1 {
description "decom BACKBONE: ATLA-WASH 10GE of LAG ae8 | I2-ATLA-WASH-10GE-05251 [NO-MONITOR]";
disable;
gigether-options {
802.3ad ae8;
}
}
xe-0/0/2 {
description "AVAILABLE 10GE, LR | [NO-MONITOR]";
}
xe-0/0/3 {
description "BACKBONE: ATLA-HOUS 10GE of LAG ae1 | I2-ATLA-HOUS-10GE-05423";
gigether-options {
802.3ad ae1;
}
}
xe-0/1/0 {
apply-groups INTERFACE-CONNECTOR;
description "Indiana Gigapop via Internet2 DWS | I2-INDI-ATLA-10GE-04182 | I2-S11736";
vlan-tagging;
mtu 9192;
encapsulation flexible-ethernet-services;
unit 110 {
description "[RE]Indiana Gigapop R&E VLAN | I2-S11798";
vlan-id 110;
family inet {
mtu 9000;
address 149.165.254.21/31;
}
family inet6 {
mtu 9000;
address 2001:468:ff:144::1/64;
}
}
unit 112 {
description "[RE]Indiana GigaPoP CPS-IPv6";
vlan-id 112;
family inet6 {
address 2001:468:ffff:144::1/64;
}
}
unit 117 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "[RE]Layer-II Bridge for NOAA Mgmt | I2-ATLA-ATLA-GIGE-05899";
encapsulation vlan-ccc;
vlan-id 117;
}
unit 212 {
apply-groups-except [ INTERFACE-CONNECTOR INTERFACE-BACKBONE ];
description "[TR-CPS] Indiana GigaPOP";
encapsulation vlan-ccc;
vlan-id 212;
}
unit 213 {
apply-groups-except [ INTERFACE-CONNECTOR INTERFACE-BACKBONE ];
description "[TR-CPS] Indiana GigaPOP #2";
encapsulation vlan-ccc;
vlan-id 213;
}
unit 214 {
apply-groups-except [ INTERFACE-CONNECTOR INTERFACE-BACKBONE ];
description "[TR-CPS] Indiana GigaPOP #3";
encapsulation vlan-ccc;
vlan-id 214;
}
}
xe-0/1/1 {
apply-groups INTERFACE-CONNECTOR;
description "FLR/SOX #1 via Internet2 DWS | I2-ATLA-JACK-10GE-05129 | I2-S11737";
disable;
vlan-tagging;
encapsulation flexible-ethernet-services;
}
xe-0/1/2 {
description "AVAILABLE 10GE, LR was Protogeni Xconnect | [NO-MONITOR]";
}
xe-0/1/3 {
apply-groups INTERFACE-CONNECTOR;
description "KyRON via Internet2 DWS | I2-LOUS-ATLA-10GE-04183";
vlan-tagging;
mtu 9192;
encapsulation flexible-ethernet-services;
unit 501 {
description "[RE]KyRON VLAN | I2-S11738";
vlan-id 501;
family inet {
mtu 9000;
address 216.249.136.198/30;
}
family inet6 {
mtu 9000;
address 2610:01e0:1000:6010::2/64;
}
}
unit 503 {
description "[RE][CPS] KyRON";
vlan-id 503;
family inet {
mtu 9000;
}
family inet6 {
mtu 9000;
address 2610:01e0:1000:4010::2/64;
}
}
unit 507 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "[RE]KyRON via Internet2 DWS";
encapsulation vlan-ccc;
vlan-id 507;
input-vlan-map {
swap;
vlan-id 1002;
}
}
unit 508 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "[TR-CPS] KYRON-ATLA-CHIC";
encapsulation vlan-ccc;
vlan-id 508;
}
unit 509 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "[TR-CPS] KYRON-ATLA-WASH";
encapsulation vlan-ccc;
vlan-id 509;
}
unit 850 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 850 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 850;
}
unit 851 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 851 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 851;
}
unit 852 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 852 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 852;
}
unit 853 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 853 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 853;
}
unit 854 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 854 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 854;
}
unit 855 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 855 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 855;
}
unit 856 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 856 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 856;
}
unit 857 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 857 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 857;
}
unit 858 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 858 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 858;
}
unit 859 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 859 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 859;
}
unit 1750 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1750 switch to ge-10/2/4 for KyRON GENI access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1750;
}
unit 1755 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1755 switch to ge-10/2/4 for KyRON GENI access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1755;
}
unit 1756 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1756 switch to ge-10/2/4 for KyRON GENI access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1756;
}
unit 1757 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1757 switch to ge-10/2/4 for KyRON GENI access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1757;
}
unit 1758 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1758 switch to ge-10/2/4 for KyRON GENI access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1758;
}
unit 1759 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1759 switch to ge-10/2/4 for KyRON GENI access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1759;
}
unit 1810 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1810 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1810;
}
unit 1811 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1811 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1811;
}
unit 1812 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1812 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1812;
}
unit 1813 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1813 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1813;
}
unit 1814 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1814 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1814;
}
unit 1815 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1815 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1815;
}
unit 1816 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1816 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1816;
}
unit 1817 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1817 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1817;
}
unit 1818 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1818 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1818;
}
unit 1819 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1819 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1819;
}
unit 1820 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1820 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1820;
}
unit 1821 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1821 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1821;
}
unit 1822 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1822 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1822;
}
unit 1823 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1823 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1823;
}
unit 1824 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1824 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1824;
}
unit 1825 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1825 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1825;
}
unit 1826 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1826 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1826;
}
unit 1827 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1827 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1827;
}
unit 1828 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1828 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1828;
}
unit 1829 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1829 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1829;
}
unit 1830 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1830 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1830;
}
unit 1831 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1831 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1831;
}
unit 1832 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1832 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1832;
}
unit 1833 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1833 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1833;
}
unit 1834 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1834 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1834;
}
unit 1835 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1835 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1835;
}
unit 1836 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1836 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1836;
}
unit 1837 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1837 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1837;
}
unit 1838 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1838 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1838;
}
unit 1839 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1839 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1839;
}
unit 1840 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1840 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1840;
}
unit 1841 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1841 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1841;
}
unit 1842 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1842 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1842;
}
unit 1843 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1843 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1843;
}
unit 1844 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1844 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1844;
}
unit 1845 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1845 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1845;
}
unit 1846 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1846 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1846;
}
unit 1847 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1847 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1847;
}
unit 1848 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1848 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1848;
}
unit 1849 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1849 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1849;
}
unit 1850 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1850 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1850;
}
unit 1851 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1851 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1851;
}
unit 1852 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1852 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1852;
}
unit 1853 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1853 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1853;
}
unit 1854 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1854 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1854;
}
unit 1855 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1855 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1855;
}
unit 1856 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1856 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1856;
}
unit 1857 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1857 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1857;
}
unit 1858 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1858 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1858;
}
unit 1859 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1859 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1859;
}
unit 1860 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1860 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1860;
}
unit 1861 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1861 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1861;
}
unit 1862 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1862 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1862;
}
unit 1863 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1863 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1863;
}
unit 1864 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1864 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1864;
}
unit 1865 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1865 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1865;
}
unit 1866 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1866 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1866;
}
unit 1867 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1867 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1867;
}
unit 1868 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1868 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1868;
}
unit 1869 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "Temp static vlan 1869 switch to xe-0/3/0 for KyRON AL2S access | 3261:144";
encapsulation vlan-ccc;
vlan-id 1869;
}
}
xe-0/2/0 {
description "AVAILABLE 10GE, LR | Previously MCNC 10G connection [NO-MONITOR]";
}
xe-0/2/1 {
apply-groups INTERFACE-CONNECTOR;
description "FLR/SOX #3 via Internet2 DWS | I2-ATLA-JACK-10GE-06130";
disable;
vlan-tagging;
mtu 9192;
encapsulation flexible-ethernet-services;
unit 182 {
apply-groups-except [ INTERFACE-BACKBONE INTERFACE-CONNECTOR ];
description "[TR-CPS] FLR/SOX-ATLA-WASH";
encapsulation vlan-ccc;
vlan-id 182;
}
}
xe-0/2/2 {
description "Observatory 10G via lan.atla:B2";
vlan-tagging;
mtu 9180;
encapsulation flexible-ethernet-services;
unit 10 {
description "Atlanta Racklan";
vlan-id 10;
family inet {
filter {
output racklan-access;
}
address 64.57.25.158/27;
}
}
unit 11 {
description "ATLA Observatory vlan";
vlan-id 11;
family inet {