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
|
CISCOSB-vlan-MIB DEFINITIONS ::= BEGIN
-- Version: 7.46
-- Date: 15 Jan 2007
--
-- 26-Oct-2004 Added
-- vlanDynamicVlanSupported
-- vlanDynamicVlanTable
-- vlanPortModeExtTable
-- vlanPrivateSupported
-- vlanPrivateTable
-- vlanPrivateCommunityTable
-- 01-Jul-2005 Added vlanMulticastTvTable
-- 14-Jul-2005 Added vlanMacBaseVlan group
-- 19-Jul-2005 Added
-- vlanPrivateEdgeGroupTable
-- vlanPrivateEdgeGroupIfIndexTable
-- 14-Jul-2005 Added
-- vlanSubnetRangeTable
-- vlanSubnetPortTable
-- 20-Jul-2005 Added
-- vlanSubnetRangeTable
-- vlanSubnetPortTable
-- 30-Nov-2005 Added
-- vlanTriplePlayTable
-- vlanTriplePlayMulticastTvTable
-- 21-Nov-2006 Added vlanVoice
-- 15-Jan-2007 Devided file appolo.txt to a few files
-- Renamed file appolo.txt to ralan-mib.mib
-- 11-Feb-2007 (VeredK) Added default vlan tagged ports MIBs
-- 29-Sep-2008 Added Default VLAN membership enabled ports
-- 16-Oct-2008 (ShaharG) Added DIPO Asymmetric vlan MIB
-- 13-Oct-2009 (GenadyB) Added trunk port mode vlan list MIB
-- 06-Sep-2010 (GenadyB) Added rldot1qPortVlanStaticTable MIB
-- 08-Aug-2016 (OctaviaP) Added vlanMappingTunnelEdgePortTable MIB
IMPORTS
switch001 FROM CISCOSB-MIB
DisplayString, TruthValue, RowStatus,
MacAddress FROM SNMPv2-TC
VlanIndex, dot1qVlanIndex, PortList FROM Q-BRIDGE-MIB
VlanList1, VlanList2, VlanList3, VlanList4 FROM CISCOSB-BRIDGEMIBOBJECTS-MIB
ifIndex FROM IF-MIB
dot1dBasePort FROM BRIDGE-MIB
SnmpAdminString FROM SNMP-FRAMEWORK-MIB
MODULE-IDENTITY, OBJECT-TYPE, IpAddress FROM SNMPv2-SMI
InetAddressType FROM INET-ADDRESS-MIB;
vlan MODULE-IDENTITY
LAST-UPDATED "200602120001Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
"Postal: 170 West Tasman Drive
San Jose , CA 95134-1706
USA
Website: Cisco Small Business Support Community <http://www.cisco.com/go/smallbizsupport>"
DESCRIPTION
"The private MIB module definition for IP Multicast support in CISCOSB devices."
REVISION "200602120000Z"
DESCRIPTION
"Editorial changes to support new MIB compilers."
REVISION "200404190000Z"
DESCRIPTION
"Initial version of this MIB."
::= { switch001 48 }
vlanMibVersion OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"MIB's version :
Version 2: the current VLAN MIB replaced the previous one;
Version 3: field vlanPortForbiddenEgressPort was added.
Version 4: dot1q and dot1v supported
Version 5: Private Edge Vlan
vlanPrivateEdgeSupported
vlanPrivateEdgeMibVersion
vlanPrivateEdgeTable"
::= { vlan 1 }
vlanMaxTableNumber OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum number of VLAN Tables supported by the device."
::= { vlan 2 }
vlanNameTable OBJECT-TYPE
SYNTAX SEQUENCE OF VlanNameEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table translates Vlan name to Vlan's tag and ifindex"
::= { vlan 21 }
vlanNameEntry OBJECT-TYPE
SYNTAX VlanNameEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The row definition for this table."
INDEX { vlanNameName }
::= { vlanNameTable 1 }
VlanNameEntry ::= SEQUENCE {
vlanNameName DisplayString,
vlanNameTag INTEGER,
vlanNameIfIndex INTEGER
}
vlanNameName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Vlan's name"
::= { vlanNameEntry 1 }
vlanNameTag OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Vlan's tag"
::= { vlanNameEntry 2 }
vlanNameIfIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Vlan's ifindex"
::= { vlanNameEntry 3 }
vlanPortModeTable OBJECT-TYPE
SYNTAX SEQUENCE OF VlanPortModeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table hold information on port status trunk or access"
::= { vlan 22 }
vlanPortModeEntry OBJECT-TYPE
SYNTAX VlanPortModeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The row definition for this table."
INDEX { ifIndex }
::= { vlanPortModeTable 1 }
VlanPortModeEntry ::= SEQUENCE {
vlanPortModeState INTEGER
}
vlanPortModeState OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The port state, 1 is generic cli"
::= { vlanPortModeEntry 1 }
vlanSendUnknownToAllPorts OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If a value of the parameter is true a frame with unknown
destination MAC address sent by the Layer 3 to a VLAN will be
sent to all ports of the VLAN.
If a value of the parameter is false a frame with unknown
destination MAC address sent by the Layer 3 to a VLAN will be
discarded."
DEFVAL { true }
::= { vlan 27 }
vlanDefaultSupported OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"supported or not default vlan."
::= { vlan 29 }
vlanDot1vSupported OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"802.1v standard for vlan per port and protocol."
::= { vlan 31 }
vlanDefaultEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"if supported default vlan , indicate enabled or disabled"
::= { vlan 32 }
vlanSpecialTagTable OBJECT-TYPE
SYNTAX SEQUENCE OF VlanSpecialTagEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"special vlan tag used for this port"
::= { vlan 33 }
vlanSpecialTagEntry OBJECT-TYPE
SYNTAX VlanSpecialTagEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" entry of special tag"
INDEX { ifIndex }
::= { vlanSpecialTagTable 1 }
VlanSpecialTagEntry ::= SEQUENCE {
vlanSpecialTagVID VlanIndex,
vlanSpecialTagStatus RowStatus
}
vlanSpecialTagVID OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"specify the special vlan tag ."
::= { vlanSpecialTagEntry 1 }
vlanSpecialTagStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The row status variable, used according to
row installation and removal conventions."
::= { vlanSpecialTagEntry 2 }
vlanSpecialTagCurrentTable OBJECT-TYPE
SYNTAX SEQUENCE OF VlanSpecialTagCurrentEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"special Current vlan tag used for this port"
::= { vlan 34 }
vlanSpecialTagCurrentEntry OBJECT-TYPE
SYNTAX VlanSpecialTagCurrentEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" entry of Current special tag"
INDEX { ifIndex }
::= { vlanSpecialTagCurrentTable 1 }
VlanSpecialTagCurrentEntry ::= SEQUENCE {
vlanSpecialTagCurrentVID VlanIndex,
vlanSpecialTagCurrentReserved TruthValue,
vlanSpecialTagCurrentActive TruthValue
}
vlanSpecialTagCurrentVID OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"specify the special vlan tag ."
::= { vlanSpecialTagCurrentEntry 1 }
vlanSpecialTagCurrentReserved OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"specify if the special vlan tag is reserved ."
::= { vlanSpecialTagCurrentEntry 2 }
vlanSpecialTagCurrentActive OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"specify if the special vlan tag is used ."
::= { vlanSpecialTagCurrentEntry 3 }
vlanPrivateEdgeSupported OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"is private edge supported."
::= { vlan 35 }
vlanPrivateEdgeVersion OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"private edge version."
::= { vlan 36 }
vlanPrivateEdgeTable OBJECT-TYPE
SYNTAX SEQUENCE OF VlanPrivateEdgeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"table for pve port and uplink"
::= { vlan 37 }
vlanPrivateEdgeEntry OBJECT-TYPE
SYNTAX VlanPrivateEdgeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" entry of pve"
INDEX { ifIndex }
::= { vlanPrivateEdgeTable 1 }
VlanPrivateEdgeEntry ::= SEQUENCE {
vlanPrivateEdgeUplink INTEGER,
vlanPrivateEdgeStatus RowStatus
}
vlanPrivateEdgeUplink OBJECT-TYPE
SYNTAX INTEGER (1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"specify the uplink port."
::= { vlanPrivateEdgeEntry 1 }
vlanPrivateEdgeStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The row status variable, used according to
row installation and removal conventions."
::= { vlanPrivateEdgeEntry 2 }
vlanDynamicVlanSupported OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"is DynamicVlanVlan supported."
::= { vlan 38 }
vlanDynamicVlanTable OBJECT-TYPE
SYNTAX SEQUENCE OF VlanDynamicVlanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"table for DynamicVlan"
::= { vlan 39 }
vlanDynamicVlanEntry OBJECT-TYPE
SYNTAX VlanDynamicVlanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" entry of DynamicVlan"
INDEX { vlanDynamicVlanMacAddress }
::= { vlanDynamicVlanTable 1 }
VlanDynamicVlanEntry ::= SEQUENCE {
vlanDynamicVlanMacAddress MacAddress,
vlanDynamicVlanTag VlanIndex,
vlanDynamicVlanStatus RowStatus
}
vlanDynamicVlanMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"mac address "
::= { vlanDynamicVlanEntry 1 }
vlanDynamicVlanTag OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"vlan Tag"
::= { vlanDynamicVlanEntry 2 }
vlanDynamicVlanStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The row status variable, used according to
row installation and removal conventions."
::= { vlanDynamicVlanEntry 3 }
vlanPortModeExtTable OBJECT-TYPE
SYNTAX SEQUENCE OF VlanPortModeExtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table hold information on port status trunk or access"
::= { vlan 40 }
vlanPortModeExtEntry OBJECT-TYPE
SYNTAX VlanPortModeExtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The row definition for this table."
INDEX { ifIndex }
::= { vlanPortModeExtTable 1 }
VlanPortModeExtEntry ::= SEQUENCE {
vlanPortModeExtState INTEGER,
vlanPortModeExtStatus RowStatus
}
vlanPortModeExtState OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The ext"
::= { vlanPortModeExtEntry 1 }
vlanPortModeExtStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The row status variable, used according to
row installation and removal conventions."
::= { vlanPortModeExtEntry 2 }
vlanPrivateSupported OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"is private vlan supported."
::= { vlan 41 }
vlanPrivateTableOld OBJECT-TYPE
SYNTAX SEQUENCE OF VlanPrivateEntryOld
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"table for PrivateVlan"
::= { vlan 42 }
vlanPrivateEntryOld OBJECT-TYPE
SYNTAX VlanPrivateEntryOld
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" entry of PrivateVlan"
INDEX { dot1qVlanIndex }
::= { vlanPrivateTableOld 1 }
VlanPrivateEntryOld ::= SEQUENCE {
vlanPrivateOldIsolatedVlanTag INTEGER,
vlanPrivateOldStatus RowStatus
}
vlanPrivateOldIsolatedVlanTag OBJECT-TYPE
SYNTAX INTEGER (0..4094)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"vlan Tag"
::= { vlanPrivateEntryOld 1 }
vlanPrivateOldStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The row status variable, used according to
row installation and removal conventions."
::= { vlanPrivateEntryOld 2 }
vlanPrivateCommunityTable OBJECT-TYPE
SYNTAX SEQUENCE OF VlanPrivateCommunityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"table for PrivateVlan"
::= { vlan 43 }
vlanPrivateCommunityEntry OBJECT-TYPE
SYNTAX VlanPrivateCommunityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" entry of PrivateVlan"
INDEX { dot1qVlanIndex, vlanPrivateCommunityVlanTag }
::= { vlanPrivateCommunityTable 1 }
VlanPrivateCommunityEntry ::= SEQUENCE {
vlanPrivateCommunityVlanTag VlanIndex,
vlanPrivateCommunityStatus RowStatus
}
vlanPrivateCommunityVlanTag OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"vlan Tag"
::= { vlanPrivateCommunityEntry 1 }
vlanPrivateCommunityStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The row status variable, used according to
row installation and removal conventions."
::= { vlanPrivateCommunityEntry 2 }
vlanMulticastTvTable OBJECT-TYPE
SYNTAX SEQUENCE OF VlanMulticastTvEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" multicast vlan used for this port"
::= { vlan 44 }
vlanMulticastTvEntry OBJECT-TYPE
SYNTAX VlanMulticastTvEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" entry of multicast tag"
INDEX { ifIndex }
::= { vlanMulticastTvTable 1 }
VlanMulticastTvEntry ::= SEQUENCE {
vlanMulticastTvVID VlanIndex,
vlanMulticastTvStatus RowStatus
}
vlanMulticastTvVID OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"specify the TV vlan tag, vlan must exist ."
::= { vlanMulticastTvEntry 1 }
vlanMulticastTvStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The row status variable, used according to
row installation and removal conventions."
::= { vlanMulticastTvEntry 2 }
-- -------------------------------------------------------------
-- vlanMacBaseVlan group
-- -------------------------------------------------------------
vlanMacBaseVlanGroupTable OBJECT-TYPE
SYNTAX SEQUENCE OF VlanMacBaseVlanGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains mappings from Range of MAC
addresses to Group Identifiers used for
MAC-based VLAN Classification."
::= { vlan 45 }
vlanMacBaseVlanGroupEntry OBJECT-TYPE
SYNTAX VlanMacBaseVlanGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A mapping from a Range of MAC addresses to a
Group Identifier."
INDEX { vlanMacBaseVlanMacAddress,
vlanMacBaseVlanMacMask }
::= { vlanMacBaseVlanGroupTable 1 }
VlanMacBaseVlanGroupEntry ::=
SEQUENCE {
vlanMacBaseVlanMacAddress
MacAddress,
vlanMacBaseVlanMacMask
INTEGER,
vlanMacBaseVlanGroupId
INTEGER,
vlanMacBaseVlanGroupRowStatus
RowStatus
}
vlanMacBaseVlanMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The base MAC address of the range."
REFERENCE
"IEEE 802.1v clause 8.6.2"
::= { vlanMacBaseVlanGroupEntry 1 }
vlanMacBaseVlanMacMask OBJECT-TYPE
SYNTAX INTEGER (9..48)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Mask of the range.
The mask determains the leading '1' bits of the mask (MSB).
48 means single HOST and 9 means the widest range.
The MASK is limited to 9 to avoid entring ranges including
multicast addresses.
"
::= { vlanMacBaseVlanGroupEntry 2 }
vlanMacBaseVlanGroupId OBJECT-TYPE
SYNTAX INTEGER (0..2147483647)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Represents a group of ranges of MAC addresses
that are associated together when assigning a
VID to a frame."
::= { vlanMacBaseVlanGroupEntry 3 }
vlanMacBaseVlanGroupRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the status of this entry."
::= { vlanMacBaseVlanGroupEntry 4 }
vlanMacBaseVlanPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF VlanMacBaseVlanPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains VID sets used for
MAC-based VLAN Classification."
::= { vlan 46 }
vlanMacBaseVlanPortEntry OBJECT-TYPE
SYNTAX VlanMacBaseVlanPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A VID set for a port and group."
INDEX { dot1dBasePort,
vlanMacBaseVlanPortGroupId }
::= { vlanMacBaseVlanPortTable 1 }
VlanMacBaseVlanPortEntry ::=
SEQUENCE {
vlanMacBaseVlanPortGroupId
INTEGER,
vlanMacBaseVlanPortGroupVid
VlanIndex,
vlanMacBaseVlanPortRowStatus
RowStatus
}
vlanMacBaseVlanPortGroupId OBJECT-TYPE
SYNTAX INTEGER (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Designates a group of Ranges in the ranges
Group Database."
::= { vlanMacBaseVlanPortEntry 1 }
vlanMacBaseVlanPortGroupVid OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The VID associated with a group of range MAC addresses for
each port."
::= { vlanMacBaseVlanPortEntry 2 }
vlanMacBaseVlanPortRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the status of this entry."
::= { vlanMacBaseVlanPortEntry 3 }
vlanPrivateEdgeGroupTable OBJECT-TYPE
SYNTAX SEQUENCE OF VlanPrivateEdgeGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"table for pve port and uplink"
::= { vlan 47 }
vlanPrivateEdgeGroupEntry OBJECT-TYPE
SYNTAX VlanPrivateEdgeGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" entry of pve"
INDEX { vlanPrivateEdgeGroupSource }
::= { vlanPrivateEdgeGroupTable 1 }
VlanPrivateEdgeGroupEntry ::= SEQUENCE {
vlanPrivateEdgeGroupSource INTEGER,
vlanPrivateEdgeGroupUplink INTEGER,
vlanPrivateEdgeGroupStatus RowStatus
}
vlanPrivateEdgeGroupSource OBJECT-TYPE
SYNTAX INTEGER (1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"specify the uplink group."
::= { vlanPrivateEdgeGroupEntry 1 }
vlanPrivateEdgeGroupUplink OBJECT-TYPE
SYNTAX INTEGER (1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"specify the uplink port."
::= { vlanPrivateEdgeGroupEntry 2 }
vlanPrivateEdgeGroupStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The row status variable, used according to
row installation and removal conventions."
::= { vlanPrivateEdgeGroupEntry 3 }
vlanPrivateEdgeGroupIfIndexTable OBJECT-TYPE
SYNTAX SEQUENCE OF VlanPrivateEdgeGroupIfIndexEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"table for pve port and uplink"
::= { vlan 48 }
vlanPrivateEdgeGroupIfIndexEntry OBJECT-TYPE
SYNTAX VlanPrivateEdgeGroupIfIndexEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" entry of pve"
INDEX { ifIndex }
::= { vlanPrivateEdgeGroupIfIndexTable 1 }
VlanPrivateEdgeGroupIfIndexEntry ::= SEQUENCE {
vlanPrivateEdgeGroupIfIndexID INTEGER,
vlanPrivateEdgeGroupIfIndexDomainID INTEGER
}
vlanPrivateEdgeGroupIfIndexID OBJECT-TYPE
SYNTAX INTEGER (1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"specify the ifIndex group id."
::= { vlanPrivateEdgeGroupIfIndexEntry 1 }
vlanPrivateEdgeGroupIfIndexDomainID OBJECT-TYPE
SYNTAX INTEGER (1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"specify the ifIndex group id."
::= { vlanPrivateEdgeGroupIfIndexEntry 2 }
-- -------------------------------------------------------------
-- vlanSubnetRange group
-- -------------------------------------------------------------
vlanSubnetRangeTable OBJECT-TYPE
SYNTAX SEQUENCE OF VlanSubnetRangeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table that contains mappings from subnet
range to Group Identifiers used for
Port-and-subnet-based VLAN Classification."
REFERENCE "IEEE 802.1v clause 8.6.4"
::= { vlan 49 }
vlanSubnetRangeEntry OBJECT-TYPE
SYNTAX VlanSubnetRangeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A mapping from a subnet to a
Group Identifier."
INDEX { vlanSubnetRangeAddr,
vlanSubnetRangeMask }
::= { vlanSubnetRangeTable 1 }
VlanSubnetRangeEntry ::=
SEQUENCE { vlanSubnetRangeAddr IpAddress,
vlanSubnetRangeMask INTEGER,
vlanSubnetRangeGroupId INTEGER,
vlanSubnetRangeRowStatus RowStatus }
vlanSubnetRangeAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The IP address of the range "
::= { vlanSubnetRangeEntry 1 }
vlanSubnetRangeMask OBJECT-TYPE
SYNTAX INTEGER (1..32)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The numbers of continuous ones in the mask "
::= { vlanSubnetRangeEntry 2 }
vlanSubnetRangeGroupId OBJECT-TYPE
SYNTAX INTEGER (0..2147483647)
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Represents a group of subnets that are associated
together when assigning a VID to a frame."
::= { vlanSubnetRangeEntry 3 }
vlanSubnetRangeRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This object indicates the status of this entry."
::= { vlanSubnetRangeEntry 4 }
-- port bind
vlanSubnetPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF VlanSubnetPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table that contains VID sets used for
Port-and-subnet-based VLAN Classification."
::= { vlan 50 }
vlanSubnetPortEntry OBJECT-TYPE
SYNTAX VlanSubnetPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A VID set for a port."
INDEX { dot1dBasePort, vlanSubnetPortGroupId }
::= { vlanSubnetPortTable 1 }
VlanSubnetPortEntry ::=
SEQUENCE { vlanSubnetPortGroupId INTEGER,
vlanSubnetPortGroupVid INTEGER,
vlanSubnetPortRowStatus RowStatus }
vlanSubnetPortGroupId OBJECT-TYPE
SYNTAX INTEGER (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Designates a group of subnets in the
Group Database."
::= { vlanSubnetPortEntry 1 }
vlanSubnetPortGroupVid OBJECT-TYPE
SYNTAX INTEGER (1..4094)
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The VID associated with a group of subnets for
each port."
::= { vlanSubnetPortEntry 2 }
vlanSubnetPortRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This object indicates the status of this entry."
::= { vlanSubnetPortEntry 3 }
----------------------
-- Triple Play
----------------------
-- vlanTriplePlayTable table converted to Inet See vlanInetTriplePlayTable
vlanTriplePlayTable OBJECT-TYPE
SYNTAX SEQUENCE OF VlanTriplePlayEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" TriplePlay table, map CPE vlan to multicastTvVlan"
::= { vlan 51}
vlanTriplePlayEntry OBJECT-TYPE
SYNTAX VlanTriplePlayEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" entry of TriplePlay table"
INDEX { vlanTriplePlayInnerVID }
::= { vlanTriplePlayTable 1 }
VlanTriplePlayEntry ::= SEQUENCE {
vlanTriplePlayInnerVID VlanIndex,
vlanTriplePlayMulticastTvVID VlanIndex,
vlanTriplePlayRowStatus RowStatus
}
vlanTriplePlayInnerVID OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" Specifies the CPE inner vlan."
::= { vlanTriplePlayEntry 1 }
vlanTriplePlayMulticastTvVID OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS read-create
STATUS current
DESCRIPTION
" Specifies the multicast TV outer vlan."
::= { vlanTriplePlayEntry 2 }
vlanTriplePlayRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The row status variable, used according to
row creation and removal conventions."
::= { vlanTriplePlayEntry 3 }
-- vlanTriplePlayMulticastTvTable table converted to Inet see vlanInetTriplePlayMulticastTvTable
vlanTriplePlayMulticastTvTable OBJECT-TYPE
SYNTAX SEQUENCE OF VlanTriplePlayMulticatTvEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" TriplePlayMulticastTv table saves a list of ports for a certain multicastTvVlan"
::= { vlan 52}
vlanTriplePlayMulticatTvEntry OBJECT-TYPE
SYNTAX VlanTriplePlayMulticatTvEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" entry of triple play MulticastTv table"
INDEX { vlanTriplePlayMulticastTvMulticastTvVID }
::= { vlanTriplePlayMulticastTvTable 1 }
VlanTriplePlayMulticatTvEntry ::= SEQUENCE {
vlanTriplePlayMulticastTvMulticastTvVID VlanIndex,
vlanTriplePlayMulticastTvMulticastTvPortList PortList
}
vlanTriplePlayMulticastTvMulticastTvVID OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies the multicast TV external vlan."
::= { vlanTriplePlayMulticatTvEntry 1 }
vlanTriplePlayMulticastTvMulticastTvPortList OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"the multicast tv port list."
::= { vlanTriplePlayMulticatTvEntry 2}
vlanDefaultExtManagment OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"enable disable ext managment on default vlan."
::= { vlan 53 }
-------------------------------
-- Voice VLAN MIBs definition
-------------------------------
-- deprecated
vlanVoice OBJECT IDENTIFIER ::= { vlan 54 }
vlanVoiceAgingTimeout OBJECT-TYPE
SYNTAX INTEGER (1..43200)
UNITS "minutes"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The vlanVoiceAgingTimeout indicates the time (in units of
minutes) from when the last OUI MAC was ageout from the FDB the port
will be removed from the Voice VLAN.
The default value for vlanVoiceAgingTimeout object is 1440 minutes (24 hours).
The value of this object must be restored from non-volatile
storage after a re-initialization of the management system."
DEFVAL { 1440 }
::= { vlanVoice 1 }
-- voice vlan table
vlanVoiceTable OBJECT-TYPE
SYNTAX SEQUENCE OF VlanVoiceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing static configuration information for
each voice VLAN configured into the device and dynamic port membership.
All entries are permanent and will
be restored after the device is reset."
::= { vlanVoice 2 }
vlanVoiceEntry OBJECT-TYPE
SYNTAX VlanVoiceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information for a voice VLAN configured into the device by management."
INDEX { dot1qVlanIndex }
::= { vlanVoiceTable 1 }
VlanVoiceEntry ::=
SEQUENCE {
vlanVoicePriority
INTEGER,
vlanVoicePriorityRemark
TruthValue,
vlanVoiceRowStatus
RowStatus
}
vlanVoicePriority OBJECT-TYPE
SYNTAX INTEGER (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"An administratively assigned Priority, which will be used
for all traffic on the voice vlan, this gives the packets
the requested priority (CoS) within the bridge."
DEFVAL{ 6 }
::= { vlanVoiceEntry 1 }
vlanVoicePriorityRemark OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Remark VPT on tagged frames egress the voice vlan according.
to priority true.false"
DEFVAL { false }
::= { vlanVoiceEntry 2 }
vlanVoiceRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the status of this entry."
::= { vlanVoiceEntry 3 }
-- Voice VLAN OUI Table
vlanVoiceOUITable OBJECT-TYPE
SYNTAX SEQUENCE OF VlanVoiceOUIEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing static global configuration information for Voice VLANs OUI MAC Prefixes.
All entries are permanent and will be restored after the device is reset."
::= { vlanVoice 3 }
vlanVoiceOUIEntry OBJECT-TYPE
SYNTAX VlanVoiceOUIEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information for a voice VLANs OUI MAC Prefixes configured into the
device by management."
INDEX { vlanVoiceOUIPrefix }
::= { vlanVoiceOUITable 1 }
VlanVoiceOUIEntry ::= SEQUENCE {
vlanVoiceOUIPrefix OCTET STRING,
vlanVoiceOUIDescription DisplayString,
vlanVoiceOUIEntryRowStatus RowStatus
}
vlanVoiceOUIPrefix OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(3))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index value used to identify the OUI MAC Prefix component
associated with this entry.
The value of this object is used as an index to the
vlanVoiceOUITable.
Voice VLANs OUI Prefix is the first 3 most significant
octets of the MAC address."
::= { vlanVoiceOUIEntry 1 }
vlanVoiceOUIDescription OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"An optional text that describes the OUI."
DEFVAL {""}
::= { vlanVoiceOUIEntry 2 }
vlanVoiceOUIEntryRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the status of this entry."
::= { vlanVoiceOUIEntry 3 }
-- Voice VLAN per Port configuration Table
vlanVoicePortTable OBJECT-TYPE
SYNTAX SEQUENCE OF VlanVoicePortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing static and dynamic per port configuration information for Voice VLAN.
All entries are permanent and will be restored after the device is reset."
::= { vlanVoice 4 }
vlanVoicePortEntry OBJECT-TYPE
SYNTAX VlanVoicePortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Static and dynamic per port information for a voice VLAN."
INDEX { ifIndex }
::= { vlanVoicePortTable 1 }
VlanVoicePortEntry ::= SEQUENCE {
vlanVoicePortEnable TruthValue,
vlanVoicePortVlanIndex VlanIndex,
vlanVoicePortSecure TruthValue,
vlanVoicePortCurrentMembership INTEGER {active(1),notActive(2)},
vlanVoicePortQosMode INTEGER {src(1),all(2)}
}
vlanVoicePortEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable this port to be a candidate to be added into the Voice VLAN."
DEFVAL{ false }
::= { vlanVoicePortEntry 1 }
vlanVoicePortVlanIndex OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Voice VLAN-ID the port is a candidate to be in."
DEFVAL{ 4095 }
::= { vlanVoicePortEntry 2 }
vlanVoicePortSecure OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specify this port to be in Secure Mode when entering the Voice VLAN.
In Secure mode only frames with MAC prefix matched to one of the OUI table prefixes
are accepted, otherwise dropped."
DEFVAL{ false }
::= { vlanVoicePortEntry 3 }
vlanVoicePortCurrentMembership OBJECT-TYPE
SYNTAX INTEGER {
active(1),
notActive(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Port's current status of membership in Voice VLAN.
Port's possible values of membership in Voice VLAN:
'Active(1)' - Port is currently added to a Voice VLAN .
'NotActive(2)' - Specifies either that port is a candidate to be
in Voice VLAN or disabled."
::= { vlanVoicePortEntry 4 }
vlanVoicePortQosMode OBJECT-TYPE
SYNTAX INTEGER {
src(1),
all(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Port's current QOS mode in Voice VLAN.
Possible values:
'src(1)' - Only traffic with OUI prefix in the source MAC received QOS of the Voice Vlan.
'all(2)' - All traffic through that port received QOS of the Voice Vlan."
::= { vlanVoicePortEntry 5 }
vlanVoiceOUISetToDefault OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The vlanVoiceOUISetToDefault indicates that vlanVoiceOUITable
should be set to it's default values if existed
(OUI default prefixes).
To do so the vlanVoiceOUITable should be previuosly deleted by usual
entries destroying.
This object behaviors as write-only than
reading this object will always return 'false'."
DEFVAL{ false }
::= { vlanVoice 5 }
--------------------------------------------------
-- Default VLAN tagged ports - MIBs definition
--------------------------------------------------
vlanDefault OBJECT IDENTIFIER ::= { vlan 55 }
vlanDefaultTaggedPorts OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"list of default valn tagged ports."
::= { vlanDefault 1 }
--------------------------------------------------
-- Default VLAN excluded ports - MIBs definition
--------------------------------------------------
vlanDefaultEnabledPorts OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"List of default VLAN membership enabled ports."
::= { vlanDefault 2 }
-- vlanInetTriplePlayTable (replaced DEPRICATED vlanTriplePlayTable)
vlanInetTriplePlayTable OBJECT-TYPE
SYNTAX SEQUENCE OF VlanInetTriplePlayEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" TriplePlay table, map CPE vlan to multicastTvVlan"
::= { vlan 56}
vlanInetTriplePlayEntry OBJECT-TYPE
SYNTAX VlanInetTriplePlayEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" entry of TriplePlay table"
INDEX { vlanInetTriplePlayInetAddressType, vlanTriplePlayInnerVID }
::= { vlanInetTriplePlayTable 1 }
VlanInetTriplePlayEntry ::= SEQUENCE {
vlanInetTriplePlayInetAddressType InetAddressType,
vlanInetTriplePlayInnerVID VlanIndex,
vlanInetTriplePlayMulticastTvVID VlanIndex,
vlanInetTriplePlayRowStatus RowStatus
}
vlanInetTriplePlayInetAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Inet type IPv4/IPv6."
::= { vlanInetTriplePlayEntry 1 }
vlanInetTriplePlayInnerVID OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" Specifies the CPE inner vlan."
::= { vlanInetTriplePlayEntry 2 }
vlanInetTriplePlayMulticastTvVID OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS read-create
STATUS current
DESCRIPTION
" Specifies the multicast TV outer vlan."
::= { vlanInetTriplePlayEntry 3 }
vlanInetTriplePlayRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The row status variable, used according to
row creation and removal conventions."
::= { vlanInetTriplePlayEntry 4 }
-- vlanInetTriplePlayMulticastTvTable (replaced DEPRICATED vlanTriplePlayMulticastTvTable)
vlanInetTriplePlayMulticastTvTable OBJECT-TYPE
SYNTAX SEQUENCE OF VlanInetTriplePlayMulticatTvEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" TriplePlayMulticastTv table saves a list of ports for a certain multicastTvVlan"
::= { vlan 57 }
vlanInetTriplePlayMulticatTvEntry OBJECT-TYPE
SYNTAX VlanInetTriplePlayMulticatTvEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" entry of triple play MulticastTv table"
INDEX { vlanTriplePlayMulticastTvMulticastTvVID }
::= { vlanInetTriplePlayMulticastTvTable 1 }
VlanInetTriplePlayMulticatTvEntry ::= SEQUENCE {
vlanInetTriplePlayMulticastTvMulticastTvVID VlanIndex,
vlanInetTriplePlayMulticastTvMulticastTvPortList PortList
}
vlanInetTriplePlayMulticastTvMulticastTvVID OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies the multicast TV external vlan."
::= { vlanInetTriplePlayMulticatTvEntry 1 }
vlanInetTriplePlayMulticastTvMulticastTvPortList OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"the multicast tv port list."
::= { vlanInetTriplePlayMulticatTvEntry 2}
vlanAsymmetricEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates enabled or disabled of Asymetric Vlan"
::= { vlan 58 }
--------------------------------------------------
-- Private VLAN - MIBs definition
--------------------------------------------------
-- vlanPrivateTable
vlanPrivateTable OBJECT-TYPE
SYNTAX SEQUENCE OF VlanPrivateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Private vlan table which contains the private vlan entries."
::= { vlan 59 }
vlanPrivateEntry OBJECT-TYPE
SYNTAX VlanPrivateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Private vlan entry which contains the private vlan definition."
INDEX { vlanPrivateVid }
::= { vlanPrivateTable 1 }
VlanPrivateEntry ::= SEQUENCE {
vlanPrivateVid VlanIndex,
vlanPrivateType INTEGER,
vlanPrivatePrimaryVid VlanIndex,
vlanPrivateStatus RowStatus
}
vlanPrivateVid OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The static vlan ID which is set to one of the
private vlan types."
::= { vlanPrivateEntry 1 }
vlanPrivateType OBJECT-TYPE
SYNTAX INTEGER {
primary(1),
isolated(2),
community(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"private vlan types:
primary - Carries traffic from promiscuous ports.
promiscuous port can communicate with all ports of the
same PVLAN, including the isolated and community
ports of the same PVLAN.
isolated - Carries traffic from isolated ports.
isolated ports can communicate only with the
promiscuous ports of the same PVLAN.
community - Carries traffic from community ports.
community ports of the same community can communicate
among themselves and with the promiscuous ports of the
same PVLAN."
DEFVAL { primary }
::= { vlanPrivateEntry 2 }
vlanPrivatePrimaryVid OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The primary vlan ID which has defined in VlanPrivateEntry and which is
associated with secondary vlan (in vlanPrivateMapTable).
vlanPrivatePrimaryVid is equivalent to vlanPrivateVid when vlanPrivateVid is
primary vlan."
::= { vlanPrivateEntry 3 }
vlanPrivateStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The row status variable, used according to
row installation and removal conventions."
::= { vlanPrivateEntry 4 }
-- end of vlanPrivateTable
-- vlanPrivateMapTable
vlanPrivateMapTable OBJECT-TYPE
SYNTAX SEQUENCE OF VlanPrivateMapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Private vlan mapping table which contains the private vlan mapping entries."
::= { vlan 60 }
vlanPrivateMapEntry OBJECT-TYPE
SYNTAX VlanPrivateMapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Private vlan mapping entry which contains the primary / secondary
private vlan association and their ports membership."
INDEX { vlanPrivateMapPrimaryVid, vlanPrivateMapSecondaryVid }
::= { vlanPrivateMapTable 1 }
VlanPrivateMapEntry ::= SEQUENCE {
vlanPrivateMapPrimaryVid VlanIndex,
vlanPrivateMapSecondaryVid VlanIndex,
vlanPrivateMapPrimaryPorts PortList,
vlanPrivateMapSecondaryPorts PortList,
vlanPrivateMapPrimaryOperPorts PortList,
vlanPrivateMapSecondaryOperPorts PortList,
vlanPrivateMapStatus RowStatus
}
vlanPrivateMapPrimaryVid OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The primary private vlan ID which is associated with the secondary
(isolated or community) vlan (vlanPrivateMapSecondaryVid)."
::= { vlanPrivateMapEntry 1 }
vlanPrivateMapSecondaryVid OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The secondary private vlan ID which is associated with the primary
vlan (vlanPrivateMapPrimaryVid)."
::= { vlanPrivateMapEntry 2 }
vlanPrivateMapPrimaryPorts OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The private vlan promiscuous ports mode which are belongs to the
association of vlanPrivateMapPrimaryVid and vlanPrivateMapSecondaryVid."
::= { vlanPrivateMapEntry 3}
vlanPrivateMapSecondaryPorts OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The private vlan host ports mode which are belongs to the
association of vlanPrivateMapPrimaryVid and vlanPrivateMapSecondaryVid."
::= { vlanPrivateMapEntry 4}
vlanPrivateMapPrimaryOperPorts OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The private vlan active promiscuous ports mode which are belongs to the
association of vlanPrivateMapPrimaryVid and vlanPrivateMapSecondaryVid."
::= { vlanPrivateMapEntry 5}
vlanPrivateMapSecondaryOperPorts OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The private vlan active host ports mode which are belongs to the
association of vlanPrivateMapPrimaryVid and vlanPrivateMapSecondaryVid."
::= { vlanPrivateMapEntry 6}
vlanPrivateMapStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The row status variable, used according to
row installation and removal conventions."
::= { vlanPrivateMapEntry 7 }
-- end of vlanPrivateMapTable
-- vlanTrunkModePortTable
vlanTrunkPortModeTable OBJECT-TYPE
SYNTAX SEQUENCE OF VlanTrunkPortModeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The tables contains trunk mode port entries."
::= { vlan 61}
vlanTrunkPortModeEntry OBJECT-TYPE
SYNTAX VlanTrunkPortModeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" The entry contains port ifIndex,native vlan id and vlan list the port has a membership.
The vlan list can contain not created vlans."
INDEX { ifIndex }
::= { vlanTrunkPortModeTable 1 }
VlanTrunkPortModeEntry::=SEQUENCE{
vlanTrunkPortModeNativeVlanId VlanIndex,
vlanTrunkModeList1to1024 VlanList1,
vlanTrunkModeList1025to2048 VlanList2,
vlanTrunkModeList2049to3072 VlanList3,
vlanTrunkModeList3073to4094 VlanList4
}
vlanTrunkPortModeNativeVlanId OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicated native vlan index.Default value 0"
DEFVAL {0}
::= { vlanTrunkPortModeEntry 1 }
vlanTrunkModeList1to1024 OBJECT-TYPE
SYNTAX VlanList1
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"vlan trunk mode list 1. Default value is {0}"
::= { vlanTrunkPortModeEntry 2 }
vlanTrunkModeList1025to2048 OBJECT-TYPE
SYNTAX VlanList2
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"vlan trunk mode list 2. Default value is {0}"
::= { vlanTrunkPortModeEntry 3 }
vlanTrunkModeList2049to3072 OBJECT-TYPE
SYNTAX VlanList3
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"vlan trunk mode list 3. Default value is {0}"
::= { vlanTrunkPortModeEntry 4 }
vlanTrunkModeList3073to4094 OBJECT-TYPE
SYNTAX VlanList4
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"vlan trunk mode list 4. Default value is {0}"
::= { vlanTrunkPortModeEntry 5 }
-- vlanAccessModePortTable
vlanAccessPortModeTable OBJECT-TYPE
SYNTAX SEQUENCE OF VlanAccessPortModeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The tables contains access mode port entries."
::= { vlan 62}
vlanAccessPortModeEntry OBJECT-TYPE
SYNTAX VlanAccessPortModeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" The entry contains port ifIndex,access vlan id and multicast TV vlan id."
INDEX { ifIndex }
::= { vlanAccessPortModeTable 1 }
VlanAccessPortModeEntry::=SEQUENCE{
vlanAccessPortModeVlanId VlanIndex,
vlanAccessPortModeMcstTvVlanId VlanIndex
}
vlanAccessPortModeVlanId OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicated access vlan id.Default value is 0"
DEFVAL { 0 }
::= { vlanAccessPortModeEntry 1 }
vlanAccessPortModeMcstTvVlanId OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicated multicast TV vlan id. "
::= { vlanAccessPortModeEntry 2 }
-- vlanCustomerModePortTable
vlanCustomerPortModeTable OBJECT-TYPE
SYNTAX SEQUENCE OF VlanCustomerPortModeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The tables contains customer mode port entries."
::= { vlan 63}
vlanCustomerPortModeEntry OBJECT-TYPE
SYNTAX VlanCustomerPortModeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" The entry contains port ifIndex,customer vlan id and customer multicast TV vlan id."
INDEX { ifIndex }
::= { vlanCustomerPortModeTable 1 }
VlanCustomerPortModeEntry::=SEQUENCE{
vlanCustomerPortModeVlanId VlanIndex,
vlanCustomerPortModeMtvList1to1024 VlanList1,
vlanCustomerPortModeMtvList1025to2048 VlanList2,
vlanCustomerPortModeMtvList2049to3072 VlanList3,
vlanCustomerPortModeMtvList3073to4094 VlanList4
}
vlanCustomerPortModeVlanId OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicated customer vlan id.Default value is 0"
DEFVAL { 0 }
::= { vlanCustomerPortModeEntry 1 }
vlanCustomerPortModeMtvList1to1024 OBJECT-TYPE
SYNTAX VlanList1
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"vlan customer port mode multicast TV list 1. Default value is {0}"
::= { vlanCustomerPortModeEntry 2 }
vlanCustomerPortModeMtvList1025to2048 OBJECT-TYPE
SYNTAX VlanList2
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"vlan customer port mode multicast TV list 2. Default value is {0}"
::= { vlanCustomerPortModeEntry 3 }
vlanCustomerPortModeMtvList2049to3072 OBJECT-TYPE
SYNTAX VlanList3
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"vlan customer port mode multicast TV list 3. Default value is {0}"
::= { vlanCustomerPortModeEntry 4 }
vlanCustomerPortModeMtvList3073to4094 OBJECT-TYPE
SYNTAX VlanList4
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"vlan customer port mode multicast TV list 4. Default value is {0}"
::= { vlanCustomerPortModeEntry 5 }
vlanSwitchPortModeTable OBJECT-TYPE
SYNTAX SEQUENCE OF VlanSwitchPortModeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The table defines L3/L2 port context."
::= { vlan 64}
vlanSwitchPortModeEntry OBJECT-TYPE
SYNTAX VlanSwitchPortModeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry contains port ifIndex and switch port enable value."
INDEX { ifIndex }
::= { vlanSwitchPortModeTable 1 }
VlanSwitchPortModeEntry::=SEQUENCE{
vlanSwitchPortModeCategory INTEGER
}
vlanSwitchPortModeCategory OBJECT-TYPE
SYNTAX INTEGER {
l2(1),
l3(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Indicated if a port is switchport (l2 port) or no switchport (l3 port)
1 - switchport
2 - no switchport. Default is 1"
DEFVAL { 1 }
::= { vlanSwitchPortModeEntry 1 }
vlanPortModeContextTable OBJECT-TYPE
SYNTAX SEQUENCE OF VlanPortModeContextEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The tables contains current port mode context entries."
::= { vlan 65}
vlanPortModeContextEntry OBJECT-TYPE
SYNTAX VlanPortModeContextEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry contains current port mode context."
INDEX { ifIndex }
::= { vlanPortModeContextTable 1 }
VlanPortModeContextEntry::=SEQUENCE{
vlanPortModeContextValue INTEGER
}
vlanPortModeContextValue OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Indicated port context value:
0. Lag
1. Monitor
2. L3
3. RAVA
4. Dot1x
5. Dot1q
6. Access
7. Trunk
8. Customer
9. PV_promisc
10. PV_host
11. VM_tunnel
12. VM_one_to_one"
::= { vlanPortModeContextEntry 1 }
-- vlanRsvl MIBs reservation
-- vlanRsvlEnable
vlanRsvlEnable OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable / Disable Shared Vlans at the device."
::= { vlan 66 }
-- vlanRsvlMapTable
vlanRsvlMapTable OBJECT-TYPE
SYNTAX SEQUENCE OF VlanRsvlMapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Shared vlan learning mapping table which contains the SVL mapping entries."
::= { vlan 67 }
vlanRsvlMapEntry OBJECT-TYPE
SYNTAX VlanRsvlMapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"SVL mapping entry which contains the primary / secondary
SVL association."
INDEX { vlanRsvlMapPrimaryVid, vlanRsvlMapSecondaryVid }
::= { vlanRsvlMapTable 1 }
VlanRsvlMapEntry ::= SEQUENCE {
vlanRsvlMapPrimaryVid VlanIndex,
vlanRsvlMapSecondaryVid VlanIndex,
vlanRsvlMapStatus RowStatus
}
vlanRsvlMapPrimaryVid OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The primary SVL ID which is associated with the secondary
shared vlan vlanRsvlMapSecondaryVid."
::= { vlanRsvlMapEntry 1 }
vlanRsvlMapSecondaryVid OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The secondary SVL ID which is associated with the primary
shared vlan vlanRsvlMapPrimaryVid."
::= { vlanRsvlMapEntry 2 }
vlanRsvlMapStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The row status variable, used according to
row installation and removal conventions."
::= { vlanRsvlMapEntry 3 }
rldot1qPortVlanStaticTable OBJECT-TYPE
SYNTAX SEQUENCE OF Rldot1qPortVlanStaticEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing static vlan port membership information."
::= { vlan 68 }
rldot1qPortVlanStaticEntry OBJECT-TYPE
SYNTAX Rldot1qPortVlanStaticEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Static vlan membership information per port"
INDEX {ifIndex}
::= { rldot1qPortVlanStaticTable 1 }
Rldot1qPortVlanStaticEntry ::=SEQUENCE {
rldot1qPortVlanStaticEgressList1to1024 VlanList1,
rldot1qPortVlanStaticEgressList1025to2048 VlanList2,
rldot1qPortVlanStaticEgressList2049to3072 VlanList3,
rldot1qPortVlanStaticEgressList3073to4094 VlanList4,
rldot1qPortVlanStaticUntaggedEgressList1to1024 VlanList1,
rldot1qPortVlanStaticUntaggedEgressList1025to2048 VlanList2,
rldot1qPortVlanStaticUntaggedEgressList2049to3072 VlanList3,
rldot1qPortVlanStaticUntaggedEgressList3073to4094 VlanList4,
rldot1qPortVlanStaticForbiddenList1to1024 VlanList1,
rldot1qPortVlanStaticForbiddenList1025to2048 VlanList2,
rldot1qPortVlanStaticForbiddenList2049to3072 VlanList3,
rldot1qPortVlanStaticForbiddenList3073to4094 VlanList4
}
rldot1qPortVlanStaticEgressList1to1024 OBJECT-TYPE
SYNTAX VlanList1
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The port egress vlan static list.Default value is {0}"
DEFVAL {'00'H}
::= { rldot1qPortVlanStaticEntry 1 }
rldot1qPortVlanStaticEgressList1025to2048 OBJECT-TYPE
SYNTAX VlanList2
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The port egress vlan static list.Default value is {0}"
DEFVAL {'00'H}
::= { rldot1qPortVlanStaticEntry 2 }
rldot1qPortVlanStaticEgressList2049to3072 OBJECT-TYPE
SYNTAX VlanList3
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The port egress vlan static list.Default value is {0}"
DEFVAL {'00'H}
::= { rldot1qPortVlanStaticEntry 3 }
rldot1qPortVlanStaticEgressList3073to4094 OBJECT-TYPE
SYNTAX VlanList4
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The port egress vlan static list.Default value is {0}"
DEFVAL {'00'H}
::= { rldot1qPortVlanStaticEntry 4}
rldot1qPortVlanStaticUntaggedEgressList1to1024 OBJECT-TYPE
SYNTAX VlanList1
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The port egress untagged vlan static list.Default value is {0}"
DEFVAL {'00'H}
::= { rldot1qPortVlanStaticEntry 5 }
rldot1qPortVlanStaticUntaggedEgressList1025to2048 OBJECT-TYPE
SYNTAX VlanList2
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The port egress untagged vlan static list.Default value is {0}"
DEFVAL {'00'H}
::= { rldot1qPortVlanStaticEntry 6 }
rldot1qPortVlanStaticUntaggedEgressList2049to3072 OBJECT-TYPE
SYNTAX VlanList3
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The port egress untagged vlan static list.Default value is {0}"
DEFVAL {'00'H}
::= { rldot1qPortVlanStaticEntry 7 }
rldot1qPortVlanStaticUntaggedEgressList3073to4094 OBJECT-TYPE
SYNTAX VlanList4
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The port egress untagged vlan static list.Default value is {0}"
DEFVAL {'00'H}
::= { rldot1qPortVlanStaticEntry 8}
rldot1qPortVlanStaticForbiddenList1to1024 OBJECT-TYPE
SYNTAX VlanList1
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The port forbidden vlan static list.Default value is {0}"
DEFVAL {'00'H}
::= { rldot1qPortVlanStaticEntry 9 }
rldot1qPortVlanStaticForbiddenList1025to2048 OBJECT-TYPE
SYNTAX VlanList2
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The port forbidden vlan static list.Default value is {0}"
DEFVAL {'00'H}
::= { rldot1qPortVlanStaticEntry 10 }
rldot1qPortVlanStaticForbiddenList2049to3072 OBJECT-TYPE
SYNTAX VlanList3
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The port forbidden vlan static list.Default value is {0}"
DEFVAL {'00'H}
::= { rldot1qPortVlanStaticEntry 11 }
rldot1qPortVlanStaticForbiddenList3073to4094 OBJECT-TYPE
SYNTAX VlanList4
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The port forbidden vlan static list.Default value is {0}"
DEFVAL {'00'H}
::= { rldot1qPortVlanStaticEntry 12}
rldot1qVlanStaticListTable OBJECT-TYPE
SYNTAX SEQUENCE OF Rldot1qVlanStaticListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table contains only one entry of a static vlan list."
::= { vlan 69 }
rldot1qVlanStaticListEntry OBJECT-TYPE
SYNTAX Rldot1qVlanStaticListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Staticly created by local or network management vlan list"
INDEX {rldot1qVlanStaticListIndex}
::= { rldot1qVlanStaticListTable 1 }
Rldot1qVlanStaticListEntry ::=SEQUENCE {
rldot1qVlanStaticListIndex INTEGER,
rldot1qVlanStaticList1to1024 VlanList1,
rldot1qVlanStaticList1025to2048 VlanList2,
rldot1qVlanStaticList2049to3072 VlanList3,
rldot1qVlanStaticList3073to4094 VlanList4
}
rldot1qVlanStaticListIndex OBJECT-TYPE
SYNTAX INTEGER {
static(0),
dynamicGvrp(1),
dynamicRava(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"An index is entrie's sequence.
This field substitutes a vlan type.
If the vlan was created by user configuration then
the type is static.
If the vlan was created by GVRP/MVRP protocols then the type is dynamicGvrp.
If the vlan was created by Radius server attribute assignment mechanism then
the type is dynamicRava.
current includes all vlans which are exist in dot1qVlanCurrentTable."
::= { rldot1qVlanStaticListEntry 1}
rldot1qVlanStaticList1to1024 OBJECT-TYPE
SYNTAX VlanList1
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A list of staticaly created vlans from 1 to 1024."
::= { rldot1qVlanStaticListEntry 2}
rldot1qVlanStaticList1025to2048 OBJECT-TYPE
SYNTAX VlanList2
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A list of according to the type field created vlans from 1025 to 2048."
DEFVAL {'00'H}
::= { rldot1qVlanStaticListEntry 3}
rldot1qVlanStaticList2049to3072 OBJECT-TYPE
SYNTAX VlanList3
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A list of according to the type field created vlans from 2049 to 3072."
DEFVAL {'00'H}
::= { rldot1qVlanStaticListEntry 4}
rldot1qVlanStaticList3073to4094 OBJECT-TYPE
SYNTAX VlanList4
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A list of according to the type field created vlans from 3073 to 4094."
DEFVAL {'00'H}
::= { rldot1qVlanStaticListEntry 5}
rldot1qVlanStaticNameTable OBJECT-TYPE
SYNTAX SEQUENCE OF Rldot1qVlanStaticNameEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table contains created by user vlans names."
::= { vlan 70 }
rldot1qVlanStaticNameEntry OBJECT-TYPE
SYNTAX Rldot1qVlanStaticNameEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Staticly created by local or network management vlan list"
INDEX {dot1qVlanIndex}
::= { rldot1qVlanStaticNameTable 1 }
Rldot1qVlanStaticNameEntry ::=SEQUENCE {
rldot1qVlanStaticName SnmpAdminString
}
rldot1qVlanStaticName OBJECT-TYPE
SYNTAX SnmpAdminString(SIZE(0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"An administratively assigned string,which may be used
to identify the VLAN. The VLAN name must be unique or no name."
REFERENCE "IEEE 802.1Q/D11 Section 12.10.2.1"
DEFVAL {""}
::= { rldot1qVlanStaticNameEntry 1}
rlPortVlanTriplePlayMulticastTvTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlPortVlanTriplePlayMulticastTvEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table saves a list of vlans per port/lag."
::= { vlan 71 }
rlPortVlanTriplePlayMulticastTvEntry OBJECT-TYPE
SYNTAX RlPortVlanTriplePlayMulticastTvEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry of Triple Play Multicast Tv table."
INDEX {ifIndex}
::= { rlPortVlanTriplePlayMulticastTvTable 1 }
RlPortVlanTriplePlayMulticastTvEntry ::=SEQUENCE {
rlPortVlanTriplePlayMulticastTvList1to1024 VlanList1,
rlPortVlanTriplePlayMulticastTvList1025to2048 VlanList2,
rlPortVlanTriplePlayMulticastTvList2049to3072 VlanList3,
rlPortVlanTriplePlayMulticastTvList3073to4094 VlanList4
}
rlPortVlanTriplePlayMulticastTvList1to1024 OBJECT-TYPE
SYNTAX VlanList1
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A list of staticaly created Triple Play MTV vlans from 1 to 1024."
::= { rlPortVlanTriplePlayMulticastTvEntry 1}
rlPortVlanTriplePlayMulticastTvList1025to2048 OBJECT-TYPE
SYNTAX VlanList2
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A list of staticaly created Triple Play MTV vlans from 1025 to 2048."
::= { rlPortVlanTriplePlayMulticastTvEntry 2}
rlPortVlanTriplePlayMulticastTvList2049to3072 OBJECT-TYPE
SYNTAX VlanList3
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A list of staticaly created Triple Play MTV vlans from 2049 to 3072."
::= { rlPortVlanTriplePlayMulticastTvEntry 3}
rlPortVlanTriplePlayMulticastTvList3073to4094 OBJECT-TYPE
SYNTAX VlanList4
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A list of staticaly created Triple Play MTV vlans from 3073 to 4094."
::= { rlPortVlanTriplePlayMulticastTvEntry 4}
rldot1qVlanMembershipTypeTable OBJECT-TYPE
SYNTAX SEQUENCE OF Rldot1qVlanMembershipTypeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table contains a bitmap of the VLAN owners(applications) that can create the VLAN and/or add a port to the VLAN."
::= { vlan 72 }
rldot1qVlanMembershipTypeEntry OBJECT-TYPE
SYNTAX Rldot1qVlanMembershipTypeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Staticly or dynamicly created VLAN ID owner entry"
INDEX {dot1qVlanIndex}
::= { rldot1qVlanMembershipTypeTable 1 }
Rldot1qVlanMembershipTypeEntry ::=SEQUENCE {
rldot1qVlanMembershipTypeBitmap INTEGER
}
rldot1qVlanMembershipTypeBitmap OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This field contains a bitmap of owners that can creates and/or add a port
to the VLAN.
There exist three such type of owners :
Default VLAN
Manual created VLAN
Dynamic(RAVA)created VLAN
GVRP(MVRP)created VLAN
"
::= { rldot1qVlanMembershipTypeEntry 1}
rlRspanRemoteVlan OBJECT-TYPE
SYNTAX INTEGER (0..4094)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"1-4094 actual vlan (must exist in dot1qvlan static table)"
DEFVAL { 4094 }
::= { vlan 73 }
-- vlan mapping
vlanMappingEthType OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Ethernet Type used for VLAN Mapping tunnel"
DEFVAL { 33024 }
::= { vlan 74 }
--vlanMappingTunnel - definition
vlanMappingTunnelEdgePortConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF VlanMappingTunnelEdgePortConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The tables contains vlan mapping tunnel mode port configuration entries."
::= { vlan 75}
vlanMappingTunnelEdgePortConfigEntry OBJECT-TYPE
SYNTAX VlanMappingTunnelEdgePortConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" The entry contains port ifIndex, ethernet type value and L2protocol behavior for Edge port."
INDEX { ifIndex }
::= { vlanMappingTunnelEdgePortConfigTable 1 }
VlanMappingTunnelEdgePortConfigEntry::=SEQUENCE{
vlanMappingTunnelEdgePortConfigVlanId VlanIndex,
vlanMappingTunnelEdgePortConfigCos INTEGER,
vlanMappingTunnelEdgePortConfigDropThreshold INTEGER,
vlanMappingTunnelEdgePortConfigShutdownThreshold INTEGER,
vlanMappingTunnelEdgePortConfigForwardCDP TruthValue,
vlanMappingTunnelEdgePortConfigForwardLLDP TruthValue,
vlanMappingTunnelEdgePortConfigForwardSTP TruthValue,
vlanMappingTunnelEdgePortConfigForwardVTP TruthValue
}
vlanMappingTunnelEdgePortConfigVlanId OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies S-VLAN-ID used to encapsulate of forwarded untagged Layer 2 frames."
::= { vlanMappingTunnelEdgePortConfigEntry 1 }
vlanMappingTunnelEdgePortConfigCos OBJECT-TYPE
SYNTAX INTEGER (0..8)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specify class of service (CoS) value into S-VLAN tag of forwarded Layer 2 frames."
DEFVAL { 8 }
::= { vlanMappingTunnelEdgePortConfigEntry 2 }
vlanMappingTunnelEdgePortConfigDropThreshold OBJECT-TYPE
SYNTAX INTEGER (0..256)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set a drop threshold for received forwarded L2 protocol frames in kbps resolution."
DEFVAL { 32 }
::= { vlanMappingTunnelEdgePortConfigEntry 3 }
vlanMappingTunnelEdgePortConfigShutdownThreshold OBJECT-TYPE
SYNTAX INTEGER (0..1024)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set a shutdown threshold for received forwarded L2 protocol frames in packets-per-second resolution."
::= { vlanMappingTunnelEdgePortConfigEntry 4 }
vlanMappingTunnelEdgePortConfigForwardCDP OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Configure CDP forward over the Provider network untagged Layer 2 frames received."
DEFVAL { false }
::= { vlanMappingTunnelEdgePortConfigEntry 5 }
vlanMappingTunnelEdgePortConfigForwardLLDP OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Configure LLDP forward over the Provider network untagged Layer 2 frames received."
DEFVAL { false }
::= { vlanMappingTunnelEdgePortConfigEntry 6 }
vlanMappingTunnelEdgePortConfigForwardSTP OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Configure STP forward over the Provider network untagged Layer 2 frames received."
DEFVAL { false }
::= { vlanMappingTunnelEdgePortConfigEntry 7 }
vlanMappingTunnelEdgePortConfigForwardVTP OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Configure VTP forward over the Provider network untagged Layer 2 frames received."
DEFVAL { false }
::= { vlanMappingTunnelEdgePortConfigEntry 8 }
--vlanMappingTunnelNniPortConfigTable
vlanMappingTunnelNniPortConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF VlanMappingTunnelNniPortConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table contains vlan mapping tunnel mode port configuration entries."
::= { vlan 76}
vlanMappingTunnelNniPortConfigEntry OBJECT-TYPE
SYNTAX VlanMappingTunnelNniPortConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" The entry contains port ifIndex, ethernet type value for NNI port."
INDEX { ifIndex }
::= { vlanMappingTunnelNniPortConfigTable 1 }
VlanMappingTunnelNniPortConfigEntry::=SEQUENCE{
vlanMappingTunnelNniPortConfigEthTypeValue INTEGER,
vlanMappingTunnelNniPortConfigRowStatus RowStatus
}
vlanMappingTunnelNniPortConfigEthTypeValue OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicated ethernet type. Default is 0x8100. "
DEFVAL { 8100 }
::= { vlanMappingTunnelNniPortConfigEntry 1 }
vlanMappingTunnelNniPortConfigRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The row status variable, used according to
row installation and removal conventions."
::= { vlanMappingTunnelNniPortConfigEntry 2 }
VlanMappingTunnelPortType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "VLAN mapping port type:
1 - edge
2 - NNI."
SYNTAX INTEGER {
edge(1),
nni(2)
}
VlanMappingTunnelPortMode ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "VLAN mapping port mode:
1 - QinQ
2 - selective QinQ."
SYNTAX INTEGER {
qinq(1),
selqinq(2)
}
VlanMappingDefaultConfigMode ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "VLAN mapping default VLAN configuration:
1 - set
2 - unset."
SYNTAX INTEGER {
set(1),
unset(2)
}
VlanMappingActionConfigMode ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "VLAN mapping action for S-VLAN configuration:
1 - forward
2 - drop."
SYNTAX INTEGER {
forward(1),
drop(2)
}
-- vlanMappingTunnelEdgePortTable
vlanMappingTunnelEdgePortTable OBJECT-TYPE
SYNTAX SEQUENCE OF VlanMappingTunnelEdgePortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The tables contains vlan mapping tunnel mode port."
::= { vlan 77}
vlanMappingTunnelEdgePortEntry OBJECT-TYPE
SYNTAX VlanMappingTunnelEdgePortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" The entry contains VLAN mapping configuration for edge port, C-VLAN and S-VLAN."
INDEX { ifIndex,
vlanMappingTunnelEdgePortCVlanTag}
::= { vlanMappingTunnelEdgePortTable 1 }
VlanMappingTunnelEdgePortEntry::=SEQUENCE{
vlanMappingTunnelEdgePortCVlanTag VlanIndex,
vlanMappingTunnelEdgePortSVlanTag VlanIndex,
vlanMappingTunnelEdgePortDefaultConfig VlanMappingDefaultConfigMode,
vlanMappingTunnelEdgePortActionConfig VlanMappingActionConfigMode,
vlanMappingTunnelEdgePortIsActiveEdge VlanMappingTunnelPortType,
vlanMappingTunnelEdgePortMapMode VlanMappingTunnelPortMode,
vlanMappingTunnelEdgePortRowStatus RowStatus
}
vlanMappingTunnelEdgePortCVlanTag OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"C-VLAN value to be encapsulated."
::= { vlanMappingTunnelEdgePortEntry 1 }
vlanMappingTunnelEdgePortSVlanTag OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"S-VLAN value."
::= { vlanMappingTunnelEdgePortEntry 2 }
vlanMappingTunnelEdgePortDefaultConfig OBJECT-TYPE
SYNTAX VlanMappingDefaultConfigMode
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"VLAN mapping default VLAN configuration exists."
DEFVAL { 2 }
::= { vlanMappingTunnelEdgePortEntry 3 }
vlanMappingTunnelEdgePortActionConfig OBJECT-TYPE
SYNTAX VlanMappingActionConfigMode
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"VLAN mapping action defined."
DEFVAL { 1 }
::= { vlanMappingTunnelEdgePortEntry 4 }
vlanMappingTunnelEdgePortIsActiveEdge OBJECT-TYPE
SYNTAX VlanMappingTunnelPortType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"VLAN mapping port type - edge or NNI."
DEFVAL { 2 }
::= { vlanMappingTunnelEdgePortEntry 5 }
vlanMappingTunnelEdgePortMapMode OBJECT-TYPE
SYNTAX VlanMappingTunnelPortMode
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"VLAN mapping port mode - QinQ or selective QinQ."
DEFVAL { 2 }
::= { vlanMappingTunnelEdgePortEntry 6 }
vlanMappingTunnelEdgePortRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"he row status variable, used according to
row installation and removal conventions."
::= { vlanMappingTunnelEdgePortEntry 7 }
-- vlanMappingOneToOneEdgePortTable
vlanMappingOneToOneEdgePortTable OBJECT-TYPE
SYNTAX SEQUENCE OF VlanMappingOneToOneEdgePortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The tables contains vlan mapping tunnel mode port."
::= { vlan 78}
vlanMappingOneToOneEdgePortEntry OBJECT-TYPE
SYNTAX VlanMappingOneToOneEdgePortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" The entry contains VLAN mapping configuration for Nni port, C-VLAN and S-VLAN."
INDEX { ifIndex,
vlanMappingOneToOneEdgePortCVlanTag }
::= { vlanMappingOneToOneEdgePortTable 1 }
VlanMappingOneToOneEdgePortEntry::=SEQUENCE{
vlanMappingOneToOneEdgePortCVlanTag VlanIndex,
vlanMappingOneToOneEdgePortSVlanTag VlanIndex,
vlanMappingOneToOneEdgePortIsActiveEdge VlanMappingTunnelPortType,
vlanMappingOneToOneEdgePortRowStatus RowStatus
}
vlanMappingOneToOneEdgePortCVlanTag OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"C-VLAN value to be encapsulated."
::= { vlanMappingOneToOneEdgePortEntry 1 }
vlanMappingOneToOneEdgePortSVlanTag OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"S-VLAN value."
::= { vlanMappingOneToOneEdgePortEntry 2 }
vlanMappingOneToOneEdgePortIsActiveEdge OBJECT-TYPE
SYNTAX VlanMappingTunnelPortType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"VLAN mapping port type - edge or NNI."
DEFVAL { 2 }
::= { vlanMappingOneToOneEdgePortEntry 3 }
vlanMappingOneToOneEdgePortRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"he row status variable, used according to
row installation and removal conventions."
::= { vlanMappingOneToOneEdgePortEntry 4 }
vlanMappingCosValue OBJECT-TYPE
SYNTAX INTEGER (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Class of service (CoS) value globally into S-VLAN tag of forwarded Layer 2 frames."
DEFVAL { 5 }
::= { vlan 79 }
-- next free ::= {vlan 80}
END
|