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
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
|
!
no enable password
no aaa root
!
username admin privilege 15 role network-admin secret sha512 <removed>
username cvpadmin privilege 15 role network-admin secret sha512 <removed>
!
daemon TerminAttr
exec /usr/bin/TerminAttr -cvaddr=apiserver.arista.io:443 -cvauth=token-secure,/tmp/cv-onboarding-token -cvvrf=MGMT -smashexcludes=ale,flexCounter,hardware,kni,pulse,strata -ingestexclude=/Sysdb/cell/1/agent,/Sysdb/cell/2/agent -taillogs
no shutdown
!
ip dhcp relay information option
!
ip dhcp snooping
ip dhcp snooping information option
ip dhcp snooping information option circuit-id type none format %h:%p
ip dhcp snooping vlan 1-4094
!
vlan internal order ascending range 1006 1199
!
service routing protocols model multi-agent
!
queue-monitor length
queue-monitor length default thresholds 2048 1024
!
hostname d1-1-tele
ip name-server vrf MGMT 1.1.1.1
dns domain tg25.tg.no
!
sflow sample 16384
sflow polling-interval 10
sflow destination 127.0.0.1
sflow source-interface Loopback0
sflow run
!
snmp-server ipv4 access-list mgmt_access vrf MGMT
snmp-server ipv4 access-list mgmt_access vrf INET
snmp-server contact TechNet
snmp-server location FABRIC d1-1-tele
snmp-server community <removed> ro
snmp-server vrf INET
snmp-server vrf MGMT
!
spanning-tree mode none
no spanning-tree vlan-id 4093-4094
!
clock timezone CET
!
vlan 4
name fw-inet-linknet-1
!
vlan 5
name fw-inet-linknet-2
!
vlan 6
name fw-clients-linknet-1
!
vlan 7
name fw-clients-linknet-2
!
vlan 10
name juniper-mgmt
!
vlan 12
name pve-hosts
!
vlan 13
name tech-servers
!
vlan 14
name servers
!
vlan 15
name tghack-servers
!
vlan 20
name VLAN-DELTAGER-<removed>
!
vlan 200
name e1-noc
!
vlan 201
name e1-bird
!
vlan 202
name e2-bird
!
vlan 203
name e1-bula
!
vlan 204
name e1-taakeheimen
!
vlan 205
name e1-systemstotte
!
vlan 206
name e2-systemstotte
!
vlan 207
name e1-log
!
vlan 208
name e1-badge
!
vlan 209
name e1-resepsjon
!
vlan 210
name e1-kbula
!
vlan 211
name e1-kringkastning
!
vlan 212
name e2-log
!
vlan 213
name e1-medic
!
vlan 214
name e1-vip
!
vlan 215
name e1-south
!
vlan 216
name e1-1
!
vlan 217
name e1-north
!
vlan 218
name e2-north
!
vlan 219
name e1-swing
!
vlan 220
name e1-stand
!
vlan 221
name noc-public
!
vlan 222
name e2-stand
!
vlan 223
name e1-tghack-clients
!
vlan 224
name e1-gamedesk
!
vlan 225
name e1-tghack
!
vlan 226
name e1-kstage
!
vlan 227
name e1-kreativefoh
!
vlan 228
name e2-presse
!
vlan 229
name e1-2
!
vlan 230
name e3-1
!
vlan 231
name e3-2
!
vlan 232
name e5-1
!
vlan 233
name e5-2
!
vlan 234
name e7-1
!
vlan 235
name e7-2
!
vlan 236
name e9-1
!
vlan 237
name e9-2
!
vlan 238
name e11-1
!
vlan 239
name e11-2
!
vlan 240
name e13-1
!
vlan 241
name e13-2
!
vlan 242
name e15-1
!
vlan 243
name e15-2
!
vlan 244
name e17-1
!
vlan 245
name e17-2
!
vlan 246
name e19-1
!
vlan 247
name e19-2
!
vlan 248
name e21-1
!
vlan 249
name e21-2
!
vlan 250
name e23-1
!
vlan 251
name e23-2
!
vlan 252
name e25-1
!
vlan 253
name e25-2
!
vlan 254
name e27-1
!
vlan 255
name e27-2
!
vlan 256
name e29-1
!
vlan 257
name e29-2
!
vlan 258
name e31-1
!
vlan 259
name e31-2
!
vlan 260
name e33-1
!
vlan 261
name e33-2
!
vlan 262
name e35-1
!
vlan 263
name e35-2
!
vlan 264
name e37-1
!
vlan 265
name e37-2
!
vlan 266
name e39-1
!
vlan 267
name e39-2
!
vlan 268
name e41-1
!
vlan 269
name e41-2
!
vlan 270
name e43-1
!
vlan 271
name e43-2
!
vlan 272
name e45-1
!
vlan 273
name e45-2
!
vlan 274
name e27-3
!
vlan 275
name e27-4
!
vlan 276
name e29-3
!
vlan 277
name e29-4
!
vlan 278
name e31-3
!
vlan 279
name e31-4
!
vlan 280
name e33-3
!
vlan 281
name e33-4
!
vlan 282
name e1-tavle
!
vlan 283
name e1-support
!
vlan 284
name e1-vrimle
!
vlan 285
name e1-mainstage
!
vlan 286
name e2-mainstage
!
vlan 287
name e1-mainfoh
!
vlan 290
name kreative-produksjon
!
vlan 291
name e1-crew
!
vlan 292
name e2-crew
!
vlan 293
name e3-crew
!
vlan 294
name e4-crew
!
vlan 295
name e1-stagecrew
!
vlan 667
name ap-mgmt
!
vlan 668
name d1-ring
!
vlan 669
name nucs
!
vlan 670
name wifi-tg-legacy
!
vlan 1337
name wifi-thegathering
!
vlan 3000
name MLAG_L3_VRF_INET
trunk group MLAG
!
vlan 3001
name MLAG_L3_VRF_CLIENTS
trunk group MLAG
!
vlan 4093
name MLAG_L3
trunk group MLAG
!
vlan 4094
name MLAG
trunk group MLAG
!
vrf instance CLIENTS
!
vrf instance INET
!
vrf instance MGMT
!
management api http-commands
protocol https
no shutdown
!
vrf MGMT
no shutdown
!
tacacs-server host <removed> vrf MGMT key 7 <removed>
!
interface Port-Channel1
description B: PVE1-TELE bond0
no shutdown
switchport trunk allowed vlan 10,12,13,14,15
switchport mode trunk
switchport
port-channel lacp fallback static
port-channel lacp fallback timeout 30
mlag 1
spanning-tree portfast
ip dhcp snooping interface information option circuit-id type none value pve1-tele
!
interface Port-Channel511
description B: D1-RING-TELE ae0
no shutdown
switchport trunk allowed vlan 200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,217,218,219,228,282,283,284,285,286,287,295,670,1337,10,667,668
switchport mode trunk
switchport
ip dhcp snooping interface information option circuit-id type none value d1-ring-tele
!
interface Port-Channel551
description MLAG_d1-2-tele_Port-Channel551
no shutdown
switchport mode trunk
switchport trunk group MLAG
switchport
!
interface Ethernet1
description G: PVE1-TELE eth0 (Po1)
no shutdown
channel-group 1 mode active
lacp timer fast
lacp port-priority 8192
!
interface Ethernet49/1
description P2P_d1-1-roof_Ethernet13/1
no shutdown
mtu 9100
no switchport
ipv6 enable
!
interface Ethernet50/1
description P2P_d1-2-roof_Ethernet13/1
no shutdown
mtu 9100
no switchport
ipv6 enable
!
interface Ethernet51/1
description G: D1-RING-TELE et-5/1/2 (Po511)
no shutdown
channel-group 511 mode active
lacp timer fast
!
interface Ethernet52/1
description ENDPOINT_r1-1-tele_ethernet51/1
no shutdown
no switchport
vrf INET
ip address 185.110.148.8/31
ipv6 address 2a06:5841:f:104::/127
!
interface Ethernet55/1
description MLAG_d1-2-tele_Ethernet55/1
no shutdown
channel-group 551 mode active
!
interface Ethernet56/1
description MLAG_d1-2-tele_Ethernet56/1
no shutdown
channel-group 551 mode active
!
interface Loopback0
description ROUTER_ID
no shutdown
ip address 10.255.0.19/32
ipv6 address 2a06:5841:e::13/128
!
interface Loopback1
description VXLAN_TUNNEL_SOURCE
no shutdown
ip address 10.255.1.19/32
!
interface Loopback10
description DIAG_VRF_INET
no shutdown
vrf INET
ip address 10.255.10.19/32
ipv6 address 2a06:5841:e:101::13/128
!
interface Loopback11
description DIAG_VRF_CLIENTS
no shutdown
vrf CLIENTS
ip address 10.255.11.19/32
ipv6 address 2a06:5841:e:102::13/128
!
interface Management1
description OOB_MANAGEMENT
no shutdown
vrf MGMT
ip address 185.110.148.72/27
ipv6 enable
ipv6 address 2a06:5841:f:1::72/64
!
interface Vlan4
description fw-inet-linknet-1
no shutdown
mtu 1500
vrf INET
ipv6 enable
ipv6 nd ra disabled
ip address virtual 185.110.148.0/31
ipv6 address virtual 2a06:5841:f:100::1/64
ipv6 nd prefix 2a06:5841:f:100::/64 no-autoconfig
!
interface Vlan5
description fw-inet-linknet-2
no shutdown
mtu 1500
vrf INET
ipv6 enable
ipv6 nd ra disabled
ip address virtual 185.110.148.2/31
ipv6 address virtual 2a06:5841:f:101::1/64
ipv6 nd prefix 2a06:5841:f:101::/64 no-autoconfig
!
interface Vlan6
description fw-clients-linknet-1
no shutdown
mtu 1500
vrf CLIENTS
ipv6 enable
ipv6 nd ra disabled
ip address virtual 185.110.148.4/31
ipv6 address virtual 2a06:5841:f:102::1/64
ipv6 nd prefix 2a06:5841:f:102::/64 no-autoconfig
!
interface Vlan7
description fw-clients-linknet-2
no shutdown
mtu 1500
vrf CLIENTS
ipv6 enable
ipv6 nd ra disabled
ip address virtual 185.110.148.6/31
ipv6 address virtual 2a06:5841:f:103::1/64
ipv6 nd prefix 2a06:5841:f:103::/64 no-autoconfig
!
interface Vlan10
description juniper-mgmt
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 185.110.149.1/24
ipv6 address virtual 2a06:5841:f::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5841:f::/64 no-autoconfig
!
interface Vlan12
description pve-hosts
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.100.1/26
ipv6 address virtual 2a06:5844:e:100::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:100::/64 no-autoconfig
!
interface Vlan13
description tech-servers
no shutdown
mtu 1500
vrf INET
ipv6 enable
ipv6 nd ra disabled
ip address virtual 185.110.148.225/27
ipv6 address virtual 2a06:5841:f:300::1/64
ipv6 nd prefix 2a06:5841:f:300::/64 no-autoconfig
!
interface Vlan14
description servers
no shutdown
mtu 1500
vrf INET
ipv6 enable
ipv6 nd ra disabled
ip address virtual 88.92.0.1/23
ipv6 address virtual 2a06:5844:f::1/64
ipv6 nd prefix 2a06:5844:f::/64 no-autoconfig
!
interface Vlan15
description tghack-servers
no shutdown
mtu 1500
vrf INET
ipv6 enable
ipv6 nd ra disabled
ip address virtual 88.92.2.1/25
ipv6 address virtual 2a06:5844:f:1::1/64
ipv6 nd prefix 2a06:5844:f:1::/64 no-autoconfig
!
interface Vlan20
description VLAN-DELTAGER-<removed>
no shutdown
mtu 1500
vrf INET
ipv6 enable
ipv6 nd ra disabled
ip address virtual 185.110.148.14/31
ipv6 address virtual 2a06:5841:f:107::1/64
ipv6 nd prefix 2a06:5841:f:107::/64 no-autoconfig
!
interface Vlan200
description e1-noc
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.0.1/26
ipv6 address virtual 2a06:5844:e::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e::/64 no-autoconfig
!
interface Vlan201
description e1-bird
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.0.65/26
ipv6 address virtual 2a06:5844:e:1::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:1::/64 no-autoconfig
!
interface Vlan202
description e2-bird
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.0.129/26
ipv6 address virtual 2a06:5844:e:2::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:2::/64 no-autoconfig
!
interface Vlan203
description e1-bula
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.0.193/26
ipv6 address virtual 2a06:5844:e:3::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:3::/64 no-autoconfig
!
interface Vlan204
description e1-taakeheimen
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.1.1/26
ipv6 address virtual 2a06:5844:e:4::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:4::/64 no-autoconfig
!
interface Vlan205
description e1-systemstotte
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.1.65/26
ipv6 address virtual 2a06:5844:e:5::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:5::/64 no-autoconfig
!
interface Vlan206
description e2-systemstotte
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.1.129/26
ipv6 address virtual 2a06:5844:e:6::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:6::/64 no-autoconfig
!
interface Vlan207
description e1-log
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.1.193/26
ipv6 address virtual 2a06:5844:e:8::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:8::/64 no-autoconfig
!
interface Vlan208
description e1-badge
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.2.1/26
ipv6 address virtual 2a06:5844:e:9::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:9::/64 no-autoconfig
!
interface Vlan209
description e1-resepsjon
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.2.65/26
ipv6 address virtual 2a06:5844:e:a::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:a::/64 no-autoconfig
!
interface Vlan210
description e1-kbula
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.2.129/26
ipv6 address virtual 2a06:5844:e:b::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:b::/64 no-autoconfig
!
interface Vlan211
description e1-kringkastning
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.2.193/26
ipv6 address virtual 2a06:5844:e:c::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:c::/64 no-autoconfig
!
interface Vlan212
description e2-log
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.3.1/26
ipv6 address virtual 2a06:5844:e:d::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:d::/64 no-autoconfig
!
interface Vlan213
description e1-medic
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.3.65/26
ipv6 address virtual 2a06:5844:e:e::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:e::/64 no-autoconfig
!
interface Vlan214
description e1-vip
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.3.129/26
ipv6 address virtual 2a06:5844:e:f::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:f::/64 no-autoconfig
!
interface Vlan215
description e1-south
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.3.193/26
ipv6 address virtual 2a06:5844:e:10::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:10::/64 no-autoconfig
!
interface Vlan216
description e1-1
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.4.1/26
ipv6 address virtual 2a06:5844:e:11::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:11::/64 no-autoconfig
!
interface Vlan217
description e1-north
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.4.65/26
ipv6 address virtual 2a06:5844:e:12::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:12::/64 no-autoconfig
!
interface Vlan218
description e2-north
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.4.129/26
ipv6 address virtual 2a06:5844:e:13::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:13::/64 no-autoconfig
!
interface Vlan219
description e1-swing
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.4.193/26
ipv6 address virtual 2a06:5844:e:14::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:14::/64 no-autoconfig
!
interface Vlan220
description e1-stand
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.5.1/26
ipv6 address virtual 2a06:5844:e:15::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:15::/64 no-autoconfig
!
interface Vlan221
description noc-public
no shutdown
mtu 1500
vrf INET
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 185.110.148.161/27
ipv6 address virtual 2a06:5841:f:202::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5841:f:202::/64 no-autoconfig
!
interface Vlan222
description e2-stand
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.5.65/26
ipv6 address virtual 2a06:5844:e:16::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:16::/64 no-autoconfig
!
interface Vlan223
description e1-tghack-clients
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.5.129/26
ipv6 address virtual 2a06:5844:e:59::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:59::/64 no-autoconfig
!
interface Vlan224
description e1-gamedesk
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.5.193/26
ipv6 address virtual 2a06:5844:e:18::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:18::/64 no-autoconfig
!
interface Vlan225
description e1-tghack
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.6.1/26
ipv6 address virtual 2a06:5844:e:19::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:19::/64 no-autoconfig
!
interface Vlan226
description e1-kstage
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.6.65/26
ipv6 address virtual 2a06:5844:e:1a::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:1a::/64 no-autoconfig
!
interface Vlan227
description e1-kreativefoh
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.6.129/26
ipv6 address virtual 2a06:5844:e:1b::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:1b::/64 no-autoconfig
!
interface Vlan228
description e2-presse
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.6.193/26
ipv6 address virtual 2a06:5844:e:1c::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:1c::/64 no-autoconfig
!
interface Vlan229
description e1-2
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.7.1/26
ipv6 address virtual 2a06:5844:e:1d::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:1d::/64 no-autoconfig
!
interface Vlan230
description e3-1
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.7.65/26
ipv6 address virtual 2a06:5844:e:1e::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:1e::/64 no-autoconfig
!
interface Vlan231
description e3-2
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.7.129/26
ipv6 address virtual 2a06:5844:e:1f::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:1f::/64 no-autoconfig
!
interface Vlan232
description e5-1
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.7.193/26
ipv6 address virtual 2a06:5844:e:20::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:20::/64 no-autoconfig
!
interface Vlan233
description e5-2
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.8.1/26
ipv6 address virtual 2a06:5844:e:21::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:21::/64 no-autoconfig
!
interface Vlan234
description e7-1
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.8.65/26
ipv6 address virtual 2a06:5844:e:22::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:22::/64 no-autoconfig
!
interface Vlan235
description e7-2
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.8.129/26
ipv6 address virtual 2a06:5844:e:23::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:23::/64 no-autoconfig
!
interface Vlan236
description e9-1
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.8.193/26
ipv6 address virtual 2a06:5844:e:24::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:24::/64 no-autoconfig
!
interface Vlan237
description e9-2
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.9.1/26
ipv6 address virtual 2a06:5844:e:25::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:25::/64 no-autoconfig
!
interface Vlan238
description e11-1
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.9.65/26
ipv6 address virtual 2a06:5844:e:26::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:26::/64 no-autoconfig
!
interface Vlan239
description e11-2
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.9.129/26
ipv6 address virtual 2a06:5844:e:27::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:27::/64 no-autoconfig
!
interface Vlan240
description e13-1
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.9.193/26
ipv6 address virtual 2a06:5844:e:28::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:28::/64 no-autoconfig
!
interface Vlan241
description e13-2
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.10.1/26
ipv6 address virtual 2a06:5844:e:29::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:29::/64 no-autoconfig
!
interface Vlan242
description e15-1
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.10.65/26
ipv6 address virtual 2a06:5844:e:2a::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:2a::/64 no-autoconfig
!
interface Vlan243
description e15-2
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.10.129/26
ipv6 address virtual 2a06:5844:e:2b::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:2b::/64 no-autoconfig
!
interface Vlan244
description e17-1
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.10.193/26
ipv6 address virtual 2a06:5844:e:2c::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:2c::/64 no-autoconfig
!
interface Vlan245
description e17-2
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.11.1/26
ipv6 address virtual 2a06:5844:e:2d::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:2d::/64 no-autoconfig
!
interface Vlan246
description e19-1
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.11.65/26
ipv6 address virtual 2a06:5844:e:2e::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:2e::/64 no-autoconfig
!
interface Vlan247
description e19-2
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.11.129/26
ipv6 address virtual 2a06:5844:e:2f::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:2f::/64 no-autoconfig
!
interface Vlan248
description e21-1
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.11.193/26
ipv6 address virtual 2a06:5844:e:30::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:30::/64 no-autoconfig
!
interface Vlan249
description e21-2
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.12.1/26
ipv6 address virtual 2a06:5844:e:31::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:31::/64 no-autoconfig
!
interface Vlan250
description e23-1
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.12.65/26
ipv6 address virtual 2a06:5844:e:32::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:32::/64 no-autoconfig
!
interface Vlan251
description e23-2
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.12.129/26
ipv6 address virtual 2a06:5844:e:33::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:33::/64 no-autoconfig
!
interface Vlan252
description e25-1
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.12.193/26
ipv6 address virtual 2a06:5844:e:34::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:34::/64 no-autoconfig
!
interface Vlan253
description e25-2
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.13.1/26
ipv6 address virtual 2a06:5844:e:35::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:35::/64 no-autoconfig
!
interface Vlan254
description e27-1
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.13.65/26
ipv6 address virtual 2a06:5844:e:36::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:36::/64 no-autoconfig
!
interface Vlan255
description e27-2
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.13.129/26
ipv6 address virtual 2a06:5844:e:37::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:37::/64 no-autoconfig
!
interface Vlan256
description e29-1
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.13.193/26
ipv6 address virtual 2a06:5844:e:38::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:38::/64 no-autoconfig
!
interface Vlan257
description e29-2
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.14.1/26
ipv6 address virtual 2a06:5844:e:39::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:39::/64 no-autoconfig
!
interface Vlan258
description e31-1
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.14.65/26
ipv6 address virtual 2a06:5844:e:3a::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:3a::/64 no-autoconfig
!
interface Vlan259
description e31-2
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.14.129/26
ipv6 address virtual 2a06:5844:e:3b::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:3b::/64 no-autoconfig
!
interface Vlan260
description e33-1
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.14.193/26
ipv6 address virtual 2a06:5844:e:3c::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:3c::/64 no-autoconfig
!
interface Vlan261
description e33-2
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.15.1/26
ipv6 address virtual 2a06:5844:e:3d::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:3d::/64 no-autoconfig
!
interface Vlan262
description e35-1
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.15.65/26
ipv6 address virtual 2a06:5844:e:3e::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:3e::/64 no-autoconfig
!
interface Vlan263
description e35-2
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.15.129/26
ipv6 address virtual 2a06:5844:e:3f::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:3f::/64 no-autoconfig
!
interface Vlan264
description e37-1
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.15.193/26
ipv6 address virtual 2a06:5844:e:40::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:40::/64 no-autoconfig
!
interface Vlan265
description e37-2
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.16.1/26
ipv6 address virtual 2a06:5844:e:41::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:41::/64 no-autoconfig
!
interface Vlan266
description e39-1
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.16.65/26
ipv6 address virtual 2a06:5844:e:42::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:42::/64 no-autoconfig
!
interface Vlan267
description e39-2
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.16.129/26
ipv6 address virtual 2a06:5844:e:43::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:43::/64 no-autoconfig
!
interface Vlan268
description e41-1
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.16.193/26
ipv6 address virtual 2a06:5844:e:44::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:44::/64 no-autoconfig
!
interface Vlan269
description e41-2
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.17.1/26
ipv6 address virtual 2a06:5844:e:45::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:45::/64 no-autoconfig
!
interface Vlan270
description e43-1
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.17.65/26
ipv6 address virtual 2a06:5844:e:46::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:46::/64 no-autoconfig
!
interface Vlan271
description e43-2
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.17.129/26
ipv6 address virtual 2a06:5844:e:47::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:47::/64 no-autoconfig
!
interface Vlan272
description e45-1
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.17.193/26
ipv6 address virtual 2a06:5844:e:48::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:48::/64 no-autoconfig
!
interface Vlan273
description e45-2
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.18.1/26
ipv6 address virtual 2a06:5844:e:49::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:49::/64 no-autoconfig
!
interface Vlan274
description e27-3
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.18.65/26
ipv6 address virtual 2a06:5844:e:4a::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:4a::/64 no-autoconfig
!
interface Vlan275
description e27-4
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.18.129/26
ipv6 address virtual 2a06:5844:e:4b::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:4b::/64 no-autoconfig
!
interface Vlan276
description e29-3
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.18.193/26
ipv6 address virtual 2a06:5844:e:4c::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:4c::/64 no-autoconfig
!
interface Vlan277
description e29-4
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.19.1/26
ipv6 address virtual 2a06:5844:e:4d::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:4d::/64 no-autoconfig
!
interface Vlan278
description e31-3
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.19.65/26
ipv6 address virtual 2a06:5844:e:4e::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:4e::/64 no-autoconfig
!
interface Vlan279
description e31-4
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.19.129/26
ipv6 address virtual 2a06:5844:e:4f::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:4f::/64 no-autoconfig
!
interface Vlan280
description e33-3
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.19.193/26
ipv6 address virtual 2a06:5844:e:50::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:50::/64 no-autoconfig
!
interface Vlan281
description e33-4
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.20.1/26
ipv6 address virtual 2a06:5844:e:51::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:51::/64 no-autoconfig
!
interface Vlan282
description e1-tavle
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.20.65/26
ipv6 address virtual 2a06:5844:e:52::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:52::/64 no-autoconfig
!
interface Vlan283
description e1-support
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.20.129/26
ipv6 address virtual 2a06:5844:e:53::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:53::/64 no-autoconfig
!
interface Vlan284
description e1-vrimle
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.20.193/26
ipv6 address virtual 2a06:5844:e:54::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:54::/64 no-autoconfig
!
interface Vlan285
description e1-mainstage
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.21.65/26
ipv6 address virtual 2a06:5844:e:56::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:56::/64 no-autoconfig
!
interface Vlan286
description e2-mainstage
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.21.129/26
ipv6 address virtual 2a06:5844:e:57::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:57::/64 no-autoconfig
!
interface Vlan287
description e1-mainfoh
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.21.193/26
ipv6 address virtual 2a06:5844:e:58::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:58::/64 no-autoconfig
!
interface Vlan290
description kreative-produksjon
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.24.1/24
ipv6 address virtual 2a06:5844:e:5b::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:5b::/64 no-autoconfig
!
interface Vlan291
description e1-crew
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.22.193/26
ipv6 address virtual 2a06:5844:e:5c::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:5c::/64 no-autoconfig
!
interface Vlan292
description e2-crew
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.23.1/26
ipv6 address virtual 2a06:5844:e:5d::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:5d::/64 no-autoconfig
!
interface Vlan293
description e3-crew
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.23.65/26
ipv6 address virtual 2a06:5844:e:5e::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:5e::/64 no-autoconfig
!
interface Vlan294
description e4-crew
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.23.129/26
ipv6 address virtual 2a06:5844:e:5f::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:5f::/64 no-autoconfig
!
interface Vlan295
description e1-stagecrew
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.23.193/26
ipv6 address virtual 2a06:5844:e:60::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:60::/64 no-autoconfig
!
interface Vlan667
description ap-mgmt
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.101.1/24
ipv6 address virtual 2a06:5841:f:2::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5841:f:2::/64 no-autoconfig
!
interface Vlan668
description d1-ring
no shutdown
mtu 1500
vrf INET
ipv6 enable
ipv6 nd ra disabled
ip address virtual 185.110.148.12/31
ipv6 address virtual 2a06:5841:f:106::1/64
ipv6 nd prefix 2a06:5841:f:106::/64 no-autoconfig
!
interface Vlan669
description nucs
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.21.1/26
ipv6 address virtual 2a06:5844:e:55::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:55::/64 no-autoconfig
!
interface Vlan670
description wifi-tg-legacy
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.240.0.1/22
ipv6 address virtual 2a06:5844:e:61::1/64
ipv6 nd managed-config-flag
ipv6 dhcp relay destination 2a06:5841:f:300::231 vrf INET local-interface Loopback10
ipv6 nd prefix 2a06:5844:e:61::/64 no-autoconfig
!
interface Vlan1337
description wifi-thegathering
no shutdown
mtu 1500
vrf CLIENTS
ip helper-address 185.110.148.231 vrf INET source-interface Loopback10
ipv6 enable
ip address virtual 10.25.112.1/20
ipv6 address virtual 2a06:5844:e:7::1/64
ipv6 nd ra pref64 64:ff9b::/96
ipv6 nd ra dns-server 2a06:5841:f:300::226
ipv6 nd ra dns-server 2606:4700:4700::1001
!
interface Vlan3000
description MLAG_L3_VRF_INET
no shutdown
mtu 9100
vrf INET
ipv6 enable
!
interface Vlan3001
description MLAG_L3_VRF_CLIENTS
no shutdown
mtu 9100
vrf CLIENTS
ipv6 enable
!
interface Vlan4093
description MLAG_L3
no shutdown
mtu 9100
ipv6 enable
!
interface Vlan4094
description MLAG
no shutdown
mtu 9100
no autostate
ipv6 address 2a06:5841:e:210::1/64
!
interface Vxlan1
description d1-1-tele_VTEP
vxlan source-interface Loopback1
vxlan virtual-router encapsulation mac-address mlag-system-id
vxlan udp-port 4789
vxlan vlan 4 vni 10004
vxlan vlan 5 vni 10005
vxlan vlan 6 vni 10006
vxlan vlan 7 vni 10007
vxlan vlan 10 vni 10010
vxlan vlan 12 vni 10012
vxlan vlan 13 vni 10013
vxlan vlan 14 vni 10014
vxlan vlan 15 vni 10015
vxlan vlan 20 vni 10020
vxlan vlan 200 vni 10200
vxlan vlan 201 vni 10201
vxlan vlan 202 vni 10202
vxlan vlan 203 vni 10203
vxlan vlan 204 vni 10204
vxlan vlan 205 vni 10205
vxlan vlan 206 vni 10206
vxlan vlan 207 vni 10207
vxlan vlan 208 vni 10208
vxlan vlan 209 vni 10209
vxlan vlan 210 vni 10210
vxlan vlan 211 vni 10211
vxlan vlan 212 vni 10212
vxlan vlan 213 vni 10213
vxlan vlan 214 vni 10214
vxlan vlan 215 vni 10215
vxlan vlan 216 vni 10216
vxlan vlan 217 vni 10217
vxlan vlan 218 vni 10218
vxlan vlan 219 vni 10219
vxlan vlan 220 vni 10220
vxlan vlan 221 vni 10221
vxlan vlan 222 vni 10222
vxlan vlan 223 vni 10223
vxlan vlan 224 vni 10224
vxlan vlan 225 vni 10225
vxlan vlan 226 vni 10226
vxlan vlan 227 vni 10227
vxlan vlan 228 vni 10228
vxlan vlan 229 vni 10229
vxlan vlan 230 vni 10230
vxlan vlan 231 vni 10231
vxlan vlan 232 vni 10232
vxlan vlan 233 vni 10233
vxlan vlan 234 vni 10234
vxlan vlan 235 vni 10235
vxlan vlan 236 vni 10236
vxlan vlan 237 vni 10237
vxlan vlan 238 vni 10238
vxlan vlan 239 vni 10239
vxlan vlan 240 vni 10240
vxlan vlan 241 vni 10241
vxlan vlan 242 vni 10242
vxlan vlan 243 vni 10243
vxlan vlan 244 vni 10244
vxlan vlan 245 vni 10245
vxlan vlan 246 vni 10246
vxlan vlan 247 vni 10247
vxlan vlan 248 vni 10248
vxlan vlan 249 vni 10249
vxlan vlan 250 vni 10250
vxlan vlan 251 vni 10251
vxlan vlan 252 vni 10252
vxlan vlan 253 vni 10253
vxlan vlan 254 vni 10254
vxlan vlan 255 vni 10255
vxlan vlan 256 vni 10256
vxlan vlan 257 vni 10257
vxlan vlan 258 vni 10258
vxlan vlan 259 vni 10259
vxlan vlan 260 vni 10260
vxlan vlan 261 vni 10261
vxlan vlan 262 vni 10262
vxlan vlan 263 vni 10263
vxlan vlan 264 vni 10264
vxlan vlan 265 vni 10265
vxlan vlan 266 vni 10266
vxlan vlan 267 vni 10267
vxlan vlan 268 vni 10268
vxlan vlan 269 vni 10269
vxlan vlan 270 vni 10270
vxlan vlan 271 vni 10271
vxlan vlan 272 vni 10272
vxlan vlan 273 vni 10273
vxlan vlan 274 vni 10274
vxlan vlan 275 vni 10275
vxlan vlan 276 vni 10276
vxlan vlan 277 vni 10277
vxlan vlan 278 vni 10278
vxlan vlan 279 vni 10279
vxlan vlan 280 vni 10280
vxlan vlan 281 vni 10281
vxlan vlan 282 vni 10282
vxlan vlan 283 vni 10283
vxlan vlan 284 vni 10284
vxlan vlan 285 vni 10285
vxlan vlan 286 vni 10286
vxlan vlan 287 vni 10287
vxlan vlan 290 vni 10290
vxlan vlan 291 vni 10291
vxlan vlan 292 vni 10292
vxlan vlan 293 vni 10293
vxlan vlan 294 vni 10294
vxlan vlan 295 vni 10295
vxlan vlan 667 vni 10667
vxlan vlan 668 vni 10668
vxlan vlan 669 vni 10669
vxlan vlan 670 vni 10670
vxlan vlan 1337 vni 11337
vxlan vrf CLIENTS vni 2
vxlan vrf INET vni 1
!
monitor connectivity
vrf CLIENTS
interface set Loopback Loopback11
local-interfaces Loopback address-only default
!
host d1-1-tele-v4
ip 10.255.11.19
!
host d1-2-tele-v4
ip 10.255.11.20
!
host d1-floor-v4
ip 10.255.11.14
!
host firewall-link-1
ip 185.110.148.5
!
host firewall-link-2
ip 185.110.148.7
!
vrf INET
interface set Loopback Loopback10
local-interfaces Loopback address-only default
!
host d1-1-tele-v4
ip 10.255.10.19
!
host d1-2-tele-v4
ip 10.255.10.20
!
host d1-floor-v4
ip 10.255.10.14
!
host firewall-link-1
ip 185.110.148.1
!
host firewall-link-2
ip 185.110.148.3
no shutdown
interface set Loopback Loopback0
local-interfaces Loopback address-only default
!
host d1-1-roof-v4
ip 10.255.0.1
!
host d1-1-tele-v4
ip 10.255.0.19
!
host d1-2-roof-v4
ip 10.255.0.2
!
host d1-2-tele-v4
ip 10.255.0.20
!
host d1-floor-v4
ip 10.255.0.14
!
ip virtual-router mac-address 00:1c:73:00:00:99
!
ip address virtual source-nat vrf CLIENTS address 10.255.11.19
ip address virtual source-nat vrf INET address 10.255.10.19
ipv6 address virtual source-nat vrf CLIENTS address 2a06:5841:e:102::13
ipv6 address virtual source-nat vrf INET address 2a06:5841:e:101::13
!
ip access-list standard mgmt_access
10 permit <removed>
11 permit <removed>
666 deny any
!
ip routing ipv6 interfaces
ip routing ipv6 interfaces vrf CLIENTS
ip routing ipv6 interfaces vrf INET
no ip routing vrf MGMT
!
ip prefix-list PL-LOOPBACKS-EVPN-OVERLAY
seq 10 permit 10.255.0.0/27 eq 32
seq 20 permit 10.255.1.0/27 eq 32
!
ipv6 prefix-list PL-LOOPBACKS-EVPN-OVERLAY-V6
seq 10 permit 2a06:5841:e::/64 eq 128
!
ipv6 unicast-routing
!
ipv6 unicast-routing vrf CLIENTS
ipv6 unicast-routing vrf INET
!
mlag configuration
domain-id tele-leaf
local-interface Vlan4094
peer-address 2a06:5841:e:210::2
peer-link Port-Channel551
reload-delay mlag 300
reload-delay non-mlag 330
!
ip route vrf MGMT 0.0.0.0/0 185.110.148.65
!
ipv6 route vrf MGMT ::/0 2a06:5841:f:1::1
!
ntp local-interface vrf MGMT Management1
ntp server vrf MGMT ntp.uio.no prefer
!
route-map RM-CONN-2-BGP permit 10
match ip address prefix-list PL-LOOPBACKS-EVPN-OVERLAY
!
route-map RM-CONN-2-BGP permit 30
match ipv6 address prefix-list PL-LOOPBACKS-EVPN-OVERLAY-V6
!
route-map RM-MLAG-PEER-IN permit 10
description Make routes learned over MLAG Peer-link less preferred on spines to ensure optimal routing
set origin incomplete
!
router bfd
multihop interval 300 min-rx 300 multiplier 3
!
router bgp 65110
router-id 10.255.0.19
update wait-install
no bgp default ipv4-unicast
maximum-paths 4 ecmp 4
neighbor EVPN-OVERLAY-PEERS peer group
neighbor EVPN-OVERLAY-PEERS update-source Loopback0
neighbor EVPN-OVERLAY-PEERS bfd
neighbor EVPN-OVERLAY-PEERS ebgp-multihop 3
neighbor EVPN-OVERLAY-PEERS password 7 <removed>
neighbor EVPN-OVERLAY-PEERS send-community
neighbor EVPN-OVERLAY-PEERS maximum-routes 0
neighbor IPv4-UNDERLAY-PEERS peer group
neighbor IPv4-UNDERLAY-PEERS password 7 <removed>
neighbor IPv4-UNDERLAY-PEERS send-community
neighbor IPv4-UNDERLAY-PEERS maximum-routes 12000
neighbor MLAG-IPv4-UNDERLAY-PEER peer group
neighbor MLAG-IPv4-UNDERLAY-PEER remote-as 65110
neighbor MLAG-IPv4-UNDERLAY-PEER next-hop-self
neighbor MLAG-IPv4-UNDERLAY-PEER description d1-2-tele
neighbor MLAG-IPv4-UNDERLAY-PEER route-map RM-MLAG-PEER-IN in
neighbor MLAG-IPv4-UNDERLAY-PEER send-community
neighbor MLAG-IPv4-UNDERLAY-PEER maximum-routes 12000
neighbor 2a06:5841:e::1 peer group EVPN-OVERLAY-PEERS
neighbor 2a06:5841:e::1 remote-as 65100
neighbor 2a06:5841:e::1 description d1-1-roof_Loopback0
neighbor 2a06:5841:e::2 peer group EVPN-OVERLAY-PEERS
neighbor 2a06:5841:e::2 remote-as 65100
neighbor 2a06:5841:e::2 description d1-2-roof_Loopback0
redistribute connected route-map RM-CONN-2-BGP
neighbor interface Ethernet49/1 peer-group IPv4-UNDERLAY-PEERS remote-as 65100
neighbor interface Ethernet50/1 peer-group IPv4-UNDERLAY-PEERS remote-as 65100
neighbor interface Vlan4093 peer-group MLAG-IPv4-UNDERLAY-PEER remote-as 65110
!
vlan 4
rd 10.255.0.19:10004
route-target both 10004:10004
redistribute learned
!
vlan 5
rd 10.255.0.19:10005
route-target both 10005:10005
redistribute learned
!
vlan 6
rd 10.255.0.19:10006
route-target both 10006:10006
redistribute learned
!
vlan 7
rd 10.255.0.19:10007
route-target both 10007:10007
redistribute learned
!
vlan 10
rd 10.255.0.19:10010
route-target both 10010:10010
redistribute learned
!
vlan 12
rd 10.255.0.19:10012
route-target both 10012:10012
redistribute learned
!
vlan 13
rd 10.255.0.19:10013
route-target both 10013:10013
redistribute learned
!
vlan 14
rd 10.255.0.19:10014
route-target both 10014:10014
redistribute learned
!
vlan 15
rd 10.255.0.19:10015
route-target both 10015:10015
redistribute learned
!
vlan 20
rd 10.255.0.19:10020
route-target both 10020:10020
redistribute learned
!
vlan 200
rd 10.255.0.19:10200
route-target both 10200:10200
redistribute learned
!
vlan 201
rd 10.255.0.19:10201
route-target both 10201:10201
redistribute learned
!
vlan 202
rd 10.255.0.19:10202
route-target both 10202:10202
redistribute learned
!
vlan 203
rd 10.255.0.19:10203
route-target both 10203:10203
redistribute learned
!
vlan 204
rd 10.255.0.19:10204
route-target both 10204:10204
redistribute learned
!
vlan 205
rd 10.255.0.19:10205
route-target both 10205:10205
redistribute learned
!
vlan 206
rd 10.255.0.19:10206
route-target both 10206:10206
redistribute learned
!
vlan 207
rd 10.255.0.19:10207
route-target both 10207:10207
redistribute learned
!
vlan 208
rd 10.255.0.19:10208
route-target both 10208:10208
redistribute learned
!
vlan 209
rd 10.255.0.19:10209
route-target both 10209:10209
redistribute learned
!
vlan 210
rd 10.255.0.19:10210
route-target both 10210:10210
redistribute learned
!
vlan 211
rd 10.255.0.19:10211
route-target both 10211:10211
redistribute learned
!
vlan 212
rd 10.255.0.19:10212
route-target both 10212:10212
redistribute learned
!
vlan 213
rd 10.255.0.19:10213
route-target both 10213:10213
redistribute learned
!
vlan 214
rd 10.255.0.19:10214
route-target both 10214:10214
redistribute learned
!
vlan 215
rd 10.255.0.19:10215
route-target both 10215:10215
redistribute learned
!
vlan 216
rd 10.255.0.19:10216
route-target both 10216:10216
redistribute learned
!
vlan 217
rd 10.255.0.19:10217
route-target both 10217:10217
redistribute learned
!
vlan 218
rd 10.255.0.19:10218
route-target both 10218:10218
redistribute learned
!
vlan 219
rd 10.255.0.19:10219
route-target both 10219:10219
redistribute learned
!
vlan 220
rd 10.255.0.19:10220
route-target both 10220:10220
redistribute learned
!
vlan 221
rd 10.255.0.19:10221
route-target both 10221:10221
redistribute learned
!
vlan 222
rd 10.255.0.19:10222
route-target both 10222:10222
redistribute learned
!
vlan 223
rd 10.255.0.19:10223
route-target both 10223:10223
redistribute learned
!
vlan 224
rd 10.255.0.19:10224
route-target both 10224:10224
redistribute learned
!
vlan 225
rd 10.255.0.19:10225
route-target both 10225:10225
redistribute learned
!
vlan 226
rd 10.255.0.19:10226
route-target both 10226:10226
redistribute learned
!
vlan 227
rd 10.255.0.19:10227
route-target both 10227:10227
redistribute learned
!
vlan 228
rd 10.255.0.19:10228
route-target both 10228:10228
redistribute learned
!
vlan 229
rd 10.255.0.19:10229
route-target both 10229:10229
redistribute learned
!
vlan 230
rd 10.255.0.19:10230
route-target both 10230:10230
redistribute learned
!
vlan 231
rd 10.255.0.19:10231
route-target both 10231:10231
redistribute learned
!
vlan 232
rd 10.255.0.19:10232
route-target both 10232:10232
redistribute learned
!
vlan 233
rd 10.255.0.19:10233
route-target both 10233:10233
redistribute learned
!
vlan 234
rd 10.255.0.19:10234
route-target both 10234:10234
redistribute learned
!
vlan 235
rd 10.255.0.19:10235
route-target both 10235:10235
redistribute learned
!
vlan 236
rd 10.255.0.19:10236
route-target both 10236:10236
redistribute learned
!
vlan 237
rd 10.255.0.19:10237
route-target both 10237:10237
redistribute learned
!
vlan 238
rd 10.255.0.19:10238
route-target both 10238:10238
redistribute learned
!
vlan 239
rd 10.255.0.19:10239
route-target both 10239:10239
redistribute learned
!
vlan 240
rd 10.255.0.19:10240
route-target both 10240:10240
redistribute learned
!
vlan 241
rd 10.255.0.19:10241
route-target both 10241:10241
redistribute learned
!
vlan 242
rd 10.255.0.19:10242
route-target both 10242:10242
redistribute learned
!
vlan 243
rd 10.255.0.19:10243
route-target both 10243:10243
redistribute learned
!
vlan 244
rd 10.255.0.19:10244
route-target both 10244:10244
redistribute learned
!
vlan 245
rd 10.255.0.19:10245
route-target both 10245:10245
redistribute learned
!
vlan 246
rd 10.255.0.19:10246
route-target both 10246:10246
redistribute learned
!
vlan 247
rd 10.255.0.19:10247
route-target both 10247:10247
redistribute learned
!
vlan 248
rd 10.255.0.19:10248
route-target both 10248:10248
redistribute learned
!
vlan 249
rd 10.255.0.19:10249
route-target both 10249:10249
redistribute learned
!
vlan 250
rd 10.255.0.19:10250
route-target both 10250:10250
redistribute learned
!
vlan 251
rd 10.255.0.19:10251
route-target both 10251:10251
redistribute learned
!
vlan 252
rd 10.255.0.19:10252
route-target both 10252:10252
redistribute learned
!
vlan 253
rd 10.255.0.19:10253
route-target both 10253:10253
redistribute learned
!
vlan 254
rd 10.255.0.19:10254
route-target both 10254:10254
redistribute learned
!
vlan 255
rd 10.255.0.19:10255
route-target both 10255:10255
redistribute learned
!
vlan 256
rd 10.255.0.19:10256
route-target both 10256:10256
redistribute learned
!
vlan 257
rd 10.255.0.19:10257
route-target both 10257:10257
redistribute learned
!
vlan 258
rd 10.255.0.19:10258
route-target both 10258:10258
redistribute learned
!
vlan 259
rd 10.255.0.19:10259
route-target both 10259:10259
redistribute learned
!
vlan 260
rd 10.255.0.19:10260
route-target both 10260:10260
redistribute learned
!
vlan 261
rd 10.255.0.19:10261
route-target both 10261:10261
redistribute learned
!
vlan 262
rd 10.255.0.19:10262
route-target both 10262:10262
redistribute learned
!
vlan 263
rd 10.255.0.19:10263
route-target both 10263:10263
redistribute learned
!
vlan 264
rd 10.255.0.19:10264
route-target both 10264:10264
redistribute learned
!
vlan 265
rd 10.255.0.19:10265
route-target both 10265:10265
redistribute learned
!
vlan 266
rd 10.255.0.19:10266
route-target both 10266:10266
redistribute learned
!
vlan 267
rd 10.255.0.19:10267
route-target both 10267:10267
redistribute learned
!
vlan 268
rd 10.255.0.19:10268
route-target both 10268:10268
redistribute learned
!
vlan 269
rd 10.255.0.19:10269
route-target both 10269:10269
redistribute learned
!
vlan 270
rd 10.255.0.19:10270
route-target both 10270:10270
redistribute learned
!
vlan 271
rd 10.255.0.19:10271
route-target both 10271:10271
redistribute learned
!
vlan 272
rd 10.255.0.19:10272
route-target both 10272:10272
redistribute learned
!
vlan 273
rd 10.255.0.19:10273
route-target both 10273:10273
redistribute learned
!
vlan 274
rd 10.255.0.19:10274
route-target both 10274:10274
redistribute learned
!
vlan 275
rd 10.255.0.19:10275
route-target both 10275:10275
redistribute learned
!
vlan 276
rd 10.255.0.19:10276
route-target both 10276:10276
redistribute learned
!
vlan 277
rd 10.255.0.19:10277
route-target both 10277:10277
redistribute learned
!
vlan 278
rd 10.255.0.19:10278
route-target both 10278:10278
redistribute learned
!
vlan 279
rd 10.255.0.19:10279
route-target both 10279:10279
redistribute learned
!
vlan 280
rd 10.255.0.19:10280
route-target both 10280:10280
redistribute learned
!
vlan 281
rd 10.255.0.19:10281
route-target both 10281:10281
redistribute learned
!
vlan 282
rd 10.255.0.19:10282
route-target both 10282:10282
redistribute learned
!
vlan 283
rd 10.255.0.19:10283
route-target both 10283:10283
redistribute learned
!
vlan 284
rd 10.255.0.19:10284
route-target both 10284:10284
redistribute learned
!
vlan 285
rd 10.255.0.19:10285
route-target both 10285:10285
redistribute learned
!
vlan 286
rd 10.255.0.19:10286
route-target both 10286:10286
redistribute learned
!
vlan 287
rd 10.255.0.19:10287
route-target both 10287:10287
redistribute learned
!
vlan 290
rd 10.255.0.19:10290
route-target both 10290:10290
redistribute learned
!
vlan 291
rd 10.255.0.19:10291
route-target both 10291:10291
redistribute learned
!
vlan 292
rd 10.255.0.19:10292
route-target both 10292:10292
redistribute learned
!
vlan 293
rd 10.255.0.19:10293
route-target both 10293:10293
redistribute learned
!
vlan 294
rd 10.255.0.19:10294
route-target both 10294:10294
redistribute learned
!
vlan 295
rd 10.255.0.19:10295
route-target both 10295:10295
redistribute learned
!
vlan 667
rd 10.255.0.19:10667
route-target both 10667:10667
redistribute learned
!
vlan 668
rd 10.255.0.19:10668
route-target both 10668:10668
redistribute learned
!
vlan 669
rd 10.255.0.19:10669
route-target both 10669:10669
redistribute learned
!
vlan 670
rd 10.255.0.19:10670
route-target both 10670:10670
redistribute learned
!
vlan 1337
rd 10.255.0.19:11337
route-target both 11337:11337
redistribute learned
!
address-family evpn
neighbor EVPN-OVERLAY-PEERS activate
host-flap detection window 20 threshold 20 expiry timeout 30 seconds
!
address-family ipv4
no neighbor EVPN-OVERLAY-PEERS activate
neighbor IPv4-UNDERLAY-PEERS activate
neighbor IPv4-UNDERLAY-PEERS next-hop address-family ipv6 originate
neighbor MLAG-IPv4-UNDERLAY-PEER activate
neighbor MLAG-IPv4-UNDERLAY-PEER next-hop address-family ipv6 originate
!
address-family ipv6
neighbor IPv4-UNDERLAY-PEERS activate
neighbor MLAG-IPv4-UNDERLAY-PEER activate
!
vrf CLIENTS
rd 10.255.0.19:2
route-target import evpn 2:2
route-target export evpn 2:2
router-id 10.255.11.19
redistribute connected route-map RM-CONN-2-BGP-VRFS
neighbor interface Vlan3001 peer-group MLAG-IPv4-UNDERLAY-PEER remote-as 65110
!
vrf INET
rd 10.255.0.19:1
route-target import evpn 1:1
route-target export evpn 1:1
router-id 10.255.10.19
update wait-install
neighbor 2a06:5841:f:104::1 remote-as 21067
neighbor 2a06:5841:f:104::1 description inet-gw-peer-1-v6
neighbor 185.110.148.9 remote-as 21067
neighbor 185.110.148.9 description inet-gw-peer-1-v4
redistribute connected route-map RM-CONN-2-BGP-VRFS
neighbor interface Vlan3000 peer-group MLAG-IPv4-UNDERLAY-PEER remote-as 65110
!
address-family ipv4
neighbor 185.110.148.9 activate
!
address-family ipv6
neighbor 2a06:5841:f:104::1 activate
!
management ssh
ip access-group mgmt_access vrf INET in
ip access-group mgmt_access vrf MGMT in
authentication empty-passwords deny
!
vrf CLIENTS
shutdown
!
vrf INET
no shutdown
!
vrf MGMT
no shutdown
!
service unsupported-transceiver <removed>
!
end
|