1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
|
--
-- "@(#)fa.mib 00/07/07"
--
-- Title: Fibre Alliance Fibre Channel Management Framework Integration MIB
-- Rev 1.5, June 1, 1999.
--
-- Note: This is released for Brocade
--
-- Corrected revisionNumber description. last editor on Sept. 09, 2004
--
-- added FA MIB last edited on Dec. 18, 2000.
-- Last edit date: Sept. 09, 2004
FCMGMT-MIB DEFINITIONS ::= BEGIN
IMPORTS
IpAddress, TimeTicks, experimental
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212
DisplayString
FROM RFC1213-MIB
TRAP-TYPE
FROM RFC-1215;
--Textual conventions for this MIB
FcNameId ::= OCTET STRING (SIZE(8))
FcGlobalId ::= OCTET STRING (SIZE(16))
FcAddressId ::= OCTET STRING (SIZE(3))
FcEventSeverity ::= INTEGER {
unknown (1),
emergency (2),
alert (3),
critical (4),
error (5),
warning (6),
notify (7),
info (8),
debug (9),
mark (10) -- All messages logged
}
FcUnitType ::= INTEGER {
unknown(1),
other(2), -- none of the following
hub(3), -- passive connectivity unit
-- supporting loop protocol.
switch(4), -- active connectivity unit
-- supporting multiple protocols.
gateway(5), -- unit that converts not only
-- the interface but also encapsulates
-- the frame into another protocol. The
-- assumption is that there is always
-- two gateways connected together. For
-- example, FC <-> ATM.
converter(6), -- unit that converts from one
-- interface to another. For
-- example, FC <-> SCSI.
hba(7), -- host bus adapter
proxy-agent(8), -- software proxy-agent
storage-device(9), -- disk,cd,tape,etc
host(10), -- host computer
storage-subsystem(11), -- raid, library, etc
module(12), -- subcomponent of a system
swdriver(13), -- software driver
storage-access-device(14), -- Provides storage management
-- and access for hetergeneous
-- hosts and heterogeneous devices.
wdm(15), -- waveform division mutiplexer
ups(16) -- uninterruptable power supply
}
----------------------------------------------------------------------
fcmgmt OBJECT IDENTIFIER ::= { experimental 94 }
-- groups in fcmgmt
connSet OBJECT IDENTIFIER ::= { fcmgmt 1 }
trapReg OBJECT IDENTIFIER ::= { fcmgmt 2 }
statSet OBJECT IDENTIFIER ::= { fcmgmt 4 }
connUnitServiceSet OBJECT IDENTIFIER ::= { fcmgmt 5 }
connUnitServiceScalars OBJECT IDENTIFIER ::= { connUnitServiceSet 1 }
connUnitServiceTables OBJECT IDENTIFIER ::= { connUnitServiceSet 2 }
revisionNumber OBJECT-TYPE
SYNTAX DisplayString (SIZE (4))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This is the revision number for this MIB. The
format of the revision value is as follows
(0) = high order major revision number
(1) = low order major revision number
(2) = high order minor revision number
(3) = low order minor revision number
The value will be stored as an ASCII value. The
following is the current value of this object.
(0) = '0'
(1) = '3'
(2) = '0'
(3) = '0'
This defines a revision of 03.00
"
::= { fcmgmt 3 }
-- the connectivity unit group
-- Implementation of the group is mandatory for all systems.
uNumber OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of connectivity units present on this
system (represented by this agent). May be a count
of the boards in a chassis or the number of full boxes
in a rack."
DEFVAL { 1 }
::= { connSet 1 }
systemURL OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The top-level URL of the system. If it does not exist
the value is empty string. The URL format is
implementation dependant and can have keywords embedded
that are preceeded by a percent sign (eg, %USER).
The following are the defined keywords that will
be recognized and replaced with data during a launch.
USER - replace with username
PASSWORD - replace with password
GLOBALID - replace with globalid
SERIALNO - replace with serial number
"
DEFVAL { "" }
::= { connSet 2 }
statusChangeTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS obsolete
DESCRIPTION
"The sysuptime timestamp in centiseconds at which
the last status change occurred for any members of
the set."
::= { connSet 3 }
configurationChangeTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS obsolete
DESCRIPTION
"The sysuptime timestamp in centiseconds at which
the last configuration change occurred for any
members of the set. This represents a union of change
information for connUnitConfigurationChangeTime."
::= { connSet 4 }
connUnitTableChangeTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS obsolete
DESCRIPTION
"The sysuptime timestamp in centiseconds at which
the connUnitTable was updated (an entry was either
added or deleted."
::= { connSet 5 }
-- The Connectivity table contains general information on the
-- system's units.
connUnitTable OBJECT-TYPE
SYNTAX SEQUENCE OF ConnUnitEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of units under a single SNMP agent. The number
of entries is given by the value of uNumber. It is 1
for stand-alone system."
::= { connSet 6 }
connUnitEntry OBJECT-TYPE
SYNTAX ConnUnitEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A connectivity unit entry containing objects for a
particular unit."
INDEX { connUnitId }
::= { connUnitTable 1 }
ConnUnitEntry ::=
SEQUENCE {
connUnitId
OCTET STRING,
connUnitGlobalId
FcGlobalId,
connUnitType
FcUnitType,
connUnitNumports
INTEGER,
connUnitState
INTEGER,
connUnitStatus
INTEGER,
connUnitProduct
DisplayString,
connUnitSn
DisplayString,
connUnitUpTime
TimeTicks,
connUnitUrl
DisplayString,
connUnitDomainId
OCTET STRING,
connUnitProxyMaster
INTEGER,
connUnitPrincipal
INTEGER,
connUnitNumSensors
INTEGER,
connUnitStatusChangeTime
TimeTicks,
connUnitConfigurationChangeTime
TimeTicks,
connUnitNumRevs
INTEGER,
connUnitNumZones
INTEGER,
connUnitModuleId
OCTET STRING,
connUnitName
DisplayString,
connUnitInfo
DisplayString,
connUnitControl
INTEGER,
connUnitContact
DisplayString,
connUnitLocation
DisplayString,
connUnitEventFilter
FcEventSeverity,
connUnitNumEvents
INTEGER,
connUnitMaxEvents
INTEGER,
connUnitEventCurrID
INTEGER
}
connUnitId OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (16))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The unique identification for this connectivity unit
among those within this proxy domain.
The value MUST be unique within the proxy domain
because it is the index variable for connUnitTable.
The value assigned to a given conectivity unit
SHOULD be persistent across agent and unit resets.
It SHOULD be the same as connUnitGlobalId
if connUnitGlobalId is known and stable."
::= { connUnitEntry 1 }
connUnitGlobalId OBJECT-TYPE
SYNTAX FcGlobalId
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An optional global-scope identifier for this connectivity unit.
It MUST be a WWN for this connectivity unit
or 16 octets of value zero.
WWN formats requiring fewer than 16 octets
MUST be extended to 16 octets with trailing zero octets,
If a WWN is used for connUnitId,
the same WWN MUST be used for connUnitGlobalId.
When a non-zero value is provided,
it SHOULD be persistent across agent and unit resets.
It SHOULD be globally unique.
It SHOULD be one of these FC-PH/PH3 formats:
IEEE (NAA=1)
IEEE Extended (NAA=2)
IEEE Registered (NAA=5).
IEEE Registered extended (NAA=6).
Use of the IEEE formats allows any IEEE-registered vendor
to assure global uniqueness independently.
The following are some references on IEEE WWN formats:
http://standards.ieee.org/regauth/oui/tutorials/fibreformat.html
http://standards.ieee.org/regauth/oui/tutorials/fibrecomp_id.html
If one or more WWNs are associated with the connUnit
via other management methods,
one of them SHOULD be used for connUnitGlobalId.
If there is not a WWN assigned specifically to the connUnit,
there is some merit, though not a requirement,
to using a WWN assigned to (one of)
its permanently attached FC/LAN interface(s).
This can not risk uniqueness, though.
As a counterexample, if your
agent runs in a host and the host has an HBA,
it is quite possible that agent, host, and HBA
will all be distinct connUnits, so the host
and agent can not use the WWN of the HBA.
Another example:
If your hub has a built-in Ethernet port, it
might be reasonable for the hub to use its LAN
address (prefixed with the appropriate
NAA) as its connUnitId. But if the
Ethernet were a replaceable PCCard, the hub
should have an independent ID."
::= { connUnitEntry 2 }
connUnitType OBJECT-TYPE
SYNTAX FcUnitType
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The type of this connectivity unit."
::= { connUnitEntry 3 }
connUnitNumports OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of physical ports in the connectivity unit
(internal/embedded, external)."
::= { connUnitEntry 4 }
connUnitState OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
online(2),
offline(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Overall state of the connectivity unit."
::= { connUnitEntry 5 }
connUnitStatus OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
unused(2),
ok(3),
warning(4), -- needs attention
failed(5)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Overall status of the connectivity unit."
::= { connUnitEntry 6 }
connUnitProduct OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..79))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The connectivity unit vendor's product
model name."
::= { connUnitEntry 7 }
connUnitSn OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..79))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The serial number for this connectivity unit."
::= { connUnitEntry 8 }
connUnitUpTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of centiseconds since the
last unit initialization."
::= { connUnitEntry 9 }
connUnitUrl OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION
"URL to launch a management application,
if applicable. Otherwise empty string.
In a standalone unit, this would be the
same as the top-level URL. This has the same
definition as systemURL for keywords."
::= { connUnitEntry 10 }
connUnitDomainId OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(3))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"24 bit Fibre Channel address ID of this
connectivity unit, right justified with leading
zero's if required. This should be set to the
Fibre Channel address ID or if it is a switch
it would be set to the Domain Controller address.
If this value is not applicable,
return all bits set to one."
::= { connUnitEntry 11 }
connUnitProxyMaster OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
no(2),
yes(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A value of 'yes' means this is the proxy master
unit for a set of managed units. For example,
this could be the only unit with a management
card in it for a set of units. A standalone unit
should return 'yes' for this object."
::= { connUnitEntry 12 }
connUnitPrincipal OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
no(2),
yes(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Whether this connectivity unit is the principal unit
within the group of fabric elements. If this value
is not applicable, return unknown."
::= { connUnitEntry 13 }
connUnitNumSensors OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of sensors in the connUnitSensorTable."
::= { connUnitEntry 14 }
connUnitStatusChangeTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS obsolete
DESCRIPTION
"The sysuptime timestamp in centiseconds
at which the last status change occurred."
::= { connUnitEntry 15 }
connUnitConfigurationChangeTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS obsolete
DESCRIPTION
"The sysuptime timestamp in centiseconds
at which the last configuration change
occurred."
::= { connUnitEntry 16 }
connUnitNumRevs OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of revisions in the connUnitRevsTable."
DEFVAL { 1 }
::= { connUnitEntry 17 }
connUnitNumZones OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS obsolete
DESCRIPTION
"Number of zones defined in connUnitZoneTable."
::= { connUnitEntry 18 }
connUnitModuleId OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(16))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This is a unique id, persistent between boots,
that can be used to group a set of connUnits
together into a module. The intended use would
be to create a connUnit with a connUnitType of
'module' to represent a physical or logical
group of connectivity units. Then the value
of the group would be set to the value of
connUnitId for this 'container' connUnit.
connUnitModuleId should be zeros if this
connUnit is not part of a module."
::= { connUnitEntry 19 }
connUnitName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..79))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"A display string containing a name for this
connectivity unit. This object value should be
persistent between boots."
::= { connUnitEntry 20 }
connUnitInfo OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION
"A display string containing information
about this connectivity unit. This object value
should be persistent between boots."
::= { connUnitEntry 21 }
connUnitControl OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
invalid(2),
resetConnUnitColdStart(3),
resetConnUnitWarmStart(4),
offlineConnUnit(5),
onlineConnUnit(6)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to control the addressed
connUnit.
NOTE: 'Cold Start' and 'Warm Start'
are as defined in MIB II and are not meant
to be a factory reset.
resetConnUnitColdStart:
the addressed unit performs
a 'Cold Start' reset.
resetConnUnitWarmStart:
the addressed unit performs
a 'Warm Start' reset.
offlineConnUnit:
the addressed unit puts itself into
an implementation dependant 'offline' state.
In general,if a unit is in an offline state,
it cannot be used to perform meaningful
Fibre Channel work.
onlineConnUnit:
the addressed unit puts itself into an
implementation dependant 'online' state.
In general, if a unit is in an online state,
it is capable of performing meaningful
Fibre Channel work.
NOTE: Each implementation may chose not to allow
any or all of these values on a SET. "
::= { connUnitEntry 22 }
connUnitContact OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..79))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Contact information for this connectivity
unit."
::= { connUnitEntry 23 }
connUnitLocation OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..79))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Location information for this connectivity
unit."
::= { connUnitEntry 24 }
connUnitEventFilter OBJECT-TYPE
SYNTAX FcEventSeverity
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value defines the event severity
that will be logged by this connectivity unit.
All events of severity less than or equal to
connUnitEventFilter are logged in connUnitEventTable."
::= { connUnitEntry 25 }
connUnitNumEvents OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of events currently in the
connUnitEventTable."
::= { connUnitEntry 26 }
connUnitMaxEvents OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Max number of events that can be defined
in connUnitEventTable."
::= { connUnitEntry 27 }
connUnitEventCurrID OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The last used event id (connUnitEventId)."
::= { connUnitEntry 28 }
------------------------------------------------------------------
-- The Table of revisions for hardware and software elements.
connUnitRevsTable OBJECT-TYPE
SYNTAX SEQUENCE OF ConnUnitRevsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Table of the revisions supported by
connectivity units managed by this agent."
::= { connSet 7 }
connUnitRevsEntry OBJECT-TYPE
SYNTAX ConnUnitRevsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
""
INDEX { connUnitRevsUnitId,
connUnitRevsIndex }
::= { connUnitRevsTable 1 }
ConnUnitRevsEntry ::=
SEQUENCE {
connUnitRevsUnitId
OCTET STRING,
connUnitRevsIndex
INTEGER,
connUnitRevsRevId
DisplayString,
connUnitRevsDescription
DisplayString }
connUnitRevsUnitId OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (16))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The connUnitId of the connectivity unit
that contains this revision table."
::= { connUnitRevsEntry 1 }
connUnitRevsIndex OBJECT-TYPE
SYNTAX INTEGER (1..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A unique value among all connUnitRevsEntrys
with the same value of connUnitRevsUnitId,
in the range between 1 and
connUnitNumRevs[connUnitRevsUnitId]."
::= { connUnitRevsEntry 2 }
connUnitRevsRevId OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A vendor-specific string identifying a
revision of a component of the connUnit
indexed by connUnitRevsUnitId."
::= { connUnitRevsEntry 3 }
connUnitRevsDescription OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Description of a component to which the revision
corresponds."
::= { connUnitRevsEntry 4 }
-----------------------------------------------------------------------
-- The Sensor table
connUnitSensorTable OBJECT-TYPE
SYNTAX SEQUENCE OF ConnUnitSensorEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Table of the sensors supported by each
connectivity unit managed by this agent."
::= { connSet 8 }
connUnitSensorEntry OBJECT-TYPE
SYNTAX ConnUnitSensorEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry contains the information for a
specific sensor."
INDEX { connUnitSensorUnitId,
connUnitSensorIndex }
::= { connUnitSensorTable 1 }
ConnUnitSensorEntry ::=
SEQUENCE {
connUnitSensorUnitId
OCTET STRING,
connUnitSensorIndex
INTEGER,
connUnitSensorName
DisplayString,
connUnitSensorStatus
INTEGER,
connUnitSensorInfo
DisplayString,
connUnitSensorMessage
DisplayString,
connUnitSensorType
INTEGER,
connUnitSensorCharacteristic
INTEGER
}
connUnitSensorUnitId OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (16))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The connUnitId of the connectivity unit
that contains this sensor table."
::= { connUnitSensorEntry 1 }
connUnitSensorIndex OBJECT-TYPE
SYNTAX INTEGER (1..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A unique value among all connUnitSensorEntrys
with the same value of connUnitSensorUnitId,
in the range between 1 and
connUnitNumSensor[connUnitSensorUnitId]."
::= { connUnitSensorEntry 2}
connUnitSensorName OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A textual identification of the sensor
intended primarily for operator use."
::= { connUnitSensorEntry 3 }
connUnitSensorStatus OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
other(2),
ok(3), -- the sensor indicates ok
warning(4), -- the sensor indicates a warning
failed(5) -- the sensor indicates failure
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The status indicated by the sensor."
::= { connUnitSensorEntry 4 }
connUnitSensorInfo OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Miscellaneous static info about the sensor
such as its serial number."
::= { connUnitSensorEntry 5 }
connUnitSensorMessage OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This describes the status of the sensor
as a message. It may also provide more
resolution on the sensor indication, for
example 'Cover temperature 1503K, above
nominal operating range'"
::= { connUnitSensorEntry 6 }
connUnitSensorType OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
other(2),
battery(3),
fan(4),
power-supply(5),
transmitter(6),
enclosure(7),
board(8),
receiver(9)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The type of component being monitored by this
sensor."
::= { connUnitSensorEntry 7 }
connUnitSensorCharacteristic OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
other(2),
temperature(3),
pressure(4),
emf(5),
currentValue(6), -- current is a keyword
airflow(7),
frequency(8),
power(9),
door(10)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The characteristics being monitored by this
sensor."
::= { connUnitSensorEntry 8 }
-----------------------------------------------------------------------
-- The port table
connUnitPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF ConnUnitPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Generic information on ports for a specific
connUnit."
::= { connSet 10 }
connUnitPortEntry OBJECT-TYPE
SYNTAX ConnUnitPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry contains the information for
a specific port."
INDEX { connUnitPortUnitId,
connUnitPortIndex }
::= { connUnitPortTable 1 }
ConnUnitPortEntry ::=
SEQUENCE {
connUnitPortUnitId
OCTET STRING,
connUnitPortIndex
INTEGER,
connUnitPortType
INTEGER,
connUnitPortFCClassCap
OCTET STRING,
connUnitPortFCClassOp
OCTET STRING,
connUnitPortState
INTEGER,
connUnitPortStatus
INTEGER,
connUnitPortTransmitterType
INTEGER,
connUnitPortModuleType
INTEGER,
connUnitPortWwn
FcNameId,
connUnitPortFCId
OCTET STRING,
connUnitPortSn
DisplayString,
connUnitPortRevision
DisplayString,
connUnitPortVendor
DisplayString,
connUnitPortSpeed
INTEGER,
connUnitPortControl
INTEGER,
connUnitPortName
DisplayString,
connUnitPortPhysicalNumber
INTEGER,
connUnitPortStatObject
OBJECT IDENTIFIER,
connUnitPortProtocolCap
OCTET STRING,
connUnitPortProtocolOp
OCTET STRING,
connUnitPortNodeWwn
FcNameId,
connUnitPortHWState
INTEGER
}
connUnitPortUnitId OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (16))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The connUnitId of the connectivity unit
that contains this port."
::= { connUnitPortEntry 1 }
connUnitPortIndex OBJECT-TYPE
SYNTAX INTEGER (1..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A unique value among all connUnitPortEntrys
on this connectivity unit, between 0 and
connUnitNumPort[connUnitPortUnitId]."
::= { connUnitPortEntry 2 }
connUnitPortType OBJECT-TYPE
SYNTAX INTEGER {
unknown (1),
other (2),
not-present (3),
hub-port (4),
n-port (5), -- end port for fabric
l-port (6), -- end port for loop
fl-port (7), -- public loop
f-port (8), -- fabric port
e-port (9), -- fabric expansion port
g-port (10), -- generic fabric port
domain-ctl (11), -- domain controller
hub-controller(12),
scsi (13), -- parallel SCSI port
escon (14),
lan (15),
wan (16),
ac (17), -- AC power line
dc (18), -- DC power line
ssa (19) -- serial storage architecture
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The port type."
::= { connUnitPortEntry 3 }
connUnitPortFCClassCap OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (2))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Bit mask that specifies the classes
of service capability of this port. If this is not
applicable, return all bits set to zero.
The bits have
the following definition:
unknown - 0
class-f - 1
class-one - 2
class-two - 4
class-three - 8
class-four - 16
class-five - 32
class-six - 64"
::= { connUnitPortEntry 4 }
connUnitPortFCClassOp OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (2))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Bit mask that specifies the classes
of service that are currently operational.
If this is not applicable, return all bits
set to zero. This object has the same
definition as connUnitPortFCClassCap"
::= { connUnitPortEntry 5 }
connUnitPortState OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
online(2), -- available for meaningful work
offline(3), -- not available for meaningful work
bypassed(4), -- no longer used (4/12/00)
diagnostics(5)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The user selected state of the port hardware."
::= { connUnitPortEntry 6 }
connUnitPortStatus OBJECT-TYPE
SYNTAX INTEGER {
unknown (1),
unused (2), -- device cannot report this status
ready (3), -- FCAL Loop or FCPH Link reset protocol
-- initialization has completed
warning (4), -- do not use (4/12/00)
failure (5), -- do not use (4/12/00)
notparticipating (6), -- loop notparticipating and does not
-- have a loop address
initializing (7), -- protocol is proceeding
bypass (8), -- do not use (4/12/00)
ols (9) -- FCP offline status
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An overall protocol status for the
port. This value of connUnitPortState is not
online, then this is reported Unknown."
::= { connUnitPortEntry 7 }
connUnitPortTransmitterType OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
other(2),
unused(3),
shortwave(4),
longwave(5),
copper(6),
scsi(7),
longwaveNoOFC(8),
shortwaveNoOFC(9),
longwaveLED(10),
ssa(11)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The technology of the port transceiver."
::= { connUnitPortEntry 8 }
connUnitPortModuleType OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
other(2),
gbic(3),
embedded(4), -- fixed, ie, oneXnine
glm(5),
gbicSerialId(6),
gbicNoSerialId(7),
gbicNotInstalled(8),
smallFormFactor(9)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The module type of the port connector."
::= { connUnitPortEntry 9 }
connUnitPortWwn OBJECT-TYPE
SYNTAX FcNameId
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The World Wide Name of the port
if applicable, otherwise empty string."
::= { connUnitPortEntry 10 }
connUnitPortFCId OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(3))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This is the assigned Fibre Channel ID of
this port. This value is expected to be
a Big Endian value of 24 bits. If this is
loop, then it is the ALPA that is connected.
If this is an eport, then it will only
contain the domain ID left justified, zero
filled. If this port does not have a Fibre
Channel address, return all bits set to 1."
::= { connUnitPortEntry 11 }
connUnitPortSn OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..79))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The serial number of the unit (e.g., for
a GBIC). If this is not applicable, return
empty string."
::= { connUnitPortEntry 12 }
connUnitPortRevision OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..79))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The port revision (e.g., for a GBIC)."
::= { connUnitPortEntry 13 }
connUnitPortVendor OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..79))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The port vendor (e.g., for a GBIC)."
::= { connUnitPortEntry 14 }
connUnitPortSpeed OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The speed of the port in kilobytes per
second."
::= { connUnitPortEntry 15 }
connUnitPortControl OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
invalid(2),
resetConnUnitPort(3),
bypassConnUnitPort(4),
unbypassConnUnitPort(5),
offlineConnUnitPort(6),
onlineConnUnitPort(7),
resetConnUnitPortCounters(8)
}
ACCESS read-write -- (or maybe write-only)
STATUS mandatory
DESCRIPTION
"This object is used to control the addressed
connUnit's port. Valid commands are:
resetConnUnitPort: If the addressed connUnit
allows this operation to be performed to this
port, the addressed port performs a
vendor-specific 'reset' operation. Examples of
these operations are: the Link Reset protocol,
the Loop Initialization protocol, or a
resynchronization occurring between the
transceiver in the addressed port to the
transceiver that the port is connected to.
bypassConnUnitPort: If the addressed connUnit
allows this operation to be performed to this
port, the addressed port performs a
vendor-specific 'bypass' operation. Examples of
these operations are:
transitioning from online to offline, a
request(NON-PARTICIPATING) command to the
Loop Port state machine, or removal of the
port from an arbitrated loop by a hub.
unbypassConnUnitPort: If the addressed connUnit
allows this operation to be performed to this
port, the addressed port performs a
vendor-specific 'unbypass' operation. Examples
of these operations are:
the Link Failure protocol, a
request(PARTICIPATING) command to the
Loop Port state machine, or addition of the
port to an arbitrated loop by a hub.
offlineConnUnitPort: If the addressed connUnit
allows this operation to be performed to this
port, the addressed port performs a
vendor-specific 'offline' operation. Examples
of these operations are:
disabling a port's transceiver, the Link
Failure protocol, request(NON-PARTICIPATING)
command to the Loop Port state machine, or
removal of the port from an arbitrated loop
by a hub.
onlineConnUnitPort: If the addressed connUnit
allows this operation to be performed to this
port, the addressed port performs a
vendor-specific 'online' operation. Examples
of these operations are:
enabling a port's transceiver, the Link
Failure protocol, request(PARTICIPATING)
command to the Loop Port state machine, or
addition of the port from an arbitrated loop
by a hub.
NOTE: Each implementation may chose not to allow
any or all of these values on a SET. "
::= { connUnitPortEntry 16 }
connUnitPortName OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION
"A string describing the addressed port."
::= { connUnitPortEntry 17 }
connUnitPortPhysicalNumber OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This is the internal port number this
port is known by. In many implementations,
this should be the same as connUnitPortIndex.
Some implementations may have an internal port
representation not compatible with the rules
for table indeces. In that case, provide the
internal representation of this port in this
object. This value may also be used in the
connUnitLinkPortNumberX or connUnitLinkPortNumberY
objects of the connUnitLinkTable."
::= { connUnitPortEntry 18 }
connUnitPortStatObject OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
ACCESS read-only
STATUS deprecated
DESCRIPTION
"This contains the OID of the first object of the
table that contains the statistics for this particular
port. If this has a value of zero, then there are no
statistics available for this port. The port type
information will help identify the statistics objects
that will be found in the table. From this point, one
would do a getnext to get the next statistics object.
When the first part of the OID changes, the end of
table is reached."
::= { connUnitPortEntry 19 }
connUnitPortProtocolCap OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (2))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Bit mask that specifies the driver level
protocol capability of this port. If this is not
applicable, return all bits set to zero.
The bits have
the following definition:
unknown - 0
Loop - 1
Fabric - 2
SCSI - 4
TCP/IP - 8
VI - 16
FICON - 32"
::= { connUnitPortEntry 20 }
connUnitPortProtocolOp OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (2))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Bit mask that specifies the driver level
protocol(s) that are currently operational.
If this is not applicable, return all bits
set to zero. This object has the same
definition as connUnitPortProtocolCap"
::= { connUnitPortEntry 21 }
connUnitPortNodeWwn OBJECT-TYPE
SYNTAX FcNameId
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Node World Wide Name of the port
if applicable, otherwise all zeros.
This should have the same value for a
group of related ports. The container is
defined as the largest physical entity.
For example, all ports on HBAs on a host
will have the same Node WWN. All ports on
the same storage subsystem will have the
same Node WWN."
::= { connUnitPortEntry 22 }
connUnitPortHWState OBJECT-TYPE
SYNTAX INTEGER {
unknown (1),
failed (2), -- port failed diagnostics
bypassed (3), -- FCAL bypass, loop only
active (4), -- connected to a device
loopback (5), -- Port in ext loopback
txfault (6), -- Transmitter fault
noMedia (7), -- media not installed
linkDown (8) -- waiting for activity (rx sync)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The hardware detected state of the port."
::= { connUnitPortEntry 23 }
-----------------------------------------------------------------------
-- event group
connUnitEventTable OBJECT-TYPE
SYNTAX SEQUENCE OF ConnUnitEventEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The table of connectivity unit events. Errors,
warnings, and information should be reported
in this table."
::= { connSet 11 }
connUnitEventEntry OBJECT-TYPE
SYNTAX ConnUnitEventEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry contains information on
a specific event for the given
connectivity unit."
INDEX { connUnitEventUnitId, connUnitEventIndex }
::= { connUnitEventTable 1 }
ConnUnitEventEntry ::=
SEQUENCE {
connUnitEventUnitId
OCTET STRING,
connUnitEventIndex
INTEGER,
connUnitEventId
INTEGER,
connUnitREventTime
DisplayString,
connUnitSEventTime
TimeTicks,
connUnitEventSeverity
FcEventSeverity,
connUnitEventType
INTEGER,
connUnitEventObject
OBJECT IDENTIFIER,
connUnitEventDescr
DisplayString
}
connUnitEventUnitId OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (16))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The connUnitId of the connectivity unit
that contains this event table."
::= { connUnitEventEntry 1 }
connUnitEventIndex OBJECT-TYPE
SYNTAX INTEGER (1..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Each connectivity unit has its own event buffer.
As it wraps, it may write over previous events.
This object is an index into the buffer.
It is recommended that this table be read using
'getNext's to retrieve the initial table.
The management application should read the
event table at periodic intervals and then
determine if any new entries were added by
comparing the last known index value with the
current highest index value. The management
application should then update its copy of
the event table. If the read interval
is too long, it is possible that there may
be events that may not be contained in the
agent's internal event buffer.
For example, an agent may read events 50-75.
At the next read interval, connUnitEventCurrID
is 189. If the management app tries to read
event index 76, and the agent's internal buffer
is 100 entries max, event index 76 will no longer
be available.
The index value is an incrementing integer starting
from one every time there is a table reset.
On table reset, all contents are emptied and
all indeces are set to zero. When an
event is added to the table, the event is
assigned the next higher integer value than
the last item entered into the table. If the
index value reaches its maximum value, the next
item entered will cause the index value to
roll over and start at one again."
::= { connUnitEventEntry 2 }
connUnitEventId OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS obsolete
DESCRIPTION
"The internal event Id. Incremented for each
event, ranging between 0 and connUnitMaxEvents.
Not used as table index to simplify
the agent implementation. When this
reaches the end of the range specified by
connUnitMaxEvents, the Id will roll over to start
at zero. This value will be set back to zero at
reset. The relationship of this value to the index
is that internal event id may represent a smaller
number than a 32 bit integer (eg max 100 entries)
and would only have a value range up to
connUnitMaxEvents."
::= { connUnitEventEntry 3 }
connUnitREventTime OBJECT-TYPE
SYNTAX DisplayString (SIZE (15))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This is the real time when the event occurred.
It has the following format.
DDMMYYYY HHMMSS
DD=day number
MM=month number
YYYY=year number
HH=hour number
MM=minute number
SS=seconds number
If not applicable, return a NULL string."
::= { connUnitEventEntry 4 }
connUnitSEventTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This is the sysuptime timestamp when the
event occurred."
::= { connUnitEventEntry 5 }
connUnitEventSeverity OBJECT-TYPE
SYNTAX FcEventSeverity
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The event severity level."
::= { connUnitEventEntry 6 }
connUnitEventType OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
other(2),
status(3),
configuration(4),
topology(5)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The type of this event."
::= { connUnitEventEntry 7 }
connUnitEventObject OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This is used with the connUnitEventType
to identify which object the event refers to.
It can be the OID of a connectivity unit or of
another object like connUnitPortStatus[...]"
::= { connUnitEventEntry 8 }
connUnitEventDescr OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The description of the event."
::= { connUnitEventEntry 9 }
-- The link table
-- is intended to organize and communicate
-- any information the agent possesses
-- which would assist a management application
-- to discover the CONNECTIVITY UNITS in the
-- framework and the TOPOLOGY of their interconnect.
-- That is, the goal is to assist the management
-- application not only to LIST the elements of the framework,
-- but to MAP them.
-- With this goal, the agent SHOULD include
-- as much as it possesses about any links
-- from its own connectivity units to others,
-- including links among its own units.
-- An agent SHOULD include partial information
-- about links if it is not able to fully
-- define them in accord with the following structure;
-- however, the information MUST include either
-- a nonzero connUnitNodeId- or a nonzero connUnitPortWwn-
-- for each end of the link.
-- If the agent is able to discover links
-- which do not directly attach to members of its agency
-- and its discovery algorithm gives some assurance
-- the links are recently valid, it MAY include these links.
-- Link information entered by administrative action
-- MAY be included even if not validated directly
-- if the link has at least one endpoint in this agency,
-- but SHOULD NOT be included otherwise.
-- A connectivity unit should fill the table in as best it can.
-- One of the methods to fill this in would be to use the RNID
-- ELS (ANSI document 99-422v0). This allows one to query a
-- port for the information needed for the link table.
-- This table is accessed either directly if the management
-- software has an index value or via GetNexts. The value of
-- the indexes are not required to be contiguous. Each entry
-- created in this table will be assigned an index. This
-- relationship is kept persistent until the entry is removed
-- from the table or the system is reset. The total number of
-- entries are defined by the size of the table
-- For an entry to be considered to be valid, both the X (local)
-- and the Y (remote) need to have one valid value.
connUnitLinkTable OBJECT-TYPE
SYNTAX SEQUENCE OF ConnUnitLinkEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of links know to this agent from this
connectivity unit to other connectivity units."
::= { connSet 12 }
connUnitLinkEntry OBJECT-TYPE
SYNTAX ConnUnitLinkEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry describing a particular link to another."
INDEX { connUnitLinkUnitId,
connUnitLinkIndex }
::= { connUnitLinkTable 1 }
ConnUnitLinkEntry ::=
SEQUENCE {
connUnitLinkUnitId
OCTET STRING,
connUnitLinkIndex
INTEGER,
connUnitLinkNodeIdX
OCTET STRING,
connUnitLinkPortNumberX
INTEGER,
connUnitLinkPortWwnX
OCTET STRING,
connUnitLinkNodeIdY
OCTET STRING,
connUnitLinkPortNumberY
INTEGER,
connUnitLinkPortWwnY
OCTET STRING,
connUnitLinkAgentAddressY
OCTET STRING,
connUnitLinkAgentAddressTypeY
INTEGER,
connUnitLinkAgentPortY
INTEGER,
connUnitLinkUnitTypeY
FcUnitType,
connUnitLinkConnIdY
OCTET STRING,
connUnitLinkCurrIndex
INTEGER
}
connUnitLinkUnitId OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (16))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The connUnitId of the connectivity unit
that contains this link table."
::= { connUnitLinkEntry 1 }
connUnitLinkIndex OBJECT-TYPE
SYNTAX INTEGER (0..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value is used to create a unique value
for each entry in the link table with the same
connUnitLinkUnitId. The value
can only be reused if it is not currently in
in use and the value is the next candidate to
be used. This value is allowed to wrap at the
highest value represented by the number of bits.
This value is reset to zero when the system is
Reset and the first value to be used is one."
::= { connUnitLinkEntry 2 }
connUnitLinkNodeIdX OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(64))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The node WWN of the unit at one end
of the link. If the node WWN is unknown
and the node is a connUnit in the responding
agent then the value of this object MUST BE
equal to its connUnitID."
::= { connUnitLinkEntry 3 }
connUnitLinkPortNumberX OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The port number on the unit specified by
connUnitLinkNodeIdX if known, otherwise -1.
If the value is nonnegative then it will be
equal to connUnitPortPhysicalNumber."
::= { connUnitLinkEntry 4 }
connUnitLinkPortWwnX OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(16))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The port WWN of the unit specified by
connUnitLinkNodeIdX if known,
otherwise 16 octets of binary 0"
::= { connUnitLinkEntry 5 }
connUnitLinkNodeIdY OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(64))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The node WWN of the unit at the other end
of the link. If the node WWN is unknown
and the node is a connUnit in the responding
SNMP agency then the value of this object
MUST BE equal to its connUnitID."
::= { connUnitLinkEntry 6 }
connUnitLinkPortNumberY OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The port number on the unit specified by
connUnitLinkNodeIdY if known, otherwise -1.
If the value is nonnegative then it will be
equal to connUnitPortPhysicalNumber."
::= { connUnitLinkEntry 7 }
connUnitLinkPortWwnY OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(16))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The port WWN on the unit specified by
connUnitLinkNodeIdY if known,
otherwise 16 octets of binary 0"
::= { connUnitLinkEntry 8 }
connUnitLinkAgentAddressY OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(16))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The address of an FCMGMT MIB agent for the
node identified by connUnitLinkNodeIdY,
if known; otherwise 16 octets of binary 0"
::= { connUnitLinkEntry 9 }
connUnitLinkAgentAddressTypeY OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"If connUnitLinkAgentAddressY is nonzero,
it is a protocol address.
ConnUnitLinkAgentAddressTypeY is the
the 'address family number' assigned by IANA
to identify the address format.
(eg, 1 is Ipv4, 2 is Ipv6)."
::= { connUnitLinkEntry 10 }
connUnitLinkAgentPortY OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The IP port number for the agent. This is
provided in case the agent is at a non-standard
SNMP port."
::= { connUnitLinkEntry 11 }
connUnitLinkUnitTypeY OBJECT-TYPE
SYNTAX FcUnitType
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Type of the FC connectivity unit as defined in
connUnitType."
::= { connUnitLinkEntry 12 }
connUnitLinkConnIdY OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(3))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This is the Fibre Channel ID of this port.
If the connectivity unit is a switch, this
is expected to be a Big Endian value of 24
bits. If this is loop, then it is the ALPA
that is connected. If this is an eport, then
it will only contain the domain ID. If not
any of those, unknown or cascaded loop,
return all bits set to 1."
::= { connUnitLinkEntry 13 }
connUnitLinkCurrIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The last used link index."
::= { connUnitLinkEntry 14 }
------------------------------------------------------------------
-- The following four tables have been obsoleted. These were used to
-- keep statistic information based on the type of port type. It was
-- changed for all ports to use a common statistics table.
-- Hub Port Statistics
-- connUnitPortStatHubTable OBJECT-TYPE
-- SYNTAX SEQUENCE OF ConnUnitPortStatHubEntry
-- ACCESS not-accessible
-- STATUS obsolete
-- DESCRIPTION
-- "A list of statistics for the hub port type.
-- This object has been obsoleted."
-- ::= { statSet 1 }
-- Fabric Port Statistics
-- connUnitPortStatFabricTable OBJECT-TYPE
-- SYNTAX SEQUENCE OF ConnUnitPortStatFabricEntry
-- ACCESS not-accessible
-- STATUS obsolete
-- DESCRIPTION
-- "A list of statistics for the fabric port types.
-- This object has been obsoleted."
-- ::= { statSet 2 }
-- SCSI Port Statistics
-- connUnitPortStatSCSITable OBJECT-TYPE
-- SYNTAX SEQUENCE OF ConnUnitPortStatSCSIEntry
-- ACCESS not-accessible
-- STATUS obsolete
-- DESCRIPTION
-- "A list of statistics for the SCSI port type.
-- This object has been obsoleted."
-- ::= { statSet 3 }
-- LAN/WAN Port Statistics
-- connUnitPortStatLANTable OBJECT-TYPE
-- SYNTAX SEQUENCE OF ConnUnitPortStatLANEntry
-- ACCESS not-accessible
-- STATUS obsolete
-- DESCRIPTION
-- "A list of statistics for the LAN/WAN port type.
-- This object has been obsoleted."
-- ::= { statSet 4 }
-- There is one and only one statistics table for each
-- individual port. For all objects in statistics table, if the object is not
-- supported by the conn unit then the high order bit is set to 1 with all other
-- bits set to zero. The high order bit is reserved to indicate if the object
-- if supported or not. All objects start at a value of zero at hardware
-- initialization and continue incrementing till end of 63 bits and then
-- wrap to zero.
-- Port Statistics
connUnitPortStatTable OBJECT-TYPE
SYNTAX SEQUENCE OF ConnUnitPortStatEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of statistics for the fabric port types."
::= { statSet 5 }
connUnitPortStatEntry OBJECT-TYPE
SYNTAX ConnUnitPortStatEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry describing port statistics."
INDEX { connUnitPortStatUnitId,
connUnitPortStatIndex }
::= { connUnitPortStatTable 1 }
ConnUnitPortStatEntry ::=
SEQUENCE {
connUnitPortStatUnitId
FcGlobalId,
connUnitPortStatIndex
INTEGER,
connUnitPortStatCountError
OCTET STRING,
connUnitPortStatCountTxObjects
OCTET STRING,
connUnitPortStatCountRxObjects
OCTET STRING,
connUnitPortStatCountTxElements
OCTET STRING,
connUnitPortStatCountRxElements
OCTET STRING,
connUnitPortStatCountBBCreditZero
OCTET STRING,
connUnitPortStatCountInputBuffersFull
OCTET STRING,
connUnitPortStatCountFBSYFrames
OCTET STRING,
connUnitPortStatCountPBSYFrames
OCTET STRING,
connUnitPortStatCountFRJTFrames
OCTET STRING,
connUnitPortStatCountPRJTFrames
OCTET STRING,
connUnitPortStatCountClass1RxFrames
OCTET STRING,
connUnitPortStatCountClass1TxFrames
OCTET STRING,
connUnitPortStatCountClass1FBSYFrames
OCTET STRING,
connUnitPortStatCountClass1PBSYFrames
OCTET STRING,
connUnitPortStatCountClass1FRJTFrames
OCTET STRING,
connUnitPortStatCountClass1PRJTFrames
OCTET STRING,
connUnitPortStatCountClass2RxFrames
OCTET STRING,
connUnitPortStatCountClass2TxFrames
OCTET STRING,
connUnitPortStatCountClass2FBSYFrames
OCTET STRING,
connUnitPortStatCountClass2PBSYFrames
OCTET STRING,
connUnitPortStatCountClass2FRJTFrames
OCTET STRING,
connUnitPortStatCountClass2PRJTFrames
OCTET STRING,
connUnitPortStatCountClass3RxFrames
OCTET STRING,
connUnitPortStatCountClass3TxFrames
OCTET STRING,
connUnitPortStatCountClass3Discards
OCTET STRING,
connUnitPortStatCountRxMulticastObjects
OCTET STRING,
connUnitPortStatCountTxMulticastObjects
OCTET STRING,
connUnitPortStatCountRxBroadcastObjects
OCTET STRING,
connUnitPortStatCountTxBroadcastObjects
OCTET STRING,
connUnitPortStatCountRxLinkResets
OCTET STRING,
connUnitPortStatCountTxLinkResets
OCTET STRING,
connUnitPortStatCountNumberLinkResets
OCTET STRING,
connUnitPortStatCountRxOfflineSequences
OCTET STRING,
connUnitPortStatCountTxOfflineSequences
OCTET STRING,
connUnitPortStatCountNumberOfflineSequences
OCTET STRING,
connUnitPortStatCountLinkFailures
OCTET STRING,
connUnitPortStatCountInvalidCRC
OCTET STRING,
connUnitPortStatCountInvalidTxWords
OCTET STRING,
connUnitPortStatCountPrimitiveSequenceProtocolErrors
OCTET STRING,
connUnitPortStatCountLossofSignal
OCTET STRING,
connUnitPortStatCountLossofSynchronization
OCTET STRING,
connUnitPortStatCountInvalidOrderedSets
OCTET STRING,
connUnitPortStatCountFramesTooLong
OCTET STRING,
connUnitPortStatCountFramesTruncated
OCTET STRING,
connUnitPortStatCountAddressErrors
OCTET STRING,
connUnitPortStatCountDelimiterErrors
OCTET STRING,
connUnitPortStatCountEncodingDisparityErrors
OCTET STRING
}
connUnitPortStatUnitId OBJECT-TYPE
SYNTAX FcGlobalId
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The connUnitId of the connectivity unit
that contains this port stat table."
::= { connUnitPortStatEntry 1 }
connUnitPortStatIndex OBJECT-TYPE
SYNTAX INTEGER (0..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A unique value among all entrys
in this table, between 0 and
connUnitNumPort[connUnitPortUnitId]."
::= { connUnitPortStatEntry 2 }
connUnitPortStatCountError OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A count of the errors that have occured
on this port."
::= { connUnitPortStatEntry 3 }
connUnitPortStatCountTxObjects OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of frames/packets/IOs/etc that have been transmitted
by this port. Note: A Fibre Channel frame starts with SOF and
ends with EOF. FC loop devices should not count frames passed
through. This value represents the sum total for all other Tx
objects."
::= { connUnitPortStatEntry 4 }
connUnitPortStatCountRxObjects OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of frames/packets/IOs/etc that have been received
by this port. Note: A Fibre Channel frame starts with SOF and
ends with EOF. FC loop devices should not count frames passed
through. This value represents the sum total for all other Rx
objects."
::= { connUnitPortStatEntry 5 }
connUnitPortStatCountTxElements OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of octets or bytes that have been transmitted
by this port. One second periodic polling of the port. This
value is saved and compared with the next polled value to
compute net throughput. Note, for Fibre Channel, ordered
sets are not included in the count."
::= { connUnitPortStatEntry 6 }
connUnitPortStatCountRxElements OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of octets or bytes that have been received.
by this port. One second periodic polling of the port. This
value is saved and compared with the next polled value to
compute net throughput. Note, for Fibre Channel, ordered
sets are not included in the count."
::= { connUnitPortStatEntry 7 }
connUnitPortStatCountBBCreditZero OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of transitions in/out of BBcredit zero state.
The other side is not providing any credit. Note,
this is a Fibre Channel stat only."
::= { connUnitPortStatEntry 8 }
connUnitPortStatCountInputBuffersFull OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of occurrences when all input buffers of a
port were full and outbound buffer-to-buffer credit
transitioned to zero. There is no credit to
provide to other side. Note, this is a Fibre Channel
stat only."
::= { connUnitPortStatEntry 9 }
connUnitPortStatCountFBSYFrames OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of times that FBSY was returned to this port as a
result of a frame that could not be delivered to the other
end of the link. This occurs if either the Fabric or the
destination port is temporarily busy. Port can only occur
on SOFc1 frames (the frames that establish a connection).
Note, this is a Fibre Channel only stat. This is the sum
of all classes. If you cannot keep the by class counters,
then keep the sum counters."
::= { connUnitPortStatEntry 10 }
connUnitPortStatCountPBSYFrames OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of times that PBSY was returned to this port as a
result of a frame that could not be delivered to the other
end of the link. This occurs if the destination port is
temporarily busy. PBSY can only occur on SOFc1 frames
(the frames that establish a connection). Note, this is
a Fibre Channel only stat.This is the sum
of all classes. If you cannot keep the by class counters,
then keep the sum counters."
::= { connUnitPortStatEntry 11 }
connUnitPortStatCountFRJTFrames OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of times that FRJT was returned to this port as a
result of a Frame that was rejected by the fabric. Note,
This is the total for all classes and is a Fibre Channel
only stat."
::= { connUnitPortStatEntry 12 }
connUnitPortStatCountPRJTFrames OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of times that FRJT was returned to this port as a
result of a Frame that was rejected at the destination
N_Port. Note, This is the total for all classes and is
a Fibre Channel only stat."
::= { connUnitPortStatEntry 13 }
connUnitPortStatCountClass1RxFrames OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of Class 1 Frames received at this port. Note, this
is a Fibre Channel only stat."
::= { connUnitPortStatEntry 14 }
connUnitPortStatCountClass1TxFrames OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of Class 1 Frames transmitted out this port. Note,
this is a Fibre Channel only stat."
::= { connUnitPortStatEntry 15 }
connUnitPortStatCountClass1FBSYFrames OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of times that FBSY was returned to this port as a
result of a Class 1 Frame that could not be delivered to the
other end of the link. This occurs if either the Fabric or the
destination port is temporarily busy. FBSY can only occur on
SOFc1 frames (the frames that establish a connection). Note,
this is a Fibre Channel only stat."
::= { connUnitPortStatEntry 16 }
connUnitPortStatCountClass1PBSYFrames OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of times that PBSY was returned to this port as a result
of a Class 1 Frame that could not be delivered to the other end
of the link. This occurs if the destination N_Port is temporarily
busy. PBSY can only occur on SOFc1 frames (the frames that
establish a connection). Note, this is a Fibre Channel only
stat."
::= { connUnitPortStatEntry 17 }
connUnitPortStatCountClass1FRJTFrames OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of times that FRJT was returned to this port as a result
of a Class 1 Frame that was rejected by the fabric. Note, this
is a Fibre Channel only stat."
::= { connUnitPortStatEntry 18 }
connUnitPortStatCountClass1PRJTFrames OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of times that FRJT was returned to this port as a result
of a Class 1 Frame that was rejected at the destination N_Port.
Note, this is a Fibre Channel only stat."
::= { connUnitPortStatEntry 19 }
connUnitPortStatCountClass2RxFrames OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of Class 2 Frames received at this port. Note, this
is a Fibre Channel only stat."
::= { connUnitPortStatEntry 20 }
connUnitPortStatCountClass2TxFrames OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of Class 2 Frames transmitted out this port. Note,
this is a Fibre Channel only stat."
::= { connUnitPortStatEntry 21 }
connUnitPortStatCountClass2FBSYFrames OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of times that FBSY was returned to this port as a
result of a Class 2 Frame that could not be delivered to the
other end of the link. This occurs if either the Fabric or the
destination port is temporarily busy. FBSY can only occur on
SOFc1 frames (the frames that establish a connection). Note,
this is a Fibre Channel only stat."
::= { connUnitPortStatEntry 22 }
connUnitPortStatCountClass2PBSYFrames OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of times that PBSY was returned to this port as a result
of a Class 2 Frame that could not be delivered to the other end
of the link. This occurs if the destination N_Port is temporarily
busy. PBSY can only occur on SOFc1 frames (the frames that
establish a connection). Note, this is a Fibre Channel only
stat."
::= { connUnitPortStatEntry 23 }
connUnitPortStatCountClass2FRJTFrames OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of times that FRJT was returned to this port as a result
of a Class 2 Frame that was rejected by the fabric. Note, this
is a Fibre Channel only stat."
::= { connUnitPortStatEntry 24 }
connUnitPortStatCountClass2PRJTFrames OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of times that FRJT was returned to this port as a result
of a Class 2 Frame that was rejected at the destination N_Port.
Note, this is a Fibre Channel only stat."
::= { connUnitPortStatEntry 25 }
connUnitPortStatCountClass3RxFrames OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of Class 3 Frames received at this port. Note, this
is a Fibre Channel only stat."
::= { connUnitPortStatEntry 26 }
connUnitPortStatCountClass3TxFrames OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of Class 3 Frames transmitted out this port. Note,
this is a Fibre Channel only stat."
::= { connUnitPortStatEntry 27 }
connUnitPortStatCountClass3Discards OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of Class 3 Frames that were discarded upon reception
at this port. There is no FBSY or FRJT generated for Class 3
Frames. They are simply discarded if they cannot be delivered.
Note, this is a Fibre Channel only stat."
::= { connUnitPortStatEntry 28 }
connUnitPortStatCountRxMulticastObjects OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of Multicast Frames or Packets received at this port."
::= { connUnitPortStatEntry 29 }
connUnitPortStatCountTxMulticastObjects OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of Multicast Frames or Packets transmitted out this port."
::= { connUnitPortStatEntry 30 }
connUnitPortStatCountRxBroadcastObjects OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of Broadcast Frames or Packets received at this port."
::= { connUnitPortStatEntry 31 }
connUnitPortStatCountTxBroadcastObjects OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of Broadcast Frames or Packets transmitted out this port.
On a Fibre Channel loop, count only OPNr frames generated."
::= { connUnitPortStatEntry 32 }
connUnitPortStatCountRxLinkResets OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of Link resets. This is the number of LRs received. Note, this
is a Fibre Channel only stat."
::= { connUnitPortStatEntry 33 }
connUnitPortStatCountTxLinkResets OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of Link resets. This is the number LRs transmitted. Note, this
is a Fibre Channel only stat."
::= { connUnitPortStatEntry 34 }
connUnitPortStatCountNumberLinkResets OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of Link resets and LIPs detected at this port.
The number times the reset link protocol is initiated.
These are the count of the logical resets, a count of the
number of primatives. Note, this is a Fibre Channel only
stat."
::= { connUnitPortStatEntry 35 }
connUnitPortStatCountRxOfflineSequences OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of Offline Primitive OLS received at this port.
Note, this is a Fibre Channel only stat."
::= { connUnitPortStatEntry 36 }
connUnitPortStatCountTxOfflineSequences OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of Offline Primitive OLS transmitted by this port.
Note, this is a Fibre Channel only stat."
::= { connUnitPortStatEntry 37 }
connUnitPortStatCountNumberOfflineSequences OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of Offline Primitive sequence received at this port.
Note, this is a Fibre Channel only stat."
::= { connUnitPortStatEntry 38 }
connUnitPortStatCountLinkFailures OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of link failures. This count is part of the Link Error
Status Block (LESB). (FC-PH 29.8). Note, this is a Fibre
Channel only stat."
::= { connUnitPortStatEntry 39 }
connUnitPortStatCountInvalidCRC OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of frames received with invalid CRC. This count is
part of the Link Error Status Block (LESB). (FC-PH 29.8). Loop
ports should not count CRC errors passing through when
monitoring. Note, this is a Fibre Channel only stat."
::= { connUnitPortStatEntry 40 }
connUnitPortStatCountInvalidTxWords OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of invalid transmission words received at this
port. This count is part of the Link Error Status Block (LESB).
(FC-PH 29.8). Note, this is a Fibre Channel only stat."
::= { connUnitPortStatEntry 41 }
connUnitPortStatCountPrimitiveSequenceProtocolErrors OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of primitive sequence protocol errors detected at
this port. This count is part of the Link Error Status
Block (LESB). (FC-PH 29.8). Note, this is a Fibre Channel
only stat."
::= { connUnitPortStatEntry 42 }
connUnitPortStatCountLossofSignal OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of instances of signal loss detected at port.
This count is part of the Link Error Status Block (LESB).
(FC-PH 29.8). Note, this is a Fibre Channel only stat."
::= { connUnitPortStatEntry 43 }
connUnitPortStatCountLossofSynchronization OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of instances of synchronization loss detected at port.
This count is part of the Link Error Status Block (LESB).
(FC-PH 29.8). Note, this is a Fibre Channel only stat."
::= { connUnitPortStatEntry 44 }
connUnitPortStatCountInvalidOrderedSets OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of invalid ordered sets received at port. This count
is part of the Link Error Status Block (LESB). (FC-PH 29.8).
Note, this is a Fibre Channel only stat."
::= { connUnitPortStatEntry 45 }
connUnitPortStatCountFramesTooLong OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of frames received at this port where the
frame length was greater than what was agreed to in
FLOGI/PLOGI. This could be caused by losing the end of
frame delimiter. Note, this is a Fibre Channel only stat."
::= { connUnitPortStatEntry 46 }
connUnitPortStatCountFramesTruncated OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of frames received at this port where the
frame length was less than the minimum indicated by the
frame header - normally 24 bytes, but it could be more if the
DFCTL field indicates an optional header should have been
present. Note, this is a Fibre Channel only stat."
::= { connUnitPortStatEntry 47 }
connUnitPortStatCountAddressErrors OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of frames received with unknown addressing.
e.x. unknown SID or DID. the SID or DID is not known to the
routing algorithm. Note. this is a Fibre Channel only stat."
::= { connUnitPortStatEntry 48 }
connUnitPortStatCountDelimiterErrors OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of invalid frame delimiters received at this
port. An example is a frame with a class 2 start and and a
class 3 at the end. Note, this is a Fibre Channel only stat."
::= { connUnitPortStatEntry 49 }
connUnitPortStatCountEncodingDisparityErrors OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Count of disparity errors received at this port. Note,
this is a Fibre Channel only stat."
::= { connUnitPortStatEntry 50 }
--------------------------------------------------------------------
-- the Fibre Channel Simple Name Server table
--
-- The Fibre Channel Simple Name Server table contains an entry for each device
-- presently known to this connUnit. There will not be any version on this since
-- FC-GS3 does not define a version today.
--
-- This table is accessed either directly if the management
-- software has an index value or via GetNexts. The value of
-- the indexes are not required to be contiguous. Each entry
-- created in this table will be assigned an index. This
-- relationship is kept persistent until the entry is removed
-- from the table or the system is reset. The total number of
-- entries are defined by the size of the table
connUnitSnsMaxEntry OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The maximum number of entries in the table."
::= { connUnitServiceScalars 1 }
connUnitSnsTable OBJECT-TYPE
SYNTAX SEQUENCE OF ConnUnitSnsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains an entry for each object registered with
this port in the switch."
::= { connUnitServiceTables 1 }
connUnitSnsEntry OBJECT-TYPE
SYNTAX ConnUnitSnsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The Simple Name Server table for the port represented by
connUnitSnsPortIndex ."
INDEX { connUnitSnsId, connUnitSnsPortIndex, connUnitSnsPortIdentifier }
::= { connUnitSnsTable 1 }
ConnUnitSnsEntry ::=
SEQUENCE {
connUnitSnsId
OCTET STRING,
connUnitSnsPortIndex
INTEGER,
connUnitSnsPortIdentifier
FcAddressId,
connUnitSnsPortName
FcNameId,
connUnitSnsNodeName
FcNameId,
connUnitSnsClassOfSvc
OCTET STRING,
connUnitSnsNodeIPAddress
OCTET STRING,
connUnitSnsProcAssoc
OCTET STRING,
connUnitSnsFC4Type
OCTET STRING,
connUnitSnsPortType
OCTET STRING,
connUnitSnsPortIPAddress
OCTET STRING,
connUnitSnsFabricPortName
FcNameId,
connUnitSnsHardAddress
FcAddressId,
connUnitSnsSymbolicPortName
DisplayString,
connUnitSnsSymbolicNodeName
DisplayString
}
connUnitSnsId OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (16))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The connUnitId of the connectivity unit
that contains this Name Server table."
::= { connUnitSnsEntry 1 }
connUnitSnsPortIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The physical port number of this SNS table entry. Each physical port
has an SNS table with 1-n entries indexed by connUnitSnsPortIdentifier (port
address)"
::= { connUnitSnsEntry 2 }
connUnitSnsPortIdentifier OBJECT-TYPE
SYNTAX FcAddressId
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Port Identifier for this entry in the SNS table."
::= { connUnitSnsEntry 3 }
connUnitSnsPortName OBJECT-TYPE
SYNTAX FcNameId
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Port Name for this entry in the SNS table."
::= { connUnitSnsEntry 4 }
connUnitSnsNodeName OBJECT-TYPE
SYNTAX FcNameId
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Node Name for this entry in the SNS table."
::= { connUnitSnsEntry 5 }
connUnitSnsClassOfSvc OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Classes of Service offered by this entry in the SNS table."
::= { connUnitSnsEntry 6 }
connUnitSnsNodeIPAddress OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(16))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The IPv6 formatted address of the Node for this entry in the SNS table."
::= { connUnitSnsEntry 7 }
connUnitSnsProcAssoc OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Process Associator for this entry in the SNS table."
::= { connUnitSnsEntry 8 }
connUnitSnsFC4Type OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The FC-4 Types supported by this entry in the SNS table."
::= { connUnitSnsEntry 9 }
connUnitSnsPortType OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Port Type of this entry in the SNS table."
::= { connUnitSnsEntry 10 }
connUnitSnsPortIPAddress OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(16))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The IPv6 formatted address of this entry in the SNS table."
::= { connUnitSnsEntry 11 }
connUnitSnsFabricPortName OBJECT-TYPE
SYNTAX FcNameId
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Fabric Port name of this entry in the SNS table."
::= { connUnitSnsEntry 12 }
connUnitSnsHardAddress OBJECT-TYPE
SYNTAX FcAddressId
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Hard Address of this entry in the SNS table."
::= { connUnitSnsEntry 13 }
connUnitSnsSymbolicPortName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..79))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Symbolic Port Name of this entry in the SNS table."
::= { connUnitSnsEntry 14 }
connUnitSnsSymbolicNodeName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..79))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Symbolic Node Name of this entry in the SNS table."
::= { connUnitSnsEntry 15 }
-----------------------------------------------------------------------
-- SNMP trap registration group
trapMaxClients OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The maximum number of SNMP trap recipients
supported by the connectivity unit."
::= { trapReg 1 }
trapClientCount OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The current number of rows in the trap table."
::= { trapReg 2 }
trapRegTable OBJECT-TYPE
SYNTAX SEQUENCE OF TrapRegEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table containing a row for each IP address/port
number that traps will be sent to."
::= { trapReg 3 }
trapRegEntry OBJECT-TYPE
SYNTAX TrapRegEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Ip/Port pair for a specific client."
INDEX { trapRegIpAddress,
trapRegPort }
::= { trapRegTable 1 }
TrapRegEntry ::=
SEQUENCE {
trapRegIpAddress
IpAddress,
trapRegPort
INTEGER,
trapRegFilter
FcEventSeverity,
trapRegRowState
INTEGER
}
trapRegIpAddress OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Ip address of a client registered for
traps."
::= { trapRegEntry 1 }
trapRegPort OBJECT-TYPE
SYNTAX INTEGER (1..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The UDP port to send traps to for this host.
Normally this would be the standard trap port
(162). This object is an index and must be
specified to create a row in this table."
::= { trapRegEntry 2 }
trapRegFilter OBJECT-TYPE
SYNTAX FcEventSeverity
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This value defines the trap severity
filter for this trap host. The connUnit will send
traps to this host that have a severity level
less than or equal to this value.
The default value of this object is 'warning'."
::= { trapRegEntry 3}
trapRegRowState OBJECT-TYPE
SYNTAX INTEGER {
rowDestroy(1), -- Remove row from table.
rowInactive(2), -- Row exists, but TRAPs disabled
rowActive(3) -- Row exists and is enabled for
-- sending traps
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the state of the row.
rowDestroy
READ: Can never happen.
WRITE: Remove this row from the table.
rowInactive
READ: Indicates that this row does exist, but
that traps are not enabled to be sent to the
target.
WRITE: If the row does not exist, and the agent
allows writes to the trap table, then a new
row is created. The values of the optional
columns will be set to default values. Traps are
not enabled to be sent to the target. If the row
already existed, then traps are disabled from being
sent to the target.
rowActive
READ: Indicates that this row exists, and that traps
are enabled to be sent to the target.
WRITE: If the row does not exist, and the agent
allows writes to the trap table, then a new row is
created. The values of the optional columns will be
set to default values. Traps are enabled to be sent
to the target. If the row already exists, then traps
are enabled to be sent to the target.
A value of rowActive or rowInactive must be specified to
create a row in the table."
::= { trapRegEntry 4}
-- Related traps
connUnitStatusChange TRAP-TYPE
ENTERPRISE fcmgmt
VARIABLES { connUnitStatus, connUnitState }
DESCRIPTION
"The overall status of the connectivity unit has
changed.
Recommended severity level (for filtering): alert"
::= 1
-- connUnitAddedTrap , 2, no longer used
connUnitDeletedTrap TRAP-TYPE
ENTERPRISE fcmgmt
VARIABLES { connUnitId }
DESCRIPTION
"A connUnit has been deleted from this agent.
Recommended severity level (for filtering): warning"
::= 3
connUnitEventTrap TRAP-TYPE
ENTERPRISE fcmgmt
VARIABLES { connUnitEventId,
connUnitEventType,
connUnitEventObject,
connUnitEventDescr }
DESCRIPTION
"An event has been generated by the
connectivity unit.
Recommended severity level (for filtering): info"
::= 4
connUnitSensorStatusChange TRAP-TYPE
ENTERPRISE fcmgmt
VARIABLES { connUnitSensorStatus }
DESCRIPTION
"The overall status of the connectivity unit has
changed.
Recommended severity level (for filtering): alert"
::= 5
connUnitPortStatusChange TRAP-TYPE
ENTERPRISE fcmgmt
VARIABLES { connUnitPortStatus, connUnitPortState }
DESCRIPTION
"The overall status of the connectivity unit has
changed.
Recommended severity level (for filtering): alert"
::= 6
END
|