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
|
-- *****************************************************************
-- UBQS-CFM-MIB: Ubiquoss CFM MIB
--
-- Nov 2010, Park Hyung Eun
--
-- Copyright (c) 2010 by Ubiquoss, Corp.
-- All rights reserved.
-- *****************************************************************
--
UBQS-CFM-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
NOTIFICATION-TYPE,
Counter32,
IpAddress,
Gauge32,
Integer32,
Unsigned32,
FROM SNMPv2-SMI
MODULE-COMPLIANCE,
OBJECT-GROUP,
NOTIFICATION-GROUP,
FROM SNMPv2-CONF
TEXTUAL-CONVENTION,
RowStatus,
DisplayString,
TruthValue,
MacAddress,
FROM SNMPv2-TC
ubiAggId,
FROM UBQS-LAG-MIB
ifIndex,
FROM IF-MIB
ubiMgmtv2
FROM UBQS-SMI;
ubiCFMMIB MODULE-IDENTITY
LAST-UPDATED "201011250000Z"
ORGANIZATION "Ubiquoss Corp."
CONTACT-INFO
" Ubiquoss
Customer Service
Postal: 24F Milennium B/D,
467-12, Dogok-Dong,
GangNam-Gu, Seoul 135-270
Korea
Tel: 82-2-2190-3100"
DESCRIPTION
"Connectivity Fault Management module for managing IEEE 802.1ag"
::= { ubiMgmtv2 10 }
-- *****************************************************************
-- Textual Conventions
-- *****************************************************************
VlanIndex ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The VLAN-id of a VLAN on ISL or 802.1q trunks.
Modification of default parameters is allowed.
Implementations are allowed to restrict
the range of VLANs.
For entities support up to 1024 VLANS.
VLANs above 1000 are reserved for default VLANs and
future use. Modification of default parameters is
allowed. Creation or deletion of VLANs above 1000 is not
allowed.
For a new object which needs the vlan-id of a VLAN as
its SYNTAX, it is suggested to import VlanIndex from
Q-BRIDGE-MIB instead of importing this TC here in
ubi-VTP-MIB."
SYNTAX Integer32 (0..4095)
Dot1agCfmMaintDomainNameType2 ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"A value that represents a type (and thereby the format)
of a Dot1agCfmMaintDomainName. The value can be one of
the following:
ieeeReserved(0) Reserved for definition by IEEE 802.1
recommend to not use zero unless
absolutely needed.
none(1) No format specified, usually because
there is not (yet) a Maintenance
Domain Name. In this case, a zero
length OCTET STRING for the Domain
Name field is acceptable.
dnsLikeName(2) Domain Name like string, globally unique
text string derived from a DNS name.
macAddrAndUint(3) MAC address + 2-octet (unsigned) integer.
charString(4) RFC2579 DisplayString, except that the
character codes 0-31 (decimal) are not
used.
ieeeReserved(xx) Reserved for definition by IEEE 802.1
xx values can be [5..31] and [64..255]
ituReserved(xx) Reserved for definition by ITU-T Y.1731
xx values range from [32..63]
To support future extensions, the Dot1agCfmMaintDomainNameType
textual convention SHOULD NOT be sub-typed in object type
definitions. It MAY be sub-typed in compliance statements in
order to require only a subset of these address types for a
compliant implementation.
Implementations MUST ensure that Dot1agCfmMaintDomainNameType
objects and any dependent objects (e.g.,
Dot1agCfmMaintDomainName objects) are consistent. An
inconsistentValue error MUST be generated if an attempt to
change an Dot1agCfmMaintDomainNameType object would, for
example, lead to an undefined Dot1agCfmMaintDomainName value.
In particular,
Dot1agCfmMaintDomainNameType/Dot1agCfmMaintDomainName pairs
MUST be changed together if the nameType changes.
"
REFERENCE
"21.6.5, Table 21-19"
SYNTAX INTEGER {
none (1), -- no md name
dnsLikeName (2), -- dns name
macAddressAndUint (3), -- mac addr
charString (4), -- string
itu_t (32) -- itu-t
}
Dot1agCfmMaintDomainName ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Denotes a generic Maintenance Domain Name.
A Dot1agCfmMaintDomainName value is always interpreted within
the context of a Dot1agCfmMaintDomainNameType value. Every
usage of the Dot1agCfmMaintDomainName textual convention is
required to specify the Dot1agCfmMaintDomainNameType object
that provides the context. It is suggested that the
Dot1agCfmMaintDomainNameType object be logically registered
before the object(s) that use the Dot1agCfmMaintDomainName
textual convention, if they appear in the same logical row.
The value of a Dot1agCfmMaintDomainName object MUST always
be consistent with the value of the associated
Dot1agCfmMaintDomainNameType object. Attempts to set
an Dot1agCfmMaintDomainName object to a value inconsistent
with the associated Dot1agCfmMaintDomainNameType MUST fail
with an inconsistentValue error.
When this textual convention is used as the syntax of an
index object, there may be issues with the limit of 128
sub-identifiers specified in SMIv2, IETF STD 58. In this
case, the object definition MUST include a 'SIZE' clause
to limit the number of potential instance sub-identifiers;
otherwise the applicable constraints MUST be stated in
the appropriate conceptual row DESCRIPTION clauses, or
in the surrounding documentation if there is no single
DESCRIPTION clause that is appropriate.
A value of none(1) in the associated
Dot1agCfmMaintDomainNameType object means that no Maintenance
Domain name is present, and the contents of the
Dot1agCfmMaintDomainName object are meaningless.
See the DESCRIPTION of the Dot1agCfmMaintAssocNameType
TEXTUAL-CONVENTION for a discussion of the length limits on
the Maintenance Domain name and Maintenance Association name.
"
REFERENCE
"21.6.5"
SYNTAX OCTET STRING (SIZE(1..256))
Dot1agCfmMaintAssocNameType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"A value that represents a type (and thereby the format)
of a Dot1agCfmMaintAssocName. The value can be one of
the following:
ieeeReserved(0) Reserved for definition by IEEE 802.1
recommend to not use zero unless
absolutely needed.
primaryVid(1) Primary VLAN ID.
12 bits represented in a 2-octet integer:
- 4 least significant bits of the first
byte contains the 4 most significant
bits of the 12 bits primary VID
- second byte contains the 8 least
significant bits of the primary VID
0 1 2 3 4 5 6 7 8
+-+-+-+-+-+-+-+-+
|0 0 0 0| (MSB) |
+-+-+-+-+-+-+-+-+
| VID LSB |
+-+-+-+-+-+-+-+-+
charString(2) RFC2579 DisplayString, except that the
character codes 0-31 (decimal) are not
used. (1..45) octets
unsignedInt16 (3) 2-octet integer/big endian
rfc2865VpnId(4) RFC 2685 VPN ID
3 octet VPN authority Organizationally
Unique Identifier followed by 4 octet VPN
index identifying VPN according to the OUI:
0 1 2 3 4 5 6 7 8
+-+-+-+-+-+-+-+-+
| VPN OUI (MSB) |
+-+-+-+-+-+-+-+-+
| VPN OUI |
+-+-+-+-+-+-+-+-+
| VPN OUI (LSB) |
+-+-+-+-+-+-+-+-+
|VPN Index (MSB)|
+-+-+-+-+-+-+-+-+
| VPN Index |
+-+-+-+-+-+-+-+-+
| VPN Index |
+-+-+-+-+-+-+-+-+
|VPN Index (LSB)|
+-+-+-+-+-+-+-+-+
ieeeReserved(xx) Reserved for definition by IEEE 802.1
xx values can be [5..31] and [64..255]
ituReserved(xx) Reserved for definition by ITU-T Y.1731
xx values range from [32..63]
To support future extensions, the Dot1agCfmMaintAssocNameType
textual convention SHOULD NOT be sub-typed in object type
definitions. It MAY be sub-typed in compliance statements in
order to require only a subset of these address types for a
compliant implementation.
Implementations MUST ensure that Dot1agCfmMaintAssocNameType
objects and any dependent objects (e.g.,
Dot1agCfmMaintAssocName objects) are consistent. An
inconsistentValue error MUST be generated if an attempt to
change an Dot1agCfmMaintAssocNameType object would, for
example, lead to an undefined Dot1agCfmMaintAssocName value.
In particular,
Dot1agCfmMaintAssocNameType/Dot1agCfmMaintAssocName pairs
MUST be changed together if the nameType changes.
The Maintenance Domain name and Maintenance Association name,
when put together into the CCM PDU, MUST total 48 octets or
less. If the Dot1agCfmMaintDomainNameType object contains
none(1), then the Dot1agCfmMaintAssocName object MUST be
45 octets or less in length. Otherwise, the length of
the Dot1agCfmMaintDomainName object plus the length of the
Dot1agCfmMaintAssocName object, added together, MUST total
less than or equal to 44 octets.
"
REFERENCE
"21.6.5.4, Table 21-20"
SYNTAX INTEGER {
primaryVid (1),
charString (2),
unsignedInt16 (3),
rfc2865VpnId (4)
}
Dot1agCfmMaintAssocName ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Denotes a generic Maintenance Association Name. It is the
part of the Maintenance Association Identifier which is
unique within the Maintenance Domain Name and is appended
to the Maintenance Domain Name to form the Maintenance
Association Identifier (MAID).
A Dot1agCfmMaintAssocName value is always interpreted within
the context of a Dot1agCfmMaintAssocNameType value. Every
usage of the Dot1agCfmMaintAssocName textual convention is
required to specify the Dot1agCfmMaintAssocNameType object
that provides the context. It is suggested that the
Dot1agCfmMaintAssocNameType object be logically registered
before the object(s) that use the Dot1agCfmMaintAssocName
textual convention, if they appear in the same logical row.
The value of a Dot1agCfmMaintAssocName object MUST
always be consistent with the value of the associated
Dot1agCfmMaintAssocNameType object. Attempts to set
an Dot1agCfmMaintAssocName object to a value inconsistent
with the associated Dot1agCfmMaintAssocNameType MUST fail
with an inconsistentValue error.
When this textual convention is used as the syntax of an
index object, there may be issues with the limit of 128
sub-identifiers specified in SMIv2, IETF STD 58. In this
case, the object definition MUST include a 'SIZE' clause
to limit the number of potential instance sub-identifiers;
otherwise the applicable constraints MUST be stated in
the appropriate conceptual row DESCRIPTION clauses, or
in the surrounding documentation if there is no single
DESCRIPTION clause that is appropriate.
"
REFERENCE
"802.1ag clauses 21.6.5.4, 21.6.5.5, 21.6.5.6"
SYNTAX OCTET STRING (SIZE(1..256))
Dot1agCfmMDLevel ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION
"Integer identifying the Maintenance Domain Level (MD Level).
Higher numbers correspond to higher Maintenance Domains,
those with the greatest physical reach, with the highest
values for customers' CFM PDUs. Lower numbers correspond
to lower Maintenance Domains, those with more limited
physical reach, with the lowest values for CFM PDUs
protecting single bridges or physical links.
"
REFERENCE
"802.1ag clauses 18.3, 21.4.1"
SYNTAX Integer32 (0..7)
Dot1agCfmMDLevelOrNone ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION
"Integer identifying the Maintenance Domain Level (MD Level).
Higher numbers correspond to higher Maintenance Domains,
those with the greatest physical reach, with the highest
values for customers' CFM packets. Lower numbers correspond
to lower Maintenance Domains, those with more limited
physical reach, with the lowest values for CFM PDUs
protecting single bridges or physical links.
The value (-1) is reserved to indicate that no MA Level has
been assigned.
"
REFERENCE
"802.1ag clauses 18.3, 12.14.3.1.3:c"
SYNTAX Integer32 (-1 | 0..7)
Dot1agCfmMpDirection ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Indicates the direction in which the Maintenance
association (MEP or MIP) faces on the bridge port:
down(1) Sends Continuity Check Messages away from the
MAC Relay Entity.
up(2) Sends Continuity Check Messages towards the
MAC Relay Entity.
"
REFERENCE
"802.1ag clauses 12.14.6.3.2:c"
SYNTAX INTEGER {
down (1),
up (2)
}
Dot1agCfmPortStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"An enumerated value from he Port Status TLV from the last CCM
received from the last MEP. It indicates the ability of the
Bridge Port on which the transmitting MEP resides to pass
ordinary data, regardless of the status of the MAC
(Table 21-10).
psNoPortStateTLV(0) Indicates either that no CCM has been
received or that no port status TLV was
present in the last CCM received.
psBlocked(1) Ordinary data cannot pass freely through
the port on which the remote MEP resides.
Value of enableRmepDefect is equal to
false.
psUp(2): Ordinary data can pass freely through
the port on which the remote MEP resides.
Value of enableRmepDefect is equal to
true.
NOTE: A 0 value is used for psNoPortStateTLV, so that
additional code points can be added in a manner
consistent with the Dot1agCfmInterfaceStatus textual
convention.
"
REFERENCE
"12.14.7.6.3:f, 20.19.3 and 21.5.4"
SYNTAX INTEGER {
psNoPortStateTLV (0),
psBlocked (1),
psUp (2)
}
Dot1agCfmInterfaceStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"An enumerated value from the Interface Status TLV from the
last CCM received from the last MEP. It indicates the status
of the Interface within which the MEP transmitting the CCM
is configured, or the next lower Interface in the Interface
Stack, if the MEP is not configured within an Interface.
isNoInterfaceStatusTLV(0) Indicates either that no CCM has been
received or that no interface status TLV
was present in the last CCM received.
isUp(1) The interface is ready to pass packets.
isDown(2) The interface cannot pass packets
isTesting(3) The interface is in some test mode.
isUnknown(4) The interface status cannot be determined
for some reason.
isDormant(5) The interface is not in a state to pass
packets but is in a pending state, waiting
for some external event.
isNotPresent(6) Some component of the interface is missing
isLowerLayerDown(7) The interface is down due to state of the
lower layer interfaces
NOTE: A 0 value is used for isNoInterfaceStatusTLV, so that
these code points can be kept consistent with new code
points added to ifOperStatus in the IF-MIB.
"
REFERENCE
"12.14.7.6.3:g, 20.19.4 and 21.5.5"
SYNTAX INTEGER {
isNoInterfaceStatusTLV (0),
isUp (1),
isDown (2),
isTesting (3),
isUnknown (4),
isDormant (5),
isNotPresent (6),
isLowerLayerDown (7)
}
Dot1agCfmHighestDefectPri ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"An enumerated value, equal to the contents of the variable
highestDefect (20.33.9 and Table 20-1), indicating the
highest-priority defect that has been present since the MEP
Fault Notification Generator State Machine was last in the
FNG_RESET state, either:
none(0) no defects since FNG_RESET
defRDICCM(1) DefRDICCM
defMACstatus(2) DefMACstatus
defRemoteCCM(3) DefRemoteCCM
defErrorCCM(4) DefErrorCCM
defXconCCM(5) DefXconCCM
The value 0 is used for no defects so that additional higher
priority values can be added, if needed, at a later time, and
so that these values correspond with those in
Dot1agCfmLowestAlarmPri.
"
REFERENCE
"20.1.2, 12.14.7.7.2:c and 20.33.9"
SYNTAX INTEGER {
none (0),
defRDICCM (1),
defMACstatus (2),
defRemoteCCM (3),
defErrorCCM (4),
defXconCCM (5)
}
Dot1agCfmLowestAlarmPri ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"An integer value specifying the lowest priority defect
that is allowed to generate a Fault Alarm (20.9.5), either:
allDef(1) DefRDICCM, DefMACstatus, DefRemoteCCM,
DefErrorCCM, and DefXconCCM;
macRemErrXcon(2) Only DefMACstatus, DefRemoteCCM,
DefErrorCCM, and DefXconCCM (default);
remErrXcon(3) Only DefRemoteCCM, DefErrorCCM,
and DefXconCCM;
errXcon(4) Only DefErrorCCM and DefXconCCM;
xcon(5) Only DefXconCCM; or
noXcon(6) No defects DefXcon or lower are to be
reported;
"
REFERENCE
"12.14.7.1.3:k and 20.9.5"
SYNTAX INTEGER {
allDef (1),
macRemErrXcon (2),
remErrXcon (3),
errXcon (4),
xcon (5),
noXcon (6)
}
Dot1agCfmMepId ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION
"Maintenance association End Point Identifier (MEPID): A small
integer, unique over a given Maintenance Association,
identifying a specific MEP.
"
REFERENCE
"802.1ag clauses 3.19 and 19.2.1"
SYNTAX Unsigned32 (1..8191)
Dot1agCfmMepIdOrZero ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION
"Maintenance association End Point Identifier (MEPID): A small
integer, unique over a given Maintenance Association,
identifying a specific MEP.
The special value 0 is allowed to indicate special cases, for
example that no MEPID is configured.
Whenever an object is defined with this SYNTAX, then the
DESCRIPTION clause of such an object MUST specify what the
special value of 0 means.
"
REFERENCE
"19.2.1"
SYNTAX Unsigned32 (0 | 1..8191)
Dot1agCfmMhfCreation ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Indicates if the Management Entity can create MHFs.
The valid values are:
defMHFnone(1) No MHFs can be created for this VID.
defMHFdefault(2) MHFs can be created on this VID on any
Bridge port through which this VID can
pass.
defMHFexplicit(3) MHFs can be created for this VID only on
Bridge ports through which this VID can
pass, and only if a MEP is created at some
lower MD Level.
defMHFdefer(4) The creation of MHFs is determined by the
corresponding Maintenance Domain variable
(dot1agCfmMaCompMhfCreation).
"
REFERENCE
"12.14.5.1.3:c and 22.2.3"
SYNTAX INTEGER {
defMHFnone (1),
defMHFdefault (2),
defMHFexplicit (3),
defMHFdefer (4)
}
Dot1agCfmIdPermission ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Indicates what, if anything, is to be included in the Sender
ID TLV transmitted in CCMs, LBMs, LTMs, and LTRs. The valid
values are:
sendIdNone(1) The Sender ID TLV is not to be sent.
sendIdChassis(2) The Chassis ID Length, Chassis ID
Subtype, and Chassis ID fields of the
Sender ID TLV are to be sent.
sendIdManage(3) The Management Address Length and
Management Address of the Sender ID TLV
are to be sent.
sendIdChassisManage(4) The Chassis ID Length, Chassis ID
Subtype, Chassis ID, Management Address
Length and Management Address fields are
all to be sent.
sendIdDefer(5) The contents of the Sender ID TLV are
determined by the corresponding
Maintenance Domain variable
(dot1agCfmMaCompIdPermission).
"
REFERENCE
"12.14.6.1.3:d and 21.5.3"
SYNTAX INTEGER {
sendIdNone (1),
sendIdChassis (2),
sendIdManage (3),
sendIdChassisManage (4),
sendIdDefer (5)
}
Dot1agCfmCcmInterval ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Indicates the interval at which CCMs are sent by a MEP.
The possible values are:
intervalInvalid(0) No CCMs are sent (disabled).
interval300Hz(1) CCMs are sent every 3 1/3 milliseconds
(300Hz).
interval10ms(2) CCMs are sent every 10 milliseconds.
interval100ms(3) CCMs are sent every 100 milliseconds.
interval1s(4) CCMs are sent every 1 second.
interval10s(5) CCMs are sent every 10 seconds.
interval1min(6) CCMs are sent every minute.
interval10min(7) CCMs are sent every 10 minutes.
Note: enumerations start at zero to match the 'CCM Interval
field' protocol field.
"
REFERENCE
"802.1ag clauses 12.14.6.1.3:e, 20.8.1 and 21.6.1.3"
SYNTAX INTEGER {
intervalInvalid (0),
interval300Hz (1),
interval10ms (2),
interval100ms (3),
interval1s (4),
interval10s (5),
interval1min (6),
interval10min (7)
}
Dot1agCfmFngState ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Indicates the diferent states of the MEP Fault Notification
Generator State Machine.
fngReset(1) No defect has been present since the
dot1agCfmMepFngResetTime timer
expired, or since the state machine
was last reset.
fngDefect(2) A defect is present, but not for a
long enough time to be reported
(dot1agCfmMepFngAlarmTime).
fngReportDefect(3) A momentary state during which the
defect is reported by sending a
dot1agCfmFaultAlarm notification,
if that action is enabled.
fngDefectReported(4) A defect is present, and some defect
has been reported.
fngDefectClearing(5) No defect is present, but the
dot1agCfmMepFngResetTime timer has
not yet expired.
"
REFERENCE
"12.14.7.1.3:f and 20.35"
SYNTAX INTEGER {
fngReset (1),
fngDefect (2),
fngReportDefect (3),
fngDefectReported (4),
fngDefectClearing (5)
}
Dot1agCfmRelayActionFieldValue ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Possible values the Relay action field can take."
REFERENCE
"802.1ag clauses 12.14.7.5.3:g, 20.36.2.5, 21.9.5, and
Table 21-27"
SYNTAX INTEGER {
rlyHit (1),
rlyFdb (2),
rlyMpdb (3)
}
Dot1agCfmIngressActionFieldValue ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Possible values returned in the ingress action field."
REFERENCE
"802.1ag clauses 12.14.7.5.3:g, 20.36.2.6, 21.9.8.1, and
Table 21-30
"
SYNTAX INTEGER {
ingNoTlv (0),
ingOk (1),
ingDown (2),
ingBlocked (3),
ingVid (4)
}
Dot1agCfmEgressActionFieldValue ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Possible values returned in the egress action field"
REFERENCE
"802.1ag clauses 12.14.7.5.3:o, 20.36.2.10, 21.9.9.1, and
Table 21-32"
SYNTAX INTEGER {
egrNoTlv (0),
egrOK (1),
egrDown (2),
egrBlocked (3),
egrVid (4)
}
Dot1agCfmRemoteMepState::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Operational state of the remote MEP state machine. This
state machine monitors the reception of valid CCMs from a
remote MEP with a specific MEPID. It uses a timer that
expires in 3.5 times the length of time indicated by the
dot1agCfmMaNetCcmInterval object.
rMepIdle(1) Momentary state during reset.
rMepStart(2) The timer has not expired since the
state machine was reset, and no valid
CCM has yet been received.
rMepFailed(3) The timer has expired, both since the
state machine was reset, and since a
valid CCM was received.
rMepOk(4) The timer has not expired since a
valid CCM was received.
"
REFERENCE
"802.1ag clauses 12.14.7.6.3:b, 20.22"
SYNTAX INTEGER {
rMepIdle (1),
rMepStart (2),
rMepFailed (3),
rMepOk (4)
}
Dot1afCfmIndexIntegerNextFree ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION
"An integer which may be used as a new Index in a table.
The special value of 0 indicates that no more new entries can
be created in the relevant table.
When a MIB is used for configuration, an object with this
SYNTAX always contains a legal value (if non-zero) for an
index that is not currently used in the relevant table. The
Command Generator (Network Management Application) reads this
variable and uses the (non-zero) value read when creating a
new row with an SNMP SET. When the SET is performed, the
Command Responder (agent) MUST determine whether the value is
indeed still unused; Two Network Management Applications may
attempt to create a row (configuration entry) simultaneously
and use the same value. If it is currently unused, the SET
succeeds and the Command Responder (agent) changes the value
of this object, according to an implementation-specific
algorithm. If the value is in use, however, the SET fails.
The Network Management Application MUST then re-read this
variable to obtain a new usable value.
An OBJECT-TYPE definition using this SYNTAX MUST specify the
relevant table for which the object is providing this
functionality.
"
SYNTAX Unsigned32 (0..4294967295)
Dot1agCfmMepDefects ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"A MEP can detect and report a number of defects, and multiple
defects can be present at the same time. These defects are:
bDefRDICCM(0) A remote MEP is reported the RDI bit in its
last CCM.
bDefMACstatus(1) Either some remote MEP is reporting its
Interface Status TLV as not isUp, or all remote
MEPs are reporting a Port Status TLV that
contains some value other than psUp.
bDefRemoteCCM(2) The MEP is not receiving valid CCMs from at
least one of the remote MEPs.
bDefErrorCCM(3) The MEP has received at least one invalid CCM
whose CCM Interval has not yet timed out.
bDefXconCCM(4) The MEP has received at least one CCM from
either another MAID or a lower MD Level whose
CCM Interval has not yet timed out.
"
REFERENCE
"802.1ag clauses 12.14.7.1.3:o, 12.14.7.1.3:p, 12.14.7.1.3:q,
12.14.7.1.3:r, and 12.14.7.1.3:s."
SYNTAX BITS {
bDefRDICCM(0),
bDefMACstatus(1),
bDefRemoteCCM(2),
bDefErrorCCM(3),
bDefXconCCM(4)
}
Dot1agCfmConfigErrors ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"While making the MIP creation evaluation described in 802.1ag
clause 22.2.3, the management entity can encounter errors in
the configuration. These are possible errors that can be
encountered:
CFMleak(0) MA x is associated with a specific VID list,
one or more of the VIDs in MA x can pass through
the Bridge Port, no Down MEP is configured on
any Bridge Port for MA x, and some other MA y,
at a higher MD Level than MA x, and associated
with at least one of the VID(s) also in MA x,
does have a MEP configured on the Bridge Port.
conflictingVids(1) MA x is associated with a specific VID
list, an Up MEP is configured on MA x on the
Bridge Port, and some other MA y, associated
with at least one of the VID(s) also in MA x,
also has an Up MEP configured on some Bridge
Port.
ExcessiveLevels(2) The number of different MD Levels at
which MIPs are to be created on this port
exceeds the Bridge's capabilities (see
subclause 22.3).
OverlappedLevels(3) A MEP is created for one VID at one MD
Level, but a MEP is configured on another
VID at that MD Level or higher, exceeding
the Bridge's capabilities.
"
REFERENCE
"12.14.4.1.3:b and clauses 22.2.3 and 22.2.4"
SYNTAX BITS {
cfmLeak(0),
conflictingVids(1),
excessiveLevels(2),
overlappedLevels(3)
}
Dot1agCfmPbbComponentIdentifier
::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION
"A Provider Backbone Bridge (PBB) can comprise a number of
components, each of which can be managed in a manner
essentially equivalent to an 802.1Q bridge. In order to access
these components easily, an index is used in a number of
tables. If any two tables are indexed by
Dot1agCfmPbbComponentIdentifier, then entries in those tables
indexed by the same value of Dot1agCfmPbbComponentIdentifier
correspond to the same component.
"
REFERENCE
"12.3 l)"
SYNTAX Unsigned32 (1..4294967295)
Dot1agCfmAisDefectType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Kind of defect. It is reason why alram cuase."
SYNTAX INTEGER {
none (0),
all (1),
loc (2),
merge (3),
unExpMep (4),
unExpMegLvl (5),
unExpPeriod (6)
}
-- *****************************************************************
-- ubiCFMMIB
-- *****************************************************************
ubiCFMMIBNotificationPrefix OBJECT IDENTIFIER ::= { ubiCFMMIB 0 }
ubiCFMMIBObjects OBJECT IDENTIFIER ::= { ubiCFMMIB 1 }
ubiCFMMIBConformance OBJECT IDENTIFIER ::= { ubiCFMMIB 2 }
ubiCfmMd OBJECT IDENTIFIER ::= { ubiCFMMIBObjects 1 }
ubiCfmMa OBJECT IDENTIFIER ::= { ubiCFMMIBObjects 2 }
ubiCfmRmep OBJECT IDENTIFIER ::= { ubiCFMMIBObjects 3 }
ubiCfmMep OBJECT IDENTIFIER ::= { ubiCFMMIBObjects 4 }
ubiCfmServerMep OBJECT IDENTIFIER ::= { ubiCFMMIBObjects 5 }
ubiCfmNotificationEnables OBJECT IDENTIFIER ::= { ubiCFMMIBObjects 6 }
ubiCfmTrack OBJECT IDENTIFIER ::= { ubiCFMMIBObjects 7 }
ubiCfmMepOamSend OBJECT IDENTIFIER ::= { ubiCfmMep 4 }
ubiCfmMepOamResult OBJECT IDENTIFIER ::= { ubiCfmMep 5 }
-- *****************************************************************
-- ubiCfmNotifications
-- *****************************************************************
ubiCfmNotifications OBJECT IDENTIFIER ::= { ubiCFMMIBNotificationPrefix 0 }
ubiCfmRemoteMepStatusChange NOTIFICATION-TYPE
OBJECTS {
ifIndex,
ubiCfmMdName,
ubiCfmMaName,
ubiCfmMepId,
ubiCfmRmepId,
ubiCfmRmepRemoteMacAddr,
ubiCfmRmepStatus,
}
STATUS current
DESCRIPTION
"Remote MEP state(CC state) change Notification"
::= { ubiCfmNotifications 1 }
ubiCfmAggPortRemoteMepStatusChange NOTIFICATION-TYPE
OBJECTS {
ubiAggId,
ifIndex,
ubiCfmMdName,
ubiCfmMaName,
ubiCfmMepId,
ubiCfmRmepId,
ubiCfmRmepRemoteMacAddr,
ubiCfmRmepStatus,
}
STATUS current
DESCRIPTION
"Notification that Remote MEP state(CC state) on port-gruop change"
::= { ubiCfmNotifications 2 }
ubiCfmPmFrameDelayEvent NOTIFICATION-TYPE
OBJECTS {
ubiCfmMepId,
ubiCfmMepIfname,
--ubiCfmMepPmCurrentValue,
ubiCfmMepPmDelayMin,
ubiCfmMepPmDelayMax,
ubiCfmMepPmDelayAvg,
ubiCfmMaPmDelayThreshold,
ubiCfmMepPmDelayState,
}
STATUS current
DESCRIPTION
"To generate notification when ubiCfmMepPmCurrentValue is bigger than
ubiCfmMaPmDelayThreshold"
::= { ubiCfmNotifications 3 }
ubiCfmPmFrameLossEvent NOTIFICATION-TYPE
OBJECTS {
ubiCfmMepId,
ubiCfmMepIfname,
-- ubiCfmMepPmCurrentValue,
uniCfmMepPmLossNearEndTot,
uniCfmMepPmLossFarEndTot,
ubiCfmMaPmLossThreshold,
ubiCfmMepPmLossState,
}
STATUS current
DESCRIPTION
"To generate notification when ubiCfmMepPmCurrentValue is bigger than
ubiCfmMaPmLossThreshold"
::= { ubiCfmNotifications 4 }
ubiCfmMepEtherPingSendResult NOTIFICATION-TYPE
OBJECTS {
ubiCfmMepOamSendBridgeId,
ubiCfmMepOamSendMdIndex,
ubiCfmMepOamSendMaIndex,
ubiCfmMepOamSendMepId,
ubiCfmMepOamResultEtherPing,
ubiCfmMepOamResultEtherPingSndCount,
ubiCfmMepOamResultEtherPingRcvCount,
ubiCfmMepOamResultEtherPingRttMin,
ubiCfmMepOamResultEtherPingRttMax,
ubiCfmMepOamResultEtherPingRttAvg
}
STATUS current
DESCRIPTION
"Indicates the result of the operation:
- ok The Loopback Message(s)reply received
- fail The Loopback Message(s)reply don't recieved
- already active Another LBM is being transmitted
- Not ready Do not initator state machine for LBM sending "
::= { ubiCfmNotifications 5 }
ubiCfmMepLinkTraceSendResult NOTIFICATION-TYPE
OBJECTS {
ubiCfmMepOamSendBridgeId,
ubiCfmMepOamSendMdIndex,
ubiCfmMepOamSendMaIndex,
ubiCfmMepOamSendMepId,
ubiCfmMepOamResultLinkTraceSrcMacAddr,
ubiCfmMepOamResultLinkTraceRcvIfIndex,
ubiCfmMepOamResultLinkTraceRelayAction,
ubiCfmMepOamResultLinkTraceHopCount
}
STATUS current
DESCRIPTION
"A LTR information about LTMs transmitted"
::= { ubiCfmNotifications 6 }
ubiCfmCCConfigDefectAlarm NOTIFICATION-TYPE
OBJECTS {
ubiBridgeId,
ubiCfmMdName,
ubiCfmMaName,
ubiCfmMepId,
ubiCfmMepCCConfigDefect,
ubiCfmMepCCConfigDefectState
}
STATUS current
DESCRIPTION
"The CCM defect about Config error"
::= { ubiCfmNotifications 7 }
-- *****************************************************************
-- ubiCfmMdTable
-- *****************************************************************
ubiCfmMdTable OBJECT-TYPE
SYNTAX SEQUENCE OF UbiCfmMdEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Maintenance Domain table. Each row in the table
represents a different Maintenance Domain.
A Maintenance Domain is described in 802.1ag (3.22) as the
network or the part of the network for which faults in
connectivity are to be managed. The boundary of a Maintenance
Domain is defined by a set of DSAPs, each of which can become
a point of connectivity to a service instance"
::= { ubiCfmMd 1 }
ubiCfmMdEntry OBJECT-TYPE
SYNTAX UbiCfmMdEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Maintenance Domain table entry.
INDEX { ubiBridgeId, ubiCfmMdIndex }"
INDEX { ubiBridgeId, ubiCfmMdIndex }
::= { ubiCfmMdTable 1 }
UbiCfmMdEntry ::= SEQUENCE {
ubiCfmMdIndex Unsigned32,
ubiCfmMdName Dot1agCfmMaintDomainName,
ubiCfmMdNameType Dot1agCfmMaintDomainNameType2,
ubiCfmMdLevel Dot1agCfmMDLevel,
ubiCfmMdMipCreation Dot1agCfmMhfCreation,
ubiCfmMdRowStatus RowStatus
}
ubiCfmMdIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index to the Maintenance Domain table."
::= { ubiCfmMdEntry 1 }
ubiCfmMdName OBJECT-TYPE
SYNTAX Dot1agCfmMaintDomainName
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The Maintenance Domain name.
Each Maintenance Domain has unique name amongst all those
used or available to a service provider or operator. It
facilitates easy identification of administrative
responsibility for each Maintenance Domain."
::= { ubiCfmMdEntry 2 }
ubiCfmMdNameType OBJECT-TYPE
SYNTAX Dot1agCfmMaintDomainNameType2
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The type (and thereby format) of the Maintenance Domain Name.
There are two types. IEEE802.1ag type(string, address...etc)
and ITU-T Y.1731 type (itu-t)"
::= { ubiCfmMdEntry 3 }
ubiCfmMdLevel OBJECT-TYPE
SYNTAX Dot1agCfmMDLevel
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The Maintenance Domain Level. (0 ~ 7 level)"
::= { ubiCfmMdEntry 4 }
ubiCfmMdMipCreation OBJECT-TYPE
SYNTAX Dot1agCfmMhfCreation {
defMHFnone (1),
defMHFdefault (2),
defMHFexplicit (3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Enumerated value indicating whether the management entity can
create MHFs (MIP Half Function) for this Maintenance Domain.
Since, in this variable, there is no encompassing Maintenance
Domain, the value defMHFdefer is not allowed."
::= { ubiCfmMdEntry 5 }
ubiCfmMdRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of the row."
::= { ubiCfmMdEntry 6 }
-- *****************************************************************
-- ubiCfmDefaultMdTable
-- *****************************************************************
ubiCfmDefaultMdTable OBJECT-TYPE
SYNTAX SEQUENCE OF UbiCfmDefaultMdEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"For each bridge component, the Default MD Level Managed Object
controls MHF creation for VIDs that are not attached to a
specific Maintenance Association Managed Object, and Sender ID
TLV transmission by those MHFs.
For each Bridge Port, and for each VLAN ID whose data can
pass through that Bridge Port, an entry in this table is
used by the algorithm in subclause 22.2.3 only if there is no
entry in the Maintenance Association table defining an MA
for the same VLAN ID and MD Level as this table's entry, and
on which MA an Up MEP is defined. If there exists such an
MA, that MA's objects are used by the algorithm in
subclause 22.2.3 in place of this table entry's objects. The
agent maintains the value of ubiCfmDefaultMdRowStatus to
indicate whether this entry is overridden by an MA.
When first initialized, the agent creates this table
automatically with entries for all VLAN IDs,
with the default values specified for each object."
::= { ubiCfmMd 2 }
ubiCfmDefaultMdEntry OBJECT-TYPE
SYNTAX UbiCfmDefaultMdEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Default MD Level table entry."
INDEX { UbiBridgeId, ubiCfmDefaultMdVlanId }
::= { ubiCfmDefaultMdTable 1 }
UbiCfmDefaultMdEntry ::= SEQUENCE {
ubiCfmDefaultMdVlanId VlanIndex,
ubiCfmDefaultMdLevel Dot1agCfmMDLevel,
ubiCfmDefaultMdMipCreation Dot1agCfmMhfCreation,
ubiCfmDefaultMdRowStatus RowStatus
}
ubiCfmDefaultMdVlanId OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Primary VID of the VLAN to which this entry's objects
apply."
::= { ubiCfmDefaultMdEntry 1 }
ubiCfmDefaultMdLevel OBJECT-TYPE
SYNTAX Dot1agCfmMDLevel
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"A value indicating the MD Level at which MHFs are to be
created, and Sender ID TLV transmission by those MHFs is to
be controlled, for the VLAN to which this entry's objects
apply. If this object has the value -1, the MD Level for MHF
creation for this VLAN is controlled by
ubiCfmDefaultMdLevel."
::= { ubiCfmDefaultMdEntry 2 }
ubiCfmDefaultMdMipCreation OBJECT-TYPE
SYNTAX Dot1agCfmMhfCreation {
defMHFnone (1),
defMHFdefault (2),
defMHFexplicit (3),
defMHFdefer(4)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"A value indicating if the Management entity can create MHFs
(MIP Half Function) for this VID at this MD Level. If this
object has the value defMHFdefer, MHF creation for this VLAN
is controlled by dot1agCfmDefaultMdDefMhfCreation.
The value of this variable is meaningless if the values of
ubiCfmDefaultMdMipCreation is false."
::= { ubiCfmDefaultMdEntry 3 }
ubiCfmDefaultMdRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of the row."
::= { ubiCfmDefaultMdEntry 4 }
-- *****************************************************************
-- ubiCfmMaTable
-- *****************************************************************
ubiCfmMaTable OBJECT-TYPE
SYNTAX SEQUENCE OF UbiCfmMaEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Maintenance Association table. Each row in the table
represents an MA. An MA is a set of MEPs, each configured
with a single service instance."
::= { ubiCfmMa 1 }
ubiCfmMaEntry OBJECT-TYPE
SYNTAX UbiCfmMaEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The MA table entry."
INDEX { ubiBridgeId, ubiCfmMdIndex, ubiCfmMaIndex }
::= { ubiCfmMaTable 1 }
UbiCfmMaEntry ::= SEQUENCE {
ubiCfmMaIndex Unsigned32,
ubiCfmMaName Dot1agCfmMaintAssocName,
ubiCfmMaNameType Dot1agCfmMaintAssocNameType,
ubiCfmMaVlanId VlanIndex,
ubiCfmMaMipCreation Dot1agCfmMhfCreation,
ubiCfmMaRowStatus RowStatus
}
ubiCfmMaIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index to the Maintenance Association table."
::= { ubiCfmMaEntry 1 }
ubiCfmMaName OBJECT-TYPE
SYNTAX Dot1agCfmMaintAssocName
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The Short Maintenance Association name. This name MUST be unique within
a maintenance domain."
::= { ubiCfmMaEntry 2 }
ubiCfmMaNameType OBJECT-TYPE
SYNTAX Dot1agCfmMaintAssocNameType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The type (and thereby format) of the Maintenance Association Name."
::= { ubiCfmMaEntry 3 }
ubiCfmMaVlanId OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The Primary VLAN ID with which the Maintenance Association is
associated, or 0 if the MA is not attached to any VID. "
::= { ubiCfmMaEntry 4 }
ubiCfmMaMipCreation OBJECT-TYPE
SYNTAX Dot1agCfmMhfCreation {
defMHFnone (1),
defMHFdefault (2),
defMHFexplicit (3),
defMHFdefer(4)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates if the Management entity can create MHFs (MIP Half
Function) for this MA."
::= { ubiCfmMaEntry 5 }
ubiCfmMaRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of the row."
::= { ubiCfmMaEntry 6 }
-- *****************************************************************
-- ubiCfmMaTable
-- *****************************************************************
ubiCfmMaAttrTable OBJECT-TYPE
SYNTAX SEQUENCE OF UbiCfmMaAttrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An Attribute table for each MA(Maintenance Association).
Such as, CCM transmission interval."
::= { ubiCfmMa 2 }
ubiCfmMaAttrEntry OBJECT-TYPE
SYNTAX UbiCfmMaAttrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An attribute entry"
INDEX { ubiBridgeId, ubiCfmMdIndex, ubiCfmMaIndex }
::= { ubiCfmMaAttrTable 1 }
UbiCfmMaAttrEntry ::= SEQUENCE {
ubiCfmMaAttrCCInterval Integer32
}
ubiCfmMaAttrCCInterval OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Interval between CCM transmissions to be used by all MEPs
in the MA.
interval3ms(1) CCMs are sent every 3 1/3 milliseconds.
interval10ms(2) CCMs are sent every 10 milliseconds.
interval100ms(3) CCMs are sent every 100 milliseconds.
interval1s(4) CCMs are sent every 1 second.
interval10s(5) CCMs are sent every 10 seconds.
interval1min(6) CCMs are sent every minute.
interval10min(7) CCMs are sent every 10 minutes."
::= { ubiCfmMaAttrEntry 1 }
-- *****************************************************************
-- ubiCfmMaPmTable
-- *****************************************************************
ubiCfmMaPmTable OBJECT-TYPE
SYNTAX SEQUENCE OF UbiCfmMaPmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An attribute for Performance Monitoring"
::= { ubiCfmMa 3 }
ubiCfmMaPmEntry OBJECT-TYPE
SYNTAX UbiCfmMaPmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Performance Monitoring Entry"
INDEX { ubiBridgeId, ubiCfmMdIndex, ubiCfmMaIndex }
::= { ubiCfmMaPmTable 1 }
UbiCfmMaPmEntry ::= SEQUENCE {
ubiCfmMaPmDelayInterval Integer32,
ubiCfmMaPmLossInterval Integer32,
ubiCfmMaPmDelayThreshold Integer32,
ubiCfmMaPmLossThreshold Integer32,
}
ubiCfmMaPmDelayInterval OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Interval to trasmit DM(delay measurement)message"
::= { ubiCfmMaPmEntry 1 }
ubiCfmMaPmLossInterval OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Interval to trasmit LM(loss measurement)message"
::= { ubiCfmMaPmEntry 2 }
ubiCfmMaPmDelayThreshold OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Treshold to limit for delay"
::= { ubiCfmMaPmEntry 3 }
ubiCfmMaPmLossThreshold OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Treshold to limit for loss"
::= { ubiCfmMaPmEntry 4 }
-- *****************************************************************
-- ubiCfmRmepTable
-- *****************************************************************
ubiCfmRmepTable OBJECT-TYPE
SYNTAX SEQUENCE OF UbiCfmRmepEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information of Remote Mep table"
::= { ubiCfmRmep 1 }
ubiCfmRmepEntry OBJECT-TYPE
SYNTAX UbiCfmRmepEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information of Remote Mep entry"
INDEX { ubiBridgeId, ubiCfmMdIndex, ubiCfmRmepId }
::= { ubiCfmRmepTable 1 }
UbiCfmRmepEntry ::= SEQUENCE {
ubiCfmRmepId Dot1agCfmMepId,
-- ubiCfmRmepMdLevel Dot1agCfmMDLevel,
ubiCfmRmepVlanId VlanIndex,
ubiCfmRmepRemoteMacAddr MacAddress,
ubiCfmRmepCrossCheckType INTEGER,
ubiCfmRmepStatus INTEGER,
ubiCfmRmepRowStatus RowStatus,
}
ubiCfmRmepId OBJECT-TYPE
SYNTAX Dot1agCfmMepId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Maintenance association End Point Identifier of a remote MEP"
::= { ubiCfmRmepEntry 1 }
-- ubiCfmRmepMdLevel OBJECT-TYPE
-- SYNTAX Dot1agCfmMDLevel
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- ""
-- ::= { ubiCfmRmepEntry 2 }
ubiCfmRmepVlanId OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"VLAN Identifier of a remote MEP. Same value of local MEP(MA's VID)"
::= { ubiCfmRmepEntry 2 }
ubiCfmRmepRemoteMacAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The MAC address of the remote MEP."
::= { ubiCfmRmepEntry 3 }
ubiCfmRmepCrossCheckType OBJECT-TYPE
SYNTAX INTEGER {
unicast(1),
multicast(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"CrossCheck Type (uicast or multicast)."
::= { ubiCfmRmepEntry 4 }
ubiCfmRmepStatus OBJECT-TYPE
SYNTAX INTEGER {
connect(1),
disconnect(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Continuity Status to local MEP from remote MEP.
Remote MEP state machine last entered either the RMEP_FAILED
or RMEP_OK state"
::= { ubiCfmRmepEntry 5 }
ubiCfmRmepRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of the row."
::= { ubiCfmRmepEntry 6 }
-- *****************************************************************
-- ubiCfmMepTable
-- *****************************************************************
ubiCfmMepTable OBJECT-TYPE
SYNTAX SEQUENCE OF UbiCfmMepEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Maintenance Association End Point (MEP) table."
::= { ubiCfmMep 1 }
ubiCfmMepEntry OBJECT-TYPE
SYNTAX UbiCfmMepEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The known MEPS table entry."
INDEX { ubiBridgeId, ubiCfmMdIndex,
ubiCfmMaIndex, ubiCfmMepId, ifIndex }
::= { ubiCfmMepTable 1 }
UbiCfmMepEntry ::= SEQUENCE {
ubiCfmMepId Dot1agCfmMepId,
ubiCfmMepMdLevel Dot1agCfmMDLevel,
ubiCfmMepVlanId VlanIndex,
ubiCfmMepActive TruthValue,
ubiCfmMepDirection INTEGER,
ubiCfmMepMdName Dot1agCfmMaintDomainName,
ubiCfmMepUniMep INTEGER,
ubiCfmMepRmepId Dot1agCfmMepId,
ubiCfmMepIfname DisplayString,
ubiCfmMepIfMacAddr MacAddress,
ubiCfmMepRdi TruthValue,
ubiCfmMepCCType INTEGER,
ubiCfmMepCCEnable INTEGER,
ubiCfmMepRowStatus RowStatus,
ubiCfmMepMissingTime Integer32,
ubiCfmMepExpiredTime Integer32,
ubiCfmMepForceEgressTag INTEGER
}
ubiCfmMepId OBJECT-TYPE
SYNTAX Dot1agCfmMepId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Integer that is unique among all the MEPs in the same MA.
Other definition is:
A small integer, unique over a given
Maintenance Association, identifying a specific Maintenance
association End Point (3.19).
MEP Identifier is also known as the MEPID."
::= { ubiCfmMepEntry 1 }
ubiCfmMepMdLevel OBJECT-TYPE
SYNTAX Dot1agCfmMDLevel
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"MD level that belong to this MD"
::= { ubiCfmMepEntry 2 }
ubiCfmMepVlanId OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"An integer indicating the Primary VID of the MEP, always
one of the VIDs assigned to the MEP's MA. The value 0
indicates that either the Primary VID is that of the
MEP's MA, or that the MEP's MA is associated with no VID."
::= { ubiCfmMepEntry 3 }
ubiCfmMepActive OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Administrative state of the MEP. A Boolean indicating the
administrative state of the MEP.
True indicates that the MEP is to function normally, and
false that it is to cease functioning."
::= { ubiCfmMepEntry 4 }
ubiCfmMepDirection OBJECT-TYPE
SYNTAX INTEGER {
down(1),
up(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The direction in which the MEP faces on the Bridge port."
::= { ubiCfmMepEntry 5 }
ubiCfmMepMdName OBJECT-TYPE
SYNTAX Dot1agCfmMaintDomainName
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"MD name that belong to this MD"
::= { ubiCfmMepEntry 6 }
ubiCfmMepUniMep OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The flag to configure UNI-MEP"
::= { ubiCfmMepEntry 7 }
ubiCfmMepRmepId OBJECT-TYPE
SYNTAX Dot1agCfmMepId
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The specified RmepID that is RMEP configured"
::= { ubiCfmMepEntry 8 }
ubiCfmMepIfname OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is the IfIndex of the interface
where MEP configure."
::= { ubiCfmMepEntry 9 }
ubiCfmMepIfMacAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Thsi object is the MAC address of the interface
where MEP configure."
::= { ubiCfmMepEntry 10 }
ubiCfmMepRdi OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"State of the RDI bit in the sending CCM (true for
RDI=1), or false."
::= { ubiCfmMepEntry 11 }
ubiCfmMepCCType OBJECT-TYPE
SYNTAX INTEGER {
unicast(1),
multicast(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The type of CCM message."
::= { ubiCfmMepEntry 12 }
ubiCfmMepCCEnable OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2),
passive(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If set to true, the MEP will generate CCM messages."
::= { ubiCfmMepEntry 13 }
ubiCfmMepRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of the row."
::= { ubiCfmMepEntry 14 }
ubiCfmMepMissingTime OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The pass time after received last CCM"
::= { ubiCfmMepEntry 15 }
ubiCfmMepExpiredTime OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The remain time till Expired RMEP status"
::= { ubiCfmMepEntry 16 }
ubiCfmMepForceEgressTag OBJECT-TYPE
SYNTAX INTEGER {
egress-default(0),
egress-tagged(1),
egress-untagged(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"UNI-MEP send CCM with VID information(tagged)
or send CCM without VID information (untagged).
If set none-value, tag information is depend on
egress interface policy"
::= { ubiCfmMepEntry 17 }
-- *****************************************************************
-- ubiCfmMepPmDelayTable
-- *****************************************************************
ubiCfmMepPmDelayTable OBJECT-TYPE
SYNTAX SEQUENCE OF UbiCfmMepPmDelayEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Performance Monitoring Table"
::= { ubiCfmMep 2 }
ubiCfmMepPmDelayEntry OBJECT-TYPE
SYNTAX UbiCfmMepPmDelayEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Performance Monitoring Entry"
INDEX { ubiBridgeId, ubiCfmMdIndex,
ubiCfmMaIndex, ubiCfmMepId, ifIndex }
::= { ubiCfmMepPmDelayTable 1 }
UbiCfmMepPmDelayEntry ::= SEQUENCE {
ubiCfmMepPmDelayRmep INTEGER,
ubiCfmMepPmDelayFrameType INTEGER,
ubiCfmMepPmDelayCurrentValue Unsigned32,
ubiCfmMepPmDelayTxInterval INTEGER,
ubiCfmMepPmDelayState INTEGER,
ubiCfmMepPmDelayRowStatus RowStatus,
ubiCfmMepPmDelayMin Integer32,
ubiCfmMepPmDelayMax Integer32,
ubiCfmMepPmDelayAvg Integer32
}
ubiCfmMepPmDelayRmep OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Remote MEP ID to measure performance "
::= { ubiCfmMepPmDelayEntry 1 }
ubiCfmMepPmDelayFrameType OBJECT-TYPE
SYNTAX INTEGER {
unicast(1),
multicast(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The type of frame that is to measure"
::= { ubiCfmMepPmDelayEntry 2 }
ubiCfmMepPmDelayCurrentValue OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"Result value of measurement"
::= { ubiCfmMepPmDelayEntry 3 }
ubiCfmMepPmDelayTxInterval OBJECT-TYPE
SYNTAX INTEGER {
tx_100m(1),
tx_1s(2),
tx_10s(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Period that operate performance monitoring"
::= { ubiCfmMepPmDelayEntry 4 }
ubiCfmMepPmDelayState OBJECT-TYPE
SYNTAX INTEGER {
ok(1),
fail(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Result state of measurement.
If ubiCfmMepPmCurrentValue is lower than threshold,
ubiCfmMepPmState is OK. If ubiCfmMepPmCurrentValue is
over the configured threshold, ubiCfmMepPmState is FAIL."
::= { ubiCfmMepPmDelayEntry 5 }
ubiCfmMepPmDelayRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of the row."
::= { ubiCfmMepPmDelayEntry 6 }
ubiCfmMepPmDelayMin OBJECT-TYPE
SYNTAX Integer32
UNITS "milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Minimum delay measured by performance monitoring"
::= { ubiCfmMepPmDelayEntry 7 }
ubiCfmMepPmDelayMax OBJECT-TYPE
SYNTAX Integer32
UNITS "milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum delay measured by performance monitoring"
::= { ubiCfmMepPmDelayEntry 8 }
ubiCfmMepPmDelayAvg OBJECT-TYPE
SYNTAX Integer32
UNITS "milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average of delay measured by performance monitoring"
::= { ubiCfmMepPmDelayEntry 9 }
-- *****************************************************************
-- ubiCfmMepPmLossTable
-- *****************************************************************
ubiCfmMepPmLossTable OBJECT-TYPE
SYNTAX SEQUENCE OF UbiCfmMepPmLossEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Performance Monitoring Table"
::= { ubiCfmMep 3 }
ubiCfmMepPmLossEntry OBJECT-TYPE
SYNTAX UbiCfmMepPmLossEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Performance Monitoring Entry"
INDEX { ubiBridgeId, ubiCfmMdIndex,
ubiCfmMaIndex, ubiCfmMepId, ifIndex }
::= { ubiCfmMepPmLossTable 1 }
UbiCfmMepPmLossEntry ::= SEQUENCE {
ubiCfmMepPmLossRmep INTEGER,
ubiCfmMepPmLossFrameType INTEGER,
ubiCfmMepPmLossCurrentValue Unsigned32,
ubiCfmMepPmLossTxInterval INTEGER,
ubiCfmMepPmLossState INTEGER,
ubiCfmMepPmLossRowStatus RowStatus,
ubiCfmMepPmLossRttMin Integer32,
ubiCfmMepPmLossRttMax Integer32,
ubiCfmMepPmLossRttAvg Integer32,
uniCfmMepPmLossNearEndTot Integer32,
uniCfmMepPmLossFarEndTot Integer32,
}
ubiCfmMepPmLossRmep OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Remote MEP ID to measure performance "
::= { ubiCfmMepPmLossEntry 1 }
ubiCfmMepPmLossFrameType OBJECT-TYPE
SYNTAX INTEGER {
unicast(1),
multicast(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The type of frame that is to measure"
::= { ubiCfmMepPmLossEntry 2 }
ubiCfmMepPmLossCurrentValue OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"Result value of measurement"
::= { ubiCfmMepPmLossEntry 3 }
ubiCfmMepPmLossTxInterval OBJECT-TYPE
SYNTAX INTEGER {
tx_100m(1),
tx_1s(2),
tx_10s(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Period that operate performance monitoring"
::= { ubiCfmMepPmLossEntry 4 }
ubiCfmMepPmLossState OBJECT-TYPE
SYNTAX INTEGER {
ok(1),
fail(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Result state of measurement.
If ubiCfmMepPmCurrentValue is lower than threshold,
ubiCfmMepPmState is OK. If ubiCfmMepPmCurrentValue is
over the configured threshold, ubiCfmMepPmState is FAIL."
::= { ubiCfmMepPmLossEntry 5 }
ubiCfmMepPmLossRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of the row."
::= { ubiCfmMepPmLossEntry 6 }
uniCfmMepPmLossNearEndTot OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Frame loss of near end measured by performance monitoring"
::= { ubiCfmMepPmLossEntry 7 }
uniCfmMepPmLossFarEndTot OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Frame loss of far end measured by performance monitoring"
::= { ubiCfmMepPmLossEntry 8 }
ubiCfmMepPmLossRttMin OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Minimum route-trip time between MEPs"
::= { ubiCfmMepPmLossEntry 9 }
ubiCfmMepPmLossRttMax OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum route-trip time between MEPs"
::= { ubiCfmMepPmLossEntry 10 }
ubiCfmMepPmLossRttAvg OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average of route-trip time between MEPs"
::= { ubiCfmMepPmLossEntry 11 }
-- *****************************************************************
-- ubiCfmMep Ping/Trace Send
-- *****************************************************************
ubiCfmMepOamSendBridgeId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Bridge ID to send Ping or Linktrace"
::= { ubiCfmMepOamSend 1 }
ubiCfmMepOamSendMdIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Maintenance Domain ID to send Ping or Linktrace"
::= { ubiCfmMepOamSend 2 }
ubiCfmMepOamSendMaIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Maintenance Association ID to send Ping or Linktrace"
::= { ubiCfmMepOamSend 3 }
ubiCfmMepOamSendMepId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"MEP ID to send Ping or Linktrace"
::= { ubiCfmMepOamSend 4 }
ubiCfmMepOamSendDstMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination MAC address"
::= { ubiCfmMepOamSend 5 }
ubiCfmMepOamSendLoopbackFrameType OBJECT-TYPE
SYNTAX INTEGER {
none(0),
unicast(1),
multicast(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Type of CFM loopback Frame (ETH-LB)"
::= { ubiCfmMepOamSend 6 }
ubiCfmMepOamSendLoopbackFrameCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Counter to transmit CFM loopback frame"
::= { ubiCfmMepOamSend 7 }
ubiCfmMepOamSendExecute OBJECT-TYPE
SYNTAX INTEGER
{
none(0),
etherPing(1),
linkTrace(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Send ping/linktrace messages"
::= { ubiCfmMepOamSend 8 }
-- *****************************************************************
-- ubiCfmMep Ping/Trace Send Result
-- *****************************************************************
ubiCfmMepOamResultEtherPing OBJECT-TYPE
SYNTAX INTEGER {
other(0),
ok(1),
fail(2),
already_activated(3),
not_ready(4)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The result of Loopback message sent.
If already Loopback function activate, send trap
result value on already_activated. if CC not connected or
unicast RMEP crosscheck type, send trap result value on not_ready."
::= { ubiCfmMepOamResult 1 }
ubiCfmMepOamResultEtherPingSndCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Counter of CFM loopback frame to send"
::= { ubiCfmMepOamResult 2 }
ubiCfmMepOamResultEtherPingRcvCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Received counter of CFM lopback reply"
::= { ubiCfmMepOamResult 3 }
ubiCfmMepOamResultEtherPingRttMin OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Minimum round-trip time measured by CFM loopback frame"
::= { ubiCfmMepOamResult 4 }
ubiCfmMepOamResultEtherPingRttMax OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Maximum round-trip time measured by CFM loopback frame"
::= { ubiCfmMepOamResult 5 }
ubiCfmMepOamResultEtherPingRttAvg OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Average of round-trip time measured by CFM loopback frame"
::= { ubiCfmMepOamResult 6 }
ubiCfmMepOamResultLinkTraceSrcMacAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"MAC address returned in the ingress MAC address field."
::= { ubiCfmMepOamResult 7 }
ubiCfmMepOamResultLinkTraceRcvIfIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The index of local interface of received LTR"
::= { ubiCfmMepOamResult 8 }
ubiCfmMepOamResultLinkTraceRelayAction OBJECT-TYPE
SYNTAX INTEGER {
other(0),
relay_hit(1),
relay_fdb(2),
already_activated(3),
not_ready(4)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Indicates if a LTM was forwarded by the responding MP, as
returned in the 'relay-hit' or 'relay-fdb' flag of the
flags field. If other LT function already activate,
on already_activated value. else if CC is not OK state,
on not_ready value"
::= { ubiCfmMepOamResult 9 }
ubiCfmMepOamResultLinkTraceHopCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"hop count for a returned LTR."
::= { ubiCfmMepOamResult 10 }
-- *****************************************************************
-- ubiCfmCCConfigDefectTable
-- *****************************************************************
ubiCfmCCConfigDefectTable OBJECT-TYPE
SYNTAX SEQUENCE OF UbiCfmCCConfigDefectEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The CCM config defect table"
::= { ubiCfmMep 6 }
ubiCfmCCConfigDefectEntry OBJECT-TYPE
SYNTAX UbiCfmCCConfigDefectEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The CCM config defect entry"
INDEX { ubiBridgeId, ubiCfmMdIndex,
ubiCfmMaIndex, ubiCfmMepId, ifIndex }
::= { ubiCfmCCConfigDefectTable 1 }
UbiCfmCCConfigDefectEntry ::= SEQUENCE {
ubiCfmMepCCConfigDefect INTEGER,
ubiCfmMepCCConfigDefectState INTEGER
}
ubiCfmMepCCConfigDefect OBJECT-TYPE
SYNTAX INTEGER{
none(0),
unexpected_mep_id(1),
unexpected_tx_interval(2),
existed_mep_id (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Defect
0: None
1: Unexpected MEP ID
2: Unexpected Tx interval
3: Already Existed MEP"
::= { ubiCfmCCConfigDefectEntry 1 }
ubiCfmMepCCConfigDefectState OBJECT-TYPE
SYNTAX INTEGER{
defectcondition_exit(0),
defectcondition_entry(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"State of defect condition
0: DefectConditionExit
1: DefectConditionEntry"
::= { ubiCfmCCConfigDefectEntry 2 }
-- *****************************************************************
-- ubiCfmAisTable
-- *****************************************************************
-- ubiCfmAisTable OBJECT-TYPE
-- SYNTAX SEQUENCE OF UbiCfmAisEntry
-- MAX-ACCESS not-accessible
-- STATUS current
-- DESCRIPTION
-- ""
-- ::= { ubiCfmAis 1 }
-- ubiCfmAisEntry OBJECT-TYPE
-- SYNTAX UbiCfmAisEntry
-- MAX-ACCESS not-accessible
-- STATUS current
-- DESCRIPTION
-- ""
-- INDEX { ubiBridgeId, ifIndex, ubiCfmMdIndex, ubiCfmMaIndex, ubiCfmMepId }
-- ::= { ubiCfmAisTable 1 }
-- UbiCfmAisEntry ::= SEQUENCE {
-- ubiCfmAisDestLevel Integer32,
-- ubiCfmAisDefectType Dot1agCfmAisDefectType,
-- ubiCfmAisType INTEGER,
-- ubiCfmAisMacAddr MacAddress,
-- ubiCfmAisRowStatus RowStatus
-- }
-- ubiCfmAisDestLevel OBJECT-TYPE
-- SYNTAX Integer32
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- " "
-- ::= { ubiCfmAisEntry 1 }
-- ubiCfmAisTxInterval OBJECT-TYPE
-- SYNTAX INTEGER (1 | 60)
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- " "
-- ::= { ubiCfmAisEntry 2 }
-- ubiCfmAisDefectType OBJECT-TYPE
-- SYNTAX Dot1agCfmAisDefectType
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- " "
-- ::= { ubiCfmAisEntry 2 }
-- ubiCfmAisType OBJECT-TYPE
-- SYNTAX INTEGER {
-- unicast(1),
-- multicast(2)
-- }
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- " "
-- ::= { ubiCfmAisEntry 3 }
-- ubiCfmAisMacAddr OBJECT-TYPE
-- SYNTAX MacAddress
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- " "
-- ::= { ubiCfmAisEntry 4 }
-- ubiCfmAisRowStatus OBJECT-TYPE
-- SYNTAX RowStatus
-- MAX-ACCESS read-create
-- -- STATUS current
-- DESCRIPTION
-- "The status of the row."
-- ::= { ubiCfmAisEntry 5 }
-- *****************************************************************
-- ubiCfmServerMepTable
-- *****************************************************************
ubiCfmServerMepTable OBJECT-TYPE
SYNTAX SEQUENCE OF UbiCfmServerMepEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A Server MEP represents the compound function of the
Server layer termination function and Server/ETH adaptation
function which is used to notify the ETH layer MEPs upon
failure detection by the Server layer termination function or
Server/ETH adaptation function, where the Server layer
termination function is expected to run OAM mechanisms specific
to the Server layer.
A Server MEP needs to support ETH-AIS function, as described
in clause 7.4, where the Server/ETH adaptation function is
required to issue frames with ETH-AIS information upon detection of
defect at the Server layer by the Server layer termination
and/or adaptation function.
(ITU-T Y.1731 5.3.1)"
::= { ubiCfmServerMep 1 }
ubiCfmServerMepEntry OBJECT-TYPE
SYNTAX UbiCfmServerMepEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Server MEP entry"
INDEX { ubiBridgeId, ifindex }
::= { ubiCfmServerMepTable 1 }
UbiCfmServerMepEntry ::= SEQUENCE {
ubiCfmServerMepTxInterval INTEGER,
ubiCfmServerMepAisLevel Dot1agCfmMDLevel,
ubiCfmServerMepRowStatus RowStatus
}
ubiCfmServerMepTxInterval OBJECT-TYPE
SYNTAX INTEGER (1 | 60)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Periodic Interval of AIS Transmission"
::= { ubiCfmServerMepEntry 1 }
ubiCfmServerMepAisLevel OBJECT-TYPE
SYNTAX Dot1agCfmMDLevel
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destinaction Maintenance Domain Level of AIS"
::= { ubiCfmServerMepEntry 2 }
ubiCfmServerMepRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of the row."
::= { ubiCfmServerMepEntry 3 }
-- *****************************************************************
-- ubiCfmNotificationEnables
-- *****************************************************************
ubiCfmRemoteMepStateChangeEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Remote MEP state(CC state) change Notification"
DEFVAL { false }
::= { ubiCfmNotificationEnables 1 }
ubiCfmPmEventEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"ubiCfmMepPmState change Notification"
DEFVAL { false }
::= { ubiCfmNotificationEnables 2 }
ubiCfmCCConfigDefectAlarmEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Detect CCM config Defect notification"
DEFVAL { false }
::= { ubiCfmNotificationEnables 3 }
-- ubiCfmRemoteMepStatusChangeEnabled OBJECT-TYPE
-- SYNTAX TruthValue
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- ""
-- DEFVAL { false }
-- ::= { ubiCfmNotificationEnables 1 }
-- ubiCfmAggPortRemoteMepStatusChangeEnabled OBJECT-TYPE
-- SYNTAX TruthValue
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- ""
-- DEFVAL { false }
-- ::= { ubiCfmNotificationEnables 2 }
-- ubiCfmPmFrameDelayEventEnabled OBJECT-TYPE
-- SYNTAX TruthValue
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- ""
-- DEFVAL { false }
-- ::= { ubiCfmNotificationEnables 3 }
-- ubiCfmPmFrameLossEventEnabled OBJECT-TYPE
-- SYNTAX TruthValue
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- ""
-- DEFVAL { false }
-- ::= { ubiCfmNotificationEnables 4 }
-- *****************************************************************
-- ubiCfmTrack
-- *****************************************************************
ubiCfmTrackEnable OBJECT-TYPE
SYNTAX BITS {
rdi(0),
link-down(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Not use"
::= { ubiCfmTrack 1 }
ubiCfmTrackTargetTable OBJECT-TYPE
SYNTAX SEQUENCE OF UbiCfmTrackTargetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Not use"
::= { ubiCfmTrack 2 }
ubiCfmTrackTargetEntry OBJECT-TYPE
SYNTAX UbiCfmTrackTargetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Not use"
INDEX { ifindex }
::= { ubiCfmTrackTargetTable 1 }
UbiCfmTrackTargetEntry ::= SEQUENCE {
ubiCfmTrackTargetSet INTEGER
}
ubiCfmTrackTargetSet OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Not use"
::= { ubiCfmTrackTargetEntry 1 }
-- *****************************************************************
-- ubiCfmMIBConformance
-- *****************************************************************
-- Conformance Information
ubiCfmMIBCompliances OBJECT IDENTIFIER ::= { ubiCFMMIBConformance 1 }
ubiCfmMIBGroups OBJECT IDENTIFIER ::= { ubiCFMMIBConformance 2 }
-- compliance statements
ubiVlanMIBCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for VTP implementations."
MODULE -- this module
MANDATORY-GROUPS {
ubiCfmMaGroup
}
::= { ubiCfmMIBCompliances 1 }
-- units of conformance
ubiCfmMaGroup OBJECT-GROUP
OBJECTS {
}
STATUS current
DESCRIPTION
""
::= { ubiCfmMIBGroups 1 }
END
|