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
|
Network Working Group K. S. Teow
Request for Comments: 2837 Brocade Communications Systems, Inc.
Category: Standards Track May 2000
Definitions of Managed Objects
for the Fabric Element in Fibre Channel Standard
Status of this Memo
This document specifies an Internet standards track protocol for the
Internet community, and requests discussion and suggestions for
improvements. Please refer to the current edition of the "Internet
Official Protocol Standards" (STD 1) for the standardization state
and status of this protocol. Distribution of this memo is unlimited.
Copyright Notice
Copyright (C) The Internet Society (2000). All Rights Reserved.
Abstract
This memo defines an extension to the Management Information Base
(MIB) for use with network management protocols in TCP/IP-based
internets. In particular, it defines the objects for managing the
operations of the Fabric Element portion of the Fibre Channel
Standards.
Table of Contents
1. The SNMP Management Framework ..................................2
2. Overview .......................................................3
2.1 Management View of a Fabric Element ...........................4
2.2 Structure of the Fabric Element MIB ...........................5
3. Object Definitions .............................................6
The Configuration Group ......................................8
The Module Table ...........................................9
The FxPort Configuration Table ............................12
The Status Group ............................................16
The FxPort Status Table ...................................16
The FxPort Physical Level Table ...........................18
The FxPort Fabric Login Table .............................20
The Error Group .............................................24
The Accounting Groups........................................27
The Class 1 Accounting Table ..............................27
The Class 2 Accounting Table ..............................31
The Class 3 Accounting Table ..............................33
The Capability Group ........................................35
Teow Standards Track [Page 1]
^L
RFC 2837 FC Fabric Element MIB May 2000
Conformance information .....................................38
4. Security Considerations .......................................43
5. Intellectual Property .........................................44
6. Acknowledgements ..............................................44
7. References ....................................................45
7.1 IETF References ..............................................45
7.2 Approved ANSI/NCITS References ...............................46
7.3 ANSI/NCITS References Under Development ......................47
8. Editors' Addresses ............................................47
9. Full Copyright Statement ......................................48
1. The SNMP Management Framework
The SNMP Management Framework presently consists of five major
components:
o An overall architecture, described in RFC 2571 [1].
o Mechanisms for describing and naming objects and events for the
purpose of management. The first version of this Structure of
Management Information (SMI) is called SMIv1 and described in STD
16, RFC 1155 [2], STD 16, RFC 1212 [3] and RFC 1215 [4]. The
second version, called SMIv2, is described in STD 58, RFC 2578
[5], STD 58, RFC 2579 [6] and STD 58, RFC 2580 [7].
o Message protocols for transferring management information. The
first version of the SNMP message protocol is called SNMPv1 and
described in STD 15, RFC 1157 [8]. A second version of the SNMP
message protocol, which is not an Internet standards track
protocol, is called SNMPv2c and described in RFC 1901 [9] and RFC
1906 [10]. The third version of the message protocol is called
SNMPv3 and described in RFC 1906 [10], RFC 2572 [11] and RFC 2574
[12].
o Protocol operations for accessing management information. The
first set of protocol operations and associated PDU formats is
described in STD 15, RFC 1157 [8]. A second set of protocol
operations and associated PDU formats is described in RFC 1905
[13].
o A set of fundamental applications described in RFC 2573 [14] and
the view-based access control mechanism described in RFC 2575
[15].
A more detailed introduction to the current SNMP Management Framework
can be found in RFC 2570 [16].
Teow Standards Track [Page 2]
^L
RFC 2837 FC Fabric Element MIB May 2000
Managed objects are accessed via a virtual information store, termed
the Management Information Base or MIB. Objects in the MIB are
defined using the mechanisms defined in the SMI.
This memo specifies a MIB module that is compliant to the SMIv2. A
MIB conforming to the SMIv1 can be produced through the appropriate
translations. The resulting translated MIB must be semantically
equivalent, except where objects or events are omitted because no
translation is possible (use of Counter64). Some machine readable
information in SMIv2 will be converted into textual descriptions in
SMIv1 during the translation process. However, this loss of machine
readable information is not considered to change the semantics of the
MIB.
2. Overview
A Fibre Channel Fabric is an entity which interconnects Node Ports
(N_Ports) or Node Loop Ports (NL_Ports). It provides transport and
routing functions. In essence, a Fabric is a network of N_Ports
and/or NL_Ports to communicate with one another. A Fabric is
composed of one or more Fabric Element that are interconnected via
Inter-element Links (IEL). A Fabric Element is the smallest unit of
a Fabric that meets the definition of a Fabric. It must consist of
at least three external ports to connect to either N_Ports, NL_Ports
or other Fabric Elements. In general, a Fabric Element port may be
of one of the following types:
(1) F_Port, a fabric port to connect to an N_Port ([17], [21], [22]);
(2) FL_Port, a fabric port that also supports a FC Arbitrated Loop
consisting of one or more NL_Ports ([20], [24]).
(3) E_Port, an expansion port to connect to another Fabric Element
([18], [23]);
This memo shall define objects related to a Fabric Element, its
F_Ports and FL_Ports. Objects related to other types of FC ports
shall be defined in future.
For the rest of the document, the term, "FxPort", will be used to
refer to both F_Port and FL_Port where the distinction is not
necessary. The term, "NxPort" will be used to refer to both N_Port
and NL_Port in the similar fashion.
Teow Standards Track [Page 3]
^L
RFC 2837 FC Fabric Element MIB May 2000
2.1. Management View of a Fabric Element
From the management perspective, it is helpful to view a Fabric
Element to be consisting of multiple "modules". Each module is a
grouping, either physical or logical, of one or more ports that may
be managed as a sub-entity within the Fabric Element.
This module mapping is recommended but optional. A vendor may elect
to put all ports into a single module, or to divide the ports into
modules that do not match physical divisions.
The object fcFeModuleCapacity indicates the maximum number of modules
that a given Fabric Element may contain. This value must remain
constant from one management restart to the next.
Each module is uniquely identified by a module number in the range of
1 through fcFeModuleCapacity inclusive. Modules may come and go
without causing a management reset (of sysUpTime), and may be
sparsely numbered within the Fabric Element. That is, the module
numbering is not required to be contiguous. For instance, if a
module is mapped physically to a field-replaceable card and in a 13-
card cage Fabric Element, cards 3, 5, 6 and 7 may be installed. The
vendor may choose to label them as modules 3, 5, 6 and 7
respectively. In this example, the value of fcFeModuleCapacity is
13. Note that the object fcFeModuleLastChange acts as the
discontinuity indicator for all counter objects in this MIB.
A Fabric Element may also provide a proxy management on behalf of
another management entity by presenting it as one of its Fabric
Element modules.
The object fcFeModuleFxPortCapacity indicates the maximum number of
ports that a given module may contain. The value of
fcFeModuleFxPortCapacity must not change for a given module.
However, a module may be deleted from the Fabric Element and replaced
with a module containing a different number of ports. The value of
fcFeModuleLastChange will indicate that a change took place.
Each port within the Fabric Element is uniquely identified by a
combination of module index and port index, where port index is an
integer in the range (1..fcFeModuleFxPortCapacity). As with modules
within a Fabric Element, ports within a module may be sparsely
numbered. That is the port numbering is not required to be
contiguous. Likewise, ports may come and go within a module without
causing a management reset.
Teow Standards Track [Page 4]
^L
RFC 2837 FC Fabric Element MIB May 2000
In terms of attachment, an F_Port will be attached to another N_Port;
and an FL_Port will be attached to one or up to 126 NL_Ports. In
general, an FxPort may be attached to one or more NxPorts. Each
NxPort associated with an FxPort will be uniquely identified by a
combination of module index, FxPort index and NxPort index. An
NxPort index is an integer in the range (1..126). The following
diagram illustrates the management view of a Fabric Element.
#=======================================================#
# +----------------- - - - -----------------+ #
# | Module 1 [1] . . . [i] | #
# +----------------- - - - -----------------+ #
# o o o #
# +---------------------- - - - --------+ #
# | Module M [1] . . . [n] | #
# +---------------------- - - - -----^--+ #
#=====================================|=================#
|
One or more NxPorts { [1] . . . [L] }<-+
- - - - - - - - -
where "i", "n", "M" and "L" are some arbitrary sample integer values,
and "L" must be less than 127.
2.2. Structure of the Fabric Element MIB
This memo assumes that a Fabric Element has an SNMP entity associated
with its managed objects. The managed objects are divided as follow:
- the Configuration group
- the Status group
- the Error group
- the Accounting group
- the Capability group
In each group, scalar objects and table entries are defined.
The Configuration group contains configuration and service parameters
for the Fabric Element, modules and the FxPorts.
The Operation group contains the operational status and parameters of
an FxPort. The group also contains the service parameters that have
been established between the FxPort and its attached NxPort, if
applicable.
The Error group contains counters tracking various types of errors
detected by each FxPort. The information may be used for diagnostics
and/or to derive the quality of the link between an FxPort and one or
more attached NxPorts.
Teow Standards Track [Page 5]
^L
RFC 2837 FC Fabric Element MIB May 2000
The Accounting group contains statistic data suitable for deriving
accounting and performance information.
The Capability group contains parameters indicating the inherent
capability of the Fabric Element and each FxPort.
3. Object Definitions
FIBRE-CHANNEL-FE-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,
Unsigned32, Counter32, Gauge32, Integer32, mib-2
FROM SNMPv2-SMI
TEXTUAL-CONVENTION, TruthValue, TimeStamp
FROM SNMPv2-TC
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB -- rfc2571
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF;
fcFeMIB MODULE-IDENTITY
LAST-UPDATED "200005180000Z"
ORGANIZATION "IETF IPFC Working Group"
CONTACT-INFO "Kha Sin Teow
Brocade Communications Systems,
1901 Guadalupe Parkway,
San Jose, CA 95131
U.S.A
Tel: +1 408 487 8180
Fax: +1 408 487 8190
Email: khasin@Brocade.COM
WG Mailing list:ipfc@standards.gadzoox.com
To Subscribe: ipfc-request@standards.gadzoox.com
In Body: subscribe"
DESCRIPTION "The MIB module for Fibre Channel Fabric Element."
REVISION "200005180000Z"
DESCRIPTION "Initial revision, published as RFC 2837."
::= { mib-2 75 }
fcFeMIBObjects OBJECT IDENTIFIER ::= { fcFeMIB 1 }
-- Note:
-- fcFeMIBConformance OBJECT IDENTIFIER ::= { fcFeMIB 2 }
-- see at the end of the module
-- Groups under fcFeMIBObjects
Teow Standards Track [Page 6]
^L
RFC 2837 FC Fabric Element MIB May 2000
fcFeConfig OBJECT IDENTIFIER ::= { fcFeMIBObjects 1 }
fcFeStatus OBJECT IDENTIFIER ::= { fcFeMIBObjects 2 }
fcFeError OBJECT IDENTIFIER ::= { fcFeMIBObjects 3 }
fcFeAccounting OBJECT IDENTIFIER ::= { fcFeMIBObjects 4 }
fcFeCapabilities OBJECT IDENTIFIER ::= { fcFeMIBObjects 5 }
-- Textual Conventions
MilliSeconds ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Represents time unit value in milliseconds."
SYNTAX Unsigned32
MicroSeconds ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Represents time unit value in microseconds."
SYNTAX Unsigned32
FcNameId ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Represents the Worldwide Name associated with
a Fibre Channel (FC) entity."
SYNTAX OCTET STRING (SIZE (8))
FcAddressId ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Represents Fibre Channel Address ID, a 24-bit
value unique within the address space of a Fabric."
SYNTAX OCTET STRING (SIZE (3))
FcRxDataFieldSize ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Represents the receive data field size of an
NxPort or FxPort."
SYNTAX Integer32 (128..2112)
FcBbCredit ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Represents the buffer-to-buffer credit of an
NxPort or FxPort."
SYNTAX Integer32 (0..32767)
FcphVersion ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Represents the version of FC-PH supported by an
NxPort or FxPort."
SYNTAX Integer32 (0..255)
FcStackedConnMode ::= TEXTUAL-CONVENTION
Teow Standards Track [Page 7]
^L
RFC 2837 FC Fabric Element MIB May 2000
STATUS current
DESCRIPTION "Represents an enumerated value used to indicate
the Class 1 Stacked Connect Mode supported by
an NxPort or FxPort."
SYNTAX INTEGER {
none(1),
transparent(2),
lockedDown(3)
}
FcCosCap ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Represents the class of service capability of an
NxPort or FxPort."
SYNTAX BITS { classF(0), class1(1), class2(2), class3(3),
class4(4), class5(5), class6(6) }
FcFeModuleCapacity ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Represents the maximum number of modules within
a Fabric Element."
SYNTAX Unsigned32
FcFeFxPortCapacity ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Represents the maximum number of FxPorts within
a module."
SYNTAX Unsigned32
FcFeModuleIndex ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Represents the module index within a conceptual table."
SYNTAX Unsigned32
FcFeFxPortIndex ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Represents the FxPort index within a conceptual table."
SYNTAX Unsigned32
FcFeNxPortIndex ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Represents the NxPort index within a conceptual table."
SYNTAX Integer32 (1..126)
FcBbCreditModel ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Represents the BB_Credit model of an FxPort."
SYNTAX INTEGER { regular(1), alternate (2) }
Teow Standards Track [Page 8]
^L
RFC 2837 FC Fabric Element MIB May 2000
-- The Configuration group
-- This group consists of scalar objects and tables.
-- It contains the configuration and service parameters
-- of the Fabric Element and the FxPorts.
-- The group represents a set of parameters associated with
-- the Fabric Element or an FxPort to support its NxPorts.
fcFeFabricName OBJECT-TYPE
SYNTAX FcNameId
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Name_Identifier of the Fabric to which this Fabric
Element belongs."
::= { fcFeConfig 1 }
fcFeElementName OBJECT-TYPE
SYNTAX FcNameId
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Name_Identifier of the Fabric Element."
::= { fcFeConfig 2 }
fcFeModuleCapacity OBJECT-TYPE
SYNTAX FcFeModuleCapacity
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of modules in the Fabric Element,
regardless of their current state."
::= { fcFeConfig 3 }
-- The Module Table.
-- This table contains one entry for each module,
-- information of the modules.
fcFeModuleTable OBJECT-TYPE
SYNTAX SEQUENCE OF FcFeModuleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains, one entry for each module in the
Fabric Element, information of the modules."
::= { fcFeConfig 4 }
fcFeModuleEntry OBJECT-TYPE
Teow Standards Track [Page 9]
^L
RFC 2837 FC Fabric Element MIB May 2000
SYNTAX FcFeModuleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing the configuration parameters of a
module."
INDEX { fcFeModuleIndex }
::= { fcFeModuleTable 1 }
FcFeModuleEntry ::=
SEQUENCE {
fcFeModuleIndex
FcFeModuleIndex,
fcFeModuleDescr
SnmpAdminString,
fcFeModuleObjectID
OBJECT IDENTIFIER,
fcFeModuleOperStatus
INTEGER,
fcFeModuleLastChange
TimeStamp,
fcFeModuleFxPortCapacity
FcFeFxPortCapacity,
fcFeModuleName
FcNameId
}
fcFeModuleIndex OBJECT-TYPE
SYNTAX FcFeModuleIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object identifies the module within the Fabric Element
for which this entry contains information. This value is
never greater than fcFeModuleCapacity."
::= { fcFeModuleEntry 1 }
fcFeModuleDescr OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A textual description of the module. This value should
include the full name and version identification of the
module."
::= { fcFeModuleEntry 2 }
Teow Standards Track [Page 10]
^L
RFC 2837 FC Fabric Element MIB May 2000
fcFeModuleObjectID OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The vendor's authoritative identification of the module.
This value may be allocated within the SMI enterprises
subtree (1.3.6.1.4.1) and provides a straight-forward and
unambiguous means for determining what kind of module is
being managed.
For example, this object could take the value
1.3.6.1.4.1.99649.3.9 if vendor 'Neufe Inc.' was assigned
the subtree 1.3.6.1.4.1.99649, and had assigned the
identifier 1.3.6.1.4.1.99649.3.9 to its 'FeFiFo-16
PlugInCard.'"
::= { fcFeModuleEntry 3 }
fcFeModuleOperStatus OBJECT-TYPE
SYNTAX INTEGER {
online (1), -- functional
offline (2), -- not available
testing (3), -- under testing
faulty (4) -- defective
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the operational status of the module:
online(1) the module is functioning properly;
offline(2) the module is not available;
testing(3) the module is under testing; and
faulty(4) the module is defective in some way."
::= { fcFeModuleEntry 4 }
fcFeModuleLastChange OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the value of sysUpTime when the module
entered its current operational status. A value of zero
indicates that the operational status of the module has not
changed since the agent last restarted."
::= { fcFeModuleEntry 5 }
fcFeModuleFxPortCapacity OBJECT-TYPE
SYNTAX FcFeFxPortCapacity
Teow Standards Track [Page 11]
^L
RFC 2837 FC Fabric Element MIB May 2000
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of FxPort that can be contained within the
module. Within each module, the ports are uniquely numbered
in the range from 1 to fcFeModuleFxPortCapacity inclusive.
However, the numbers are not required to be contiguous."
::= { fcFeModuleEntry 6 }
fcFeModuleName OBJECT-TYPE
SYNTAX FcNameId
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Name_Identifier of the module."
::= { fcFeModuleEntry 7 }
-- the FxPort Configuration Table.
-- This table contains, one entry for each FxPort,
-- configuration parameters of the ports.
fcFxPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF FcFxPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains, one entry for each FxPort in the
Fabric Element, configuration and service parameters of the
FxPorts."
::= { fcFeConfig 5 }
fcFxPortEntry OBJECT-TYPE
SYNTAX FcFxPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing the configuration and service parameters
of a FxPort."
INDEX { fcFeModuleIndex, fcFxPortIndex }
::= { fcFxPortTable 1 }
FcFxPortEntry ::=
SEQUENCE {
fcFxPortIndex
FcFeFxPortIndex,
fcFxPortName
FcNameId,
Teow Standards Track [Page 12]
^L
RFC 2837 FC Fabric Element MIB May 2000
-- FxPort common service parameters
fcFxPortFcphVersionHigh
FcphVersion,
fcFxPortFcphVersionLow
FcphVersion,
fcFxPortBbCredit
FcBbCredit,
fcFxPortRxBufSize
FcRxDataFieldSize,
fcFxPortRatov
MilliSeconds,
fcFxPortEdtov
MilliSeconds,
-- FxPort class service parameters
fcFxPortCosSupported
FcCosCap,
fcFxPortIntermixSupported
TruthValue,
fcFxPortStackedConnMode
FcStackedConnMode,
fcFxPortClass2SeqDeliv
TruthValue,
fcFxPortClass3SeqDeliv
TruthValue,
-- other configuration parameters
fcFxPortHoldTime
MicroSeconds
}
fcFxPortIndex OBJECT-TYPE
SYNTAX FcFeFxPortIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object identifies the FxPort within the module. This
number ranges from 1 to the value of fcFeModulePortCapacity
for the associated module. The value remains constant for
the identified FxPort until the module is re-initialized."
::= { fcFxPortEntry 1 }
fcFxPortName OBJECT-TYPE
SYNTAX FcNameId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The World_wide Name of this FxPort. Each FxPort has a
unique Port World_wide Name within the Fabric."
::= { fcFxPortEntry 2 }
Teow Standards Track [Page 13]
^L
RFC 2837 FC Fabric Element MIB May 2000
-- FxPort common service parameters
fcFxPortFcphVersionHigh OBJECT-TYPE
SYNTAX FcphVersion
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The highest or most recent version of FC-PH that the FxPort
is configured to support."
::= { fcFxPortEntry 3 }
fcFxPortFcphVersionLow OBJECT-TYPE
SYNTAX FcphVersion
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The lowest or earliest version of FC-PH that the FxPort is
configured to support."
::= { fcFxPortEntry 4 }
fcFxPortBbCredit OBJECT-TYPE
SYNTAX FcBbCredit
UNITS "buffers"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of receive buffers available for holding
Class 1 connect-request, Class 2 or 3 frames from the
attached NxPort. It is for buffer-to-buffer flow control
in the direction from the attached NxPort (if applicable)
to FxPort."
::= { fcFxPortEntry 5 }
fcFxPortRxBufSize OBJECT-TYPE
SYNTAX FcRxDataFieldSize
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The largest Data_Field Size (in octets) for an FT_1 frame
that can be received by the FxPort."
::= { fcFxPortEntry 6 }
fcFxPortRatov OBJECT-TYPE
SYNTAX MilliSeconds
UNITS "milliseconds"
MAX-ACCESS read-only
STATUS current
Teow Standards Track [Page 14]
^L
RFC 2837 FC Fabric Element MIB May 2000
DESCRIPTION
"The Resource_Allocation_Timeout Value configured for the
FxPort. This is used as the timeout value for determining
when to reuse an NxPort resource such as a
Recovery_Qualifier. It represents E_D_TOV (see next
object) plus twice the maximum time that a frame may be
delayed within the Fabric and still be delivered."
::= { fcFxPortEntry 7 }
fcFxPortEdtov OBJECT-TYPE
SYNTAX MilliSeconds
UNITS "milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The E_D_TOV value configured for the FxPort. The
Error_Detect_Timeout Value is used as the timeout value for
detecting an error condition."
::= { fcFxPortEntry 8 }
-- FxPort class service parameters
fcFxPortCosSupported OBJECT-TYPE
SYNTAX FcCosCap
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A value indicating the set of Classes of Service supported
by the FxPort."
::= { fcFxPortEntry 9 }
fcFxPortIntermixSupported OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A flag indicating whether or not the FxPort supports an
Intermixed Dedicated Connection."
::= { fcFxPortEntry 10 }
fcFxPortStackedConnMode OBJECT-TYPE
SYNTAX FcStackedConnMode
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A value indicating the mode of Stacked Connect supported by
the FxPort."
Teow Standards Track [Page 15]
^L
RFC 2837 FC Fabric Element MIB May 2000
::= { fcFxPortEntry 11 }
fcFxPortClass2SeqDeliv OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A flag indicating whether or not Class 2 Sequential
Delivery is supported by the FxPort."
::= { fcFxPortEntry 12 }
fcFxPortClass3SeqDeliv OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A flag indicating whether or not Class 3 Sequential
Delivery is supported by the FxPort."
::= { fcFxPortEntry 13 }
-- other FxPort parameters
fcFxPortHoldTime OBJECT-TYPE
SYNTAX MicroSeconds
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum time (in microseconds) that the FxPort shall
hold a frame before discarding the frame if it is unable to
deliver the frame. The value 0 means that the FxPort does
not support this parameter."
::= { fcFxPortEntry 14 }
-- the Status group
-- This group consists of tables that contains operational
-- status and established service parameters for the Fabric
-- Element and the attached NxPorts.
-- The FxPort Status table
-- This table contains, one entry for each FxPort,
-- the operational status and parameters of the FxPorts.
fcFxPortStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF FcFxPortStatusEntry
Teow Standards Track [Page 16]
^L
RFC 2837 FC Fabric Element MIB May 2000
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains, one entry for each FxPort in the
Fabric Element, operational status and parameters of the
FxPorts."
::= { fcFeStatus 1 }
fcFxPortStatusEntry OBJECT-TYPE
SYNTAX FcFxPortStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing operational status and parameters of a
FxPort."
AUGMENTS { fcFxPortEntry }
::= { fcFxPortStatusTable 1 }
FcFxPortStatusEntry ::=
SEQUENCE {
fcFxPortID
FcAddressId,
fcFxPortBbCreditAvailable
Gauge32,
fcFxPortOperMode
INTEGER,
fcFxPortAdminMode
INTEGER
}
fcFxPortID OBJECT-TYPE
SYNTAX FcAddressId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The address identifier by which this FxPort is identified
within the Fabric. The FxPort may assign its address
identifier to its attached NxPort(s) during Fabric Login."
::= { fcFxPortStatusEntry 1 }
fcFxPortBbCreditAvailable OBJECT-TYPE
SYNTAX Gauge32
UNITS "buffers"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of buffers currently available for receiving
Teow Standards Track [Page 17]
^L
RFC 2837 FC Fabric Element MIB May 2000
frames from the attached port in the buffer-to-buffer flow
control. The value should be less than or equal to
fcFxPortBbCredit."
::= { fcFxPortStatusEntry 2 }
fcFxPortOperMode OBJECT-TYPE
SYNTAX INTEGER { unknown(1), fPort(2), flPort(3) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current operational mode of the FxPort."
::= { fcFxPortStatusEntry 3 }
fcFxPortAdminMode OBJECT-TYPE
SYNTAX INTEGER { fPort(2), flPort(3) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The desired operational mode of the FxPort."
::= { fcFxPortStatusEntry 4 }
-- the FxPort Physical Level table
-- This table contains, one entry for each FxPort in the
-- Fabric Element, the physical level status and parameters
-- of the FxPorts.
fcFxPortPhysTable OBJECT-TYPE
SYNTAX SEQUENCE OF FcFxPortPhysEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains, one entry for each FxPort in the
Fabric Element, physical level status and parameters of the
FxPorts."
::= { fcFeStatus 2 }
fcFxPortPhysEntry OBJECT-TYPE
SYNTAX FcFxPortPhysEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing physical level status and parameters of
a FxPort."
AUGMENTS { fcFxPortEntry }
::= { fcFxPortPhysTable 1 }
FcFxPortPhysEntry ::=
Teow Standards Track [Page 18]
^L
RFC 2837 FC Fabric Element MIB May 2000
SEQUENCE {
fcFxPortPhysAdminStatus
INTEGER,
fcFxPortPhysOperStatus
INTEGER,
fcFxPortPhysLastChange
TimeStamp,
fcFxPortPhysRttov
MilliSeconds
}
fcFxPortPhysAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
online (1), -- place port online
offline (2), -- take port offline
testing (3) -- initiate test procedures
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The desired state of the FxPort. A management station may
place the FxPort in a desired state by setting this object
accordingly. The testing(3) state indicates that no
operational frames can be passed. When a Fabric Element
initializes, all FxPorts start with fcFxPortPhysAdminStatus
in the offline(2) state. As the result of either explicit
management action or per configuration information
accessible by the Fabric Element, fcFxPortPhysAdminStatus
is then changed to either the online(1) or testing(3)
states, or remains in the offline state."
::= { fcFxPortPhysEntry 1 }
fcFxPortPhysOperStatus OBJECT-TYPE
SYNTAX INTEGER {
online (1), -- Login may proceed
offline (2), -- Login cannot proceed
testing (3), -- port is under test
linkFailure (4) -- failure after online/testing
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current operational status of the FxPort. The
testing(3) indicates that no operational frames can be
passed. If fcFxPortPhysAdminStatus is offline(2) then
fcFxPortPhysOperStatus should be offline(2). If
fcFxPortPhysAdminStatus is changed to online(1) then
fcFxPortPhysOperStatus should change to online(1) if the
Teow Standards Track [Page 19]
^L
RFC 2837 FC Fabric Element MIB May 2000
FxPort is ready to accept Fabric Login request from the
attached NxPort; it should proceed and remain in the link-
failure(4) state if and only if there is a fault that
prevents it from going to the online(1) state."
::= { fcFxPortPhysEntry 2 }
fcFxPortPhysLastChange OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime at the time the FxPort entered its
current operational status. A value of zero indicates that
the FxPort's operational status has not changed since the
agent last restarted."
::= { fcFxPortPhysEntry 3 }
fcFxPortPhysRttov OBJECT-TYPE
SYNTAX MilliSeconds
UNITS "milliseconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Receiver_Transmitter_Timeout value of the FxPort. This
is used by the receiver logic to detect Loss of
Synchronization."
::= { fcFxPortPhysEntry 4 }
-- The FxPort Fabric Login table
--
-- This table contains, one entry for each FxPort in the
-- Fabric Element, the Service Parameters that have been
-- established from the most recent Fabric Login,
-- implicit or explicit.
fcFxLoginTable OBJECT-TYPE
SYNTAX SEQUENCE OF FcFxLoginEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains, one entry for each NxPort attached
to a particular FxPort in the Fabric Element, services
parameters established from the most recent Fabric Login,
explicit or implicit. Note that an FxPort may have one or
more NxPort attached to it."
::= { fcFeStatus 3 }
Teow Standards Track [Page 20]
^L
RFC 2837 FC Fabric Element MIB May 2000
fcFxLoginEntry OBJECT-TYPE
SYNTAX FcFxLoginEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing service parameters established from a
successful Fabric Login."
INDEX { fcFeModuleIndex, fcFxPortIndex, fcFxPortNxLoginIndex }
::= { fcFxLoginTable 1 }
FcFxLoginEntry ::=
SEQUENCE {
fcFxPortNxLoginIndex
FcFeNxPortIndex,
fcFxPortFcphVersionAgreed
FcphVersion,
fcFxPortNxPortBbCredit
FcBbCredit,
fcFxPortNxPortRxDataFieldSize
FcRxDataFieldSize,
fcFxPortCosSuppAgreed
FcCosCap,
fcFxPortIntermixSuppAgreed
TruthValue,
fcFxPortStackedConnModeAgreed
FcStackedConnMode,
fcFxPortClass2SeqDelivAgreed
TruthValue,
fcFxPortClass3SeqDelivAgreed
TruthValue,
--
fcFxPortNxPortName
FcNameId,
fcFxPortConnectedNxPort
FcAddressId,
fcFxPortBbCreditModel
FcBbCreditModel
}
fcFxPortNxLoginIndex OBJECT-TYPE
SYNTAX FcFeNxPortIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The object identifies the associated NxPort in the
attachment for which the entry contains information."
::= { fcFxLoginEntry 1 }
Teow Standards Track [Page 21]
^L
RFC 2837 FC Fabric Element MIB May 2000
fcFxPortFcphVersionAgreed OBJECT-TYPE
SYNTAX FcphVersion
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The version of FC-PH that the FxPort has agreed to support
from the Fabric Login"
::= { fcFxLoginEntry 2 }
fcFxPortNxPortBbCredit OBJECT-TYPE
SYNTAX FcBbCredit
UNITS "buffers"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of buffers available for holding Class 1
connect-request, Class 2 or Class 3 frames to be
transmitted to the attached NxPort. It is for buffer-to-
buffer flow control in the direction from FxPort to NxPort.
The buffer-to-buffer flow control mechanism is indicated in
the respective fcFxPortBbCreditModel."
::= { fcFxLoginEntry 3 }
fcFxPortNxPortRxDataFieldSize OBJECT-TYPE
SYNTAX FcRxDataFieldSize
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Receive Data Field Size of the attached NxPort. This
object specifies the largest Data Field Size for an FT_1
frame that can be received by the NxPort."
::= { fcFxLoginEntry 4 }
fcFxPortCosSuppAgreed OBJECT-TYPE
SYNTAX FcCosCap
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A variable indicating that the attached NxPort has
requested the FxPort for the support of classes of services
and the FxPort has granted the request."
::= { fcFxLoginEntry 5 }
fcFxPortIntermixSuppAgreed OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
Teow Standards Track [Page 22]
^L
RFC 2837 FC Fabric Element MIB May 2000
DESCRIPTION
"A variable indicating that the attached NxPort has
requested the FxPort for the support of Intermix and the
FxPort has granted the request. This flag is only valid if
Class 1 service is supported."
::= { fcFxLoginEntry 6 }
fcFxPortStackedConnModeAgreed OBJECT-TYPE
SYNTAX FcStackedConnMode
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A variable indicating whether the FxPort has agreed to
support stacked connect from the Fabric Login. This is only
meaningful if Class 1 service has been agreed."
::= { fcFxLoginEntry 7 }
fcFxPortClass2SeqDelivAgreed OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A variable indicating whether the FxPort has agreed to
support Class 2 sequential delivery from the Fabric Login.
This is only meaningful if Class 2 service has been
agreed."
::= { fcFxLoginEntry 8 }
fcFxPortClass3SeqDelivAgreed OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A flag indicating whether the FxPort has agreed to support
Class 3 sequential delivery from the Fabric Login. This is
only meaningful if Class 3 service has been agreed."
::= { fcFxLoginEntry 9 }
fcFxPortNxPortName OBJECT-TYPE
SYNTAX FcNameId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The port name of the attached NxPort."
::= { fcFxLoginEntry 10 }
fcFxPortConnectedNxPort OBJECT-TYPE
SYNTAX FcAddressId
Teow Standards Track [Page 23]
^L
RFC 2837 FC Fabric Element MIB May 2000
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The address identifier of the destination NxPort with which
this FxPort is currently engaged in a either a Class 1 or
loop connection. If this FxPort is not engaged in a
connection, then the value of this object is '000000'H."
::= { fcFxLoginEntry 11 }
fcFxPortBbCreditModel OBJECT-TYPE
SYNTAX FcBbCreditModel
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object identifies the BB_Credit model used by the
FxPort."
::= { fcFxLoginEntry 12 }
-- the Error group
-- This group consists of tables that contain information about
-- the various types of errors detected. The management station
-- may use the information in this group to determine the
-- quality of the link between the FxPort and its attached NxPort.
-- the FxPort Error table
-- This table contains, one entry for each FxPort in the Fabric
-- Element, counters recording numbers of errors detected
-- since the management agent re-initialized.
-- The first 6 columnar objects after the port index corresponds
-- to the counters in the Link Error Status Block.
fcFxPortErrorTable OBJECT-TYPE
SYNTAX SEQUENCE OF FcFxPortErrorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains, one entry for each FxPort, counters
that record the numbers of errors detected."
::= { fcFeError 1 }
fcFxPortErrorEntry OBJECT-TYPE
SYNTAX FcFxPortErrorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing error counters of a FxPort."
AUGMENTS { fcFxPortEntry }
Teow Standards Track [Page 24]
^L
RFC 2837 FC Fabric Element MIB May 2000
::= { fcFxPortErrorTable 1 }
FcFxPortErrorEntry ::=
SEQUENCE {
fcFxPortLinkFailures
Counter32,
fcFxPortSyncLosses
Counter32,
fcFxPortSigLosses
Counter32,
fcFxPortPrimSeqProtoErrors
Counter32,
fcFxPortInvalidTxWords
Counter32,
fcFxPortInvalidCrcs
Counter32,
fcFxPortDelimiterErrors
Counter32,
fcFxPortAddressIdErrors
Counter32,
fcFxPortLinkResetIns
Counter32,
fcFxPortLinkResetOuts
Counter32,
fcFxPortOlsIns
Counter32,
fcFxPortOlsOuts
Counter32
}
fcFxPortLinkFailures OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of link failures detected by this FxPort."
::= { fcFxPortErrorEntry 1 }
fcFxPortSyncLosses OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of loss of synchronization detected by the
FxPort."
::= { fcFxPortErrorEntry 2 }
Teow Standards Track [Page 25]
^L
RFC 2837 FC Fabric Element MIB May 2000
fcFxPortSigLosses OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of loss of signal detected by the FxPort."
::= { fcFxPortErrorEntry 3 }
fcFxPortPrimSeqProtoErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of primitive sequence protocol errors detected
by the FxPort."
::= { fcFxPortErrorEntry 4 }
fcFxPortInvalidTxWords OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of invalid transmission word detected by the
FxPort."
::= { fcFxPortErrorEntry 5 }
fcFxPortInvalidCrcs OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of invalid CRC detected by this FxPort."
::= { fcFxPortErrorEntry 6 }
fcFxPortDelimiterErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Delimiter Errors detected by this FxPort."
::= { fcFxPortErrorEntry 7 }
fcFxPortAddressIdErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of address identifier errors detected by this
Teow Standards Track [Page 26]
^L
RFC 2837 FC Fabric Element MIB May 2000
FxPort."
::= { fcFxPortErrorEntry 8 }
fcFxPortLinkResetIns OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Link Reset Protocol received by this FxPort
from the attached NxPort."
::= { fcFxPortErrorEntry 9 }
fcFxPortLinkResetOuts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Link Reset Protocol issued by this FxPort to
the attached NxPort."
::= { fcFxPortErrorEntry 10 }
fcFxPortOlsIns OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Offline Sequence received by this FxPort."
::= { fcFxPortErrorEntry 11 }
fcFxPortOlsOuts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Offline Sequence issued by this FxPort."
::= { fcFxPortErrorEntry 12 }
-- Accounting Groups:
-- (1) Class 1 Accounting Group,
-- (2) Class 2 Accounting Group, and
-- (3) Class 3 Accounting Group.
-- Each group consists of a table that contains accounting
-- information for the FxPorts in the Fabric Element.
-- the Class 1 Accounting table
-- This table contains, one entry for each FxPort in the Fabric
Teow Standards Track [Page 27]
^L
RFC 2837 FC Fabric Element MIB May 2000
-- Element, Counter32s for certain types of events occurred in the
-- the FxPorts since the the management agent has re-initialized.
fcFxPortC1AccountingTable OBJECT-TYPE
SYNTAX SEQUENCE OF FcFxPortC1AccountingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains, one entry for each FxPort in the
Fabric Element, Class 1 accounting information recorded
since the management agent has re-initialized."
::= { fcFeAccounting 1 }
fcFxPortC1AccountingEntry OBJECT-TYPE
SYNTAX FcFxPortC1AccountingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing Class 1 accounting information for each
FxPort."
AUGMENTS { fcFxPortEntry }
::= { fcFxPortC1AccountingTable 1 }
FcFxPortC1AccountingEntry ::=
SEQUENCE {
fcFxPortC1InFrames
Counter32,
fcFxPortC1OutFrames
Counter32,
fcFxPortC1InOctets
Counter32,
fcFxPortC1OutOctets
Counter32,
fcFxPortC1Discards
Counter32,
fcFxPortC1FbsyFrames
Counter32,
fcFxPortC1FrjtFrames
Counter32,
fcFxPortC1InConnections
Counter32,
fcFxPortC1OutConnections
Counter32,
fcFxPortC1ConnTime
MilliSeconds
}
Teow Standards Track [Page 28]
^L
RFC 2837 FC Fabric Element MIB May 2000
fcFxPortC1InFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Class 1 frames (other than Class 1 connect-
request) received by this FxPort from its attached NxPort."
::= { fcFxPortC1AccountingEntry 1 }
fcFxPortC1OutFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Class 1 frames (other than Class 1 connect-
request) delivered through this FxPort to its attached
NxPort."
::= { fcFxPortC1AccountingEntry 2 }
fcFxPortC1InOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Class 1 frame octets, including the frame
delimiters, received by this FxPort from its attached
NxPort."
::= { fcFxPortC1AccountingEntry 3 }
fcFxPortC1OutOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Class 1 frame octets, including the frame
delimiters, delivered through this FxPort its attached
NxPort."
::= { fcFxPortC1AccountingEntry 4 }
fcFxPortC1Discards OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Class 1 frames discarded by this FxPort."
::= { fcFxPortC1AccountingEntry 5 }
fcFxPortC1FbsyFrames OBJECT-TYPE
Teow Standards Track [Page 29]
^L
RFC 2837 FC Fabric Element MIB May 2000
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of F_BSY frames generated by this FxPort against
Class 1 connect-request."
::= { fcFxPortC1AccountingEntry 6 }
fcFxPortC1FrjtFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of F_RJT frames generated by this FxPort against
Class 1 connect-request."
::= { fcFxPortC1AccountingEntry 7 }
fcFxPortC1InConnections OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Class 1 connections successfully established
in which the attached NxPort is the source of the connect-
request."
::= { fcFxPortC1AccountingEntry 8 }
fcFxPortC1OutConnections OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Class 1 connections successfully established
in which the attached NxPort is the destination of the
connect-request."
::= { fcFxPortC1AccountingEntry 9 }
fcFxPortC1ConnTime OBJECT-TYPE
SYNTAX MilliSeconds
UNITS "milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The cumulative time that this FxPort has been engaged in
Class 1 connection. The amount of time is counted from
after a connect-request has been accepted until the
connection is disengaged, either by an EOFdt or Link
Reset."
Teow Standards Track [Page 30]
^L
RFC 2837 FC Fabric Element MIB May 2000
::= { fcFxPortC1AccountingEntry 10 }
-- the Class 2 Accounting table
-- This table contains, one entry for each FxPort in the Fabric
-- Element, Counter32s for certain types of events occurred in the
-- the FxPorts since the the management agent has re-initialized.
fcFxPortC2AccountingTable OBJECT-TYPE
SYNTAX SEQUENCE OF FcFxPortC2AccountingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains, one entry for each FxPort in the
Fabric Element, Class 2 accounting information recorded
since the management agent has re-initialized."
::= { fcFeAccounting 2 }
fcFxPortC2AccountingEntry OBJECT-TYPE
SYNTAX FcFxPortC2AccountingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing Class 2 accounting information for each
FxPort."
AUGMENTS { fcFxPortEntry }
::= { fcFxPortC2AccountingTable 1 }
FcFxPortC2AccountingEntry ::=
SEQUENCE {
fcFxPortC2InFrames
Counter32,
fcFxPortC2OutFrames
Counter32,
fcFxPortC2InOctets
Counter32,
fcFxPortC2OutOctets
Counter32,
fcFxPortC2Discards
Counter32,
fcFxPortC2FbsyFrames
Counter32,
fcFxPortC2FrjtFrames
Counter32
}
fcFxPortC2InFrames OBJECT-TYPE
Teow Standards Track [Page 31]
^L
RFC 2837 FC Fabric Element MIB May 2000
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Class 2 frames received by this FxPort from
its attached NxPort."
::= { fcFxPortC2AccountingEntry 1 }
fcFxPortC2OutFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Class 2 frames delivered through this FxPort
to its attached NxPort."
::= { fcFxPortC2AccountingEntry 2 }
fcFxPortC2InOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Class 2 frame octets, including the frame
delimiters, received by this FxPort from its attached
NxPort."
::= { fcFxPortC2AccountingEntry 3 }
fcFxPortC2OutOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Class 2 frame octets, including the frame
delimiters, delivered through this FxPort to its attached
NxPort."
::= { fcFxPortC2AccountingEntry 4 }
fcFxPortC2Discards OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Class 2 frames discarded by this FxPort."
::= { fcFxPortC2AccountingEntry 5 }
fcFxPortC2FbsyFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
Teow Standards Track [Page 32]
^L
RFC 2837 FC Fabric Element MIB May 2000
STATUS current
DESCRIPTION
"The number of F_BSY frames generated by this FxPort against
Class 2 frames."
::= { fcFxPortC2AccountingEntry 6 }
fcFxPortC2FrjtFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of F_RJT frames generated by this FxPort against
Class 2 frames."
::= { fcFxPortC2AccountingEntry 7 }
-- the Class 3 Accounting Group
-- This table contains, one entry for each FxPort in the Fabric
-- Element, Counter32s for certain types of events occurred in the
-- the FxPorts since the management agent has re-initialized.
fcFxPortC3AccountingTable OBJECT-TYPE
SYNTAX SEQUENCE OF FcFxPortC3AccountingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains, one entry for each FxPort in the
Fabric Element, Class 3 accounting information recorded
since the management agent has re-initialized."
::= { fcFeAccounting 3 }
fcFxPortC3AccountingEntry OBJECT-TYPE
SYNTAX FcFxPortC3AccountingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing Class 3 accounting information for each
FxPort."
AUGMENTS { fcFxPortEntry }
::= { fcFxPortC3AccountingTable 1 }
FcFxPortC3AccountingEntry ::=
SEQUENCE {
fcFxPortC3InFrames
Counter32,
fcFxPortC3OutFrames
Counter32,
fcFxPortC3InOctets
Teow Standards Track [Page 33]
^L
RFC 2837 FC Fabric Element MIB May 2000
Counter32,
fcFxPortC3OutOctets
Counter32,
fcFxPortC3Discards
Counter32
}
fcFxPortC3InFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Class 3 frames received by this FxPort from
its attached NxPort."
::= { fcFxPortC3AccountingEntry 1 }
fcFxPortC3OutFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Class 3 frames delivered through this FxPort
to its attached NxPort."
::= { fcFxPortC3AccountingEntry 2 }
fcFxPortC3InOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Class 3 frame octets, including the frame
delimiters, received by this FxPort from its attached
NxPort."
::= { fcFxPortC3AccountingEntry 3 }
fcFxPortC3OutOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Class 3 frame octets, including the frame
delimiters, delivered through this FxPort to its attached
NxPort."
::= { fcFxPortC3AccountingEntry 4 }
fcFxPortC3Discards OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
Teow Standards Track [Page 34]
^L
RFC 2837 FC Fabric Element MIB May 2000
STATUS current
DESCRIPTION
"The number of Class 3 frames discarded by this FxPort."
::= { fcFxPortC3AccountingEntry 5 }
-- The Capability Group - consists of a table describing
-- information about what each FxPort is inherently capable
-- of operating or supporting.
-- A capability may be used, as expressed in its respective
-- object value in the Configuration group.
fcFxPortCapTable OBJECT-TYPE
SYNTAX SEQUENCE OF FcFxPortCapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains, one entry for each FxPort, the
capabilities of the port within the Fabric Element."
::= { fcFeCapabilities 1 }
fcFxPortCapEntry OBJECT-TYPE
SYNTAX FcFxPortCapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing the Cap of a FxPort."
AUGMENTS { fcFxPortEntry }
::= { fcFxPortCapTable 1 }
FcFxPortCapEntry ::=
SEQUENCE {
fcFxPortCapFcphVersionHigh
FcphVersion,
fcFxPortCapFcphVersionLow
FcphVersion,
fcFxPortCapBbCreditMax
FcBbCredit,
fcFxPortCapBbCreditMin
FcBbCredit,
fcFxPortCapRxDataFieldSizeMax
FcRxDataFieldSize,
fcFxPortCapRxDataFieldSizeMin
FcRxDataFieldSize,
fcFxPortCapCos
FcCosCap,
fcFxPortCapIntermix
Teow Standards Track [Page 35]
^L
RFC 2837 FC Fabric Element MIB May 2000
TruthValue,
fcFxPortCapStackedConnMode
FcStackedConnMode,
fcFxPortCapClass2SeqDeliv
TruthValue,
fcFxPortCapClass3SeqDeliv
TruthValue,
fcFxPortCapHoldTimeMax
MicroSeconds,
fcFxPortCapHoldTimeMin
MicroSeconds
}
fcFxPortCapFcphVersionHigh OBJECT-TYPE
SYNTAX FcphVersion
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The highest or most recent version of FC-PH that the FxPort
is capable of supporting."
::= { fcFxPortCapEntry 1 }
fcFxPortCapFcphVersionLow OBJECT-TYPE
SYNTAX FcphVersion
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The lowest or earliest version of FC-PH that the FxPort is
capable of supporting."
::= { fcFxPortCapEntry 2 }
fcFxPortCapBbCreditMax OBJECT-TYPE
SYNTAX FcBbCredit
UNITS "buffers"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of receive buffers available for holding
Class 1 connect-request, Class 2 or Class 3 frames from the
attached NxPort."
::= { fcFxPortCapEntry 3 }
fcFxPortCapBbCreditMin OBJECT-TYPE
SYNTAX FcBbCredit
UNITS "buffers"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
Teow Standards Track [Page 36]
^L
RFC 2837 FC Fabric Element MIB May 2000
"The minimum number of receive buffers available for holding
Class 1 connect-request, Class 2 or Class 3 frames from the
attached NxPort."
::= { fcFxPortCapEntry 4 }
fcFxPortCapRxDataFieldSizeMax OBJECT-TYPE
SYNTAX FcRxDataFieldSize
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum size in bytes of the Data Field in a frame that
the FxPort is capable of receiving from its attached
NxPort."
::= { fcFxPortCapEntry 5 }
fcFxPortCapRxDataFieldSizeMin OBJECT-TYPE
SYNTAX FcRxDataFieldSize
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The minimum size in bytes of the Data Field in a frame that
the FxPort is capable of receiving from its attached
NxPort."
::= { fcFxPortCapEntry 6 }
fcFxPortCapCos OBJECT-TYPE
SYNTAX FcCosCap
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A value indicating the set of Classes of Service that the
FxPort is capable of supporting."
::= { fcFxPortCapEntry 7 }
fcFxPortCapIntermix OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A flag indicating whether or not the FxPort is capable of
supporting the intermixing of Class 2 and Class 3 frames
during a Class 1 connection. This flag is only valid if the
port is capable of supporting Class 1 service."
::= { fcFxPortCapEntry 8 }
fcFxPortCapStackedConnMode OBJECT-TYPE
Teow Standards Track [Page 37]
^L
RFC 2837 FC Fabric Element MIB May 2000
SYNTAX FcStackedConnMode
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A value indicating the mode of Stacked Connect request that
the FxPort is capable of supporting."
::= { fcFxPortCapEntry 9 }
fcFxPortCapClass2SeqDeliv OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A flag indicating whether or not the FxPort is capable of
supporting Class 2 Sequential Delivery."
::= { fcFxPortCapEntry 10 }
fcFxPortCapClass3SeqDeliv OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A flag indicating whether or not the FxPort is capable of
supporting Class 3 Sequential Delivery."
::= { fcFxPortCapEntry 11 }
fcFxPortCapHoldTimeMax OBJECT-TYPE
SYNTAX MicroSeconds
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum holding time (in microseconds) that the FxPort
is capable of supporting."
::= { fcFxPortCapEntry 12 }
fcFxPortCapHoldTimeMin OBJECT-TYPE
SYNTAX MicroSeconds
UNITS "microseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The minimum holding time (in microseconds) that the FxPort
is capable of supporting."
::= { fcFxPortCapEntry 13 }
-- conformance information
Teow Standards Track [Page 38]
^L
RFC 2837 FC Fabric Element MIB May 2000
fcFeMIBConformance OBJECT IDENTIFIER ::= { fcFeMIB 2 }
fcFeMIBCompliances OBJECT IDENTIFIER ::= { fcFeMIBConformance 1 }
fcFeMIBGroups OBJECT IDENTIFIER ::= { fcFeMIBConformance 2 }
-- compliance statements
fcFeMIBMinimumCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The minimum compliance statement for SNMP entities
which implement the FIBRE-CHANNEL-FE-MIB."
MODULE -- this module
MANDATORY-GROUPS { fcFeConfigGroup, fcFeStatusGroup,
fcFeErrorGroup }
OBJECT fcFeFabricName
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT fcFeElementName
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT fcFeModuleName
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT fcFxPortAdminMode
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT fcFxPortPhysAdminStatus
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT fcFxPortPhysRttov
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT fcFxPortBbCreditModel
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
Teow Standards Track [Page 39]
^L
RFC 2837 FC Fabric Element MIB May 2000
::= { fcFeMIBCompliances 1 }
fcFeMIBFullCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The full compliance statement for SNMP entities
which implement the FIBRE-CHANNEL-FE-MIB."
MODULE -- this module
MANDATORY-GROUPS { fcFeConfigGroup, fcFeStatusGroup,
fcFeErrorGroup, fcFeCapabilitiesGroup }
GROUP fcFeClass1AccountingGroup
DESCRIPTION
"This group is mandatory for all fibre channel fabric
elements which support class 1 frames."
GROUP fcFeClass2AccountingGroup
DESCRIPTION
"This group is mandatory for all fibre channel fabric
elements which support class 2 frames."
GROUP fcFeClass3AccountingGroup
DESCRIPTION
"This group is mandatory for all fibre channel fabric
elements which support class 3 frames."
OBJECT fcFeFabricName
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT fcFeElementName
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT fcFeModuleName
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT fcFxPortAdminMode
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT fcFxPortPhysAdminStatus
MIN-ACCESS read-only
Teow Standards Track [Page 40]
^L
RFC 2837 FC Fabric Element MIB May 2000
DESCRIPTION
"Write access is not required."
OBJECT fcFxPortPhysRttov
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT fcFxPortBbCreditModel
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
::= { fcFeMIBCompliances 2 }
-- units of conformance
fcFeConfigGroup OBJECT-GROUP
OBJECTS { fcFeFabricName, fcFeElementName, fcFeModuleCapacity,
fcFeModuleDescr, fcFeModuleObjectID,
fcFeModuleOperStatus, fcFeModuleLastChange,
fcFeModuleFxPortCapacity, fcFeModuleName,
fcFxPortName, fcFxPortFcphVersionHigh,
fcFxPortFcphVersionLow, fcFxPortBbCredit,
fcFxPortRxBufSize, fcFxPortRatov, fcFxPortEdtov,
fcFxPortCosSupported, fcFxPortIntermixSupported,
fcFxPortStackedConnMode, fcFxPortClass2SeqDeliv,
fcFxPortClass3SeqDeliv, fcFxPortHoldTime }
STATUS current
DESCRIPTION
"A collection of objects providing the configuration and service
parameters of the Fabric Element, the modules, and FxPorts."
::= { fcFeMIBGroups 1 }
fcFeStatusGroup OBJECT-GROUP
OBJECTS { fcFxPortID, fcFxPortBbCreditAvailable,
fcFxPortOperMode, fcFxPortAdminMode,
fcFxPortPhysAdminStatus, fcFxPortPhysOperStatus,
fcFxPortPhysLastChange, fcFxPortPhysRttov,
fcFxPortFcphVersionAgreed, fcFxPortNxPortBbCredit,
fcFxPortNxPortRxDataFieldSize, fcFxPortCosSuppAgreed,
fcFxPortIntermixSuppAgreed,
fcFxPortStackedConnModeAgreed,
fcFxPortClass2SeqDelivAgreed,
fcFxPortClass3SeqDelivAgreed,
fcFxPortNxPortName, fcFxPortConnectedNxPort,
fcFxPortBbCreditModel }
STATUS current
DESCRIPTION
Teow Standards Track [Page 41]
^L
RFC 2837 FC Fabric Element MIB May 2000
"A collection of objects providing the operational status and
established service parameters for the Fabric Element and the
attached NxPorts."
::= { fcFeMIBGroups 2 }
fcFeErrorGroup OBJECT-GROUP
OBJECTS { fcFxPortLinkFailures, fcFxPortSyncLosses,
fcFxPortSigLosses, fcFxPortPrimSeqProtoErrors,
fcFxPortInvalidTxWords, fcFxPortInvalidCrcs,
fcFxPortDelimiterErrors, fcFxPortAddressIdErrors,
fcFxPortLinkResetIns, fcFxPortLinkResetOuts,
fcFxPortOlsIns, fcFxPortOlsOuts }
STATUS current
DESCRIPTION
"A collection of objects providing various error
statistics detected by the FxPorts."
::= { fcFeMIBGroups 3 }
fcFeClass1AccountingGroup OBJECT-GROUP
OBJECTS { fcFxPortC1InFrames, fcFxPortC1OutFrames,
fcFxPortC1InOctets, fcFxPortC1OutOctets,
fcFxPortC1Discards, fcFxPortC1FbsyFrames,
fcFxPortC1FrjtFrames, fcFxPortC1InConnections,
fcFxPortC1OutConnections, fcFxPortC1ConnTime
}
STATUS current
DESCRIPTION
"A collection of objects providing various class 1
performance statistics detected by the FxPorts."
::= { fcFeMIBGroups 4 }
fcFeClass2AccountingGroup OBJECT-GROUP
OBJECTS { fcFxPortC2InFrames, fcFxPortC2OutFrames,
fcFxPortC2InOctets, fcFxPortC2OutOctets,
fcFxPortC2Discards, fcFxPortC2FbsyFrames,
fcFxPortC2FrjtFrames
}
STATUS current
DESCRIPTION
"A collection of objects providing various class 2
performance statistics detected by the FxPorts."
::= { fcFeMIBGroups 5 }
fcFeClass3AccountingGroup OBJECT-GROUP
OBJECTS { fcFxPortC3InFrames, fcFxPortC3OutFrames,
fcFxPortC3InOctets, fcFxPortC3OutOctets,
fcFxPortC3Discards
}
Teow Standards Track [Page 42]
^L
RFC 2837 FC Fabric Element MIB May 2000
STATUS current
DESCRIPTION
"A collection of objects providing various class 3
performance statistics detected by the FxPorts."
::= { fcFeMIBGroups 6 }
fcFeCapabilitiesGroup OBJECT-GROUP
OBJECTS { fcFxPortCapFcphVersionHigh, fcFxPortCapFcphVersionLow,
fcFxPortCapBbCreditMax, fcFxPortCapBbCreditMin,
fcFxPortCapRxDataFieldSizeMax,
fcFxPortCapRxDataFieldSizeMin,
fcFxPortCapCos, fcFxPortCapIntermix,
fcFxPortCapStackedConnMode, fcFxPortCapClass2SeqDeliv,
fcFxPortCapClass3SeqDeliv, fcFxPortCapHoldTimeMax,
fcFxPortCapHoldTimeMin
}
STATUS current
DESCRIPTION
"A collection of objects providing the inherent
capability of each FxPort within the Fabric Element."
::= { fcFeMIBGroups 7 }
END
-- End of Object Definitions
4. Security Considerations
There are a number of management objects defined in this MIB that
have a MAX-ACCESS clause of read-write. Such objects may be
considered sensitive or vulnerable in some network environments. The
support for SET operations in a non-secure environment without proper
protection can have a negative effect on network operations.
SNMPv1 by itself is not a secure environment. Even if the network
itself is secure (for example by using IPSec), even then, there is no
control as to who on the secure network is allowed to access and
GET/SET (read/change/create/delete) the objects in this MIB.
It is recommended that the implementers consider the security
features as provided by the SNMPv3 framework. Specifically, the use
of the User-based Security Model RFC 2574 [12] and the View-based
Access Control Model RFC 2575 [15] is recommended.
Teow Standards Track [Page 43]
^L
RFC 2837 FC Fabric Element MIB May 2000
It is then a customer/user responsibility to ensure that the SNMP
entity giving access to an instance of this MIB, is properly
configured to give access to the objects only to those principals
(users) that have legitimate rights to indeed GET or SET
(change/delete) them.
5. Intellectual Property
The IETF takes no position regarding the validity or scope of any
intellectual property or other rights that might be claimed to
pertain to the implementation or use of the technology described in
this document or the extent to which any license under such rights
might or might not be available; neither does it represent that it
has made any effort to identify any such rights. Information on the
IETF's procedures with respect to rights in standards-track and
standards-related documentation can be found in BCP-11. Copies of
claims of rights made available for publication and any assurances of
licenses to be made available, or the result of an attempt made to
obtain a general license or permission for the use of such
proprietary rights by implementors or users of this specification can
be obtained from the IETF Secretariat.
The IETF invites any interested party to bring to its attention any
copyrights, patents or patent applications, or other proprietary
rights which may cover technology that may be required to practice
this standard. Please address the information to the IETF Executive
Director.
6. Acknowledgements
The editors would like to thank the following individuals for their
assistance and constructive comments:
Juergen Schoenwaelder, Technical University Braunschweig
Vincent Guan, Brocade Gavin Bowlby, Gadzoox
Bent Stoevhase, Brocade Jeff Meyer, HP
John Y. Chu, IBM
Yakov Rekhter, Cisco Martin Sachs, IBM
Dan Eisenhauer, IBM Beth Vanderbeck, IBM
Carl Zeitler, Compaq Paul Griffiths, IBM
KC Chennappan, IBM Jessie Haug, IBM
Bob Cornelius, ANCOR Lansing Sloan, LLNL
Paul Rupert, LLNL Rich Taborak, NSerial
Steve Wilson, Brocade Jerry Rouse, IBM
Dal Allan, ENDL Hubert Huot, IBM
Venkat Rao, HP Amir Artsi, RADWAY International Ltd.
Teow Standards Track [Page 44]
^L
RFC 2837 FC Fabric Element MIB May 2000
7. References
7.1. IETF References
[1] Harrington, D., Presuhn, R. and B. Wijnen, "An Architecture for
Describing SNMP Management Frameworks", RFC 2571, April 1999.
[2] Rose, M. and K. McCloghrie, "Structure and Identification of
Management Information for TCP/IP-based Internets", STD 16, RFC
1155, May 1990.
[3] Rose, M. and K. McCloghrie, "Concise MIB Definitions", STD 16,
RFC 1212, March 1991.
[4] Rose, M., "A Convention for Defining Traps for use with the
SNMP", RFC 1215, March 1991.
[5] McCloghrie, K., Perkins, D., Schoenwaelder, J., Case, J., Rose,
M. and S. Waldbusser, "Structure of Management Information
Version 2 (SMIv2)", STD 58, RFC 2578, April 1999.
[6] McCloghrie, K., Perkins, D., Schoenwaelder, J., Case, J., Rose,
M. and S. Waldbusser, "Textual Conventions for SMIv2", STD 58,
RFC 2579, April 1999.
[7] McCloghrie, K., Perkins, D., Schoenwaelder, J., Case, J., Rose,
M. and S. Waldbusser, "Conformance Statements for SMIv2", STD
58, RFC 2580, April 1999.
[8] Case, J., Fedor, M., Schoffstall, M. and J. Davin, "Simple
Network Management Protocol", STD 15, RFC 1157, May 1990.
[9] Case, J., McCloghrie, K., Rose, M. and S. Waldbusser,
"Introduction to Community-based SNMPv2", RFC 1901, January
1996.
[10] Case, J., McCloghrie, K., Rose, M. and S. Waldbusser, "Transport
Mappings for Version 2 of the Simple Network Management Protocol
(SNMPv2)", RFC 1906, January 1996.
[11] Case, J., Harrington D., Presuhn R. and B. Wijnen, "Message
Processing and Dispatching for the Simple Network Management
Protocol (SNMP)", RFC 2572, April 1999.
[12] Blumenthal, U. and B. Wijnen, "User-based Security Model (USM)
for version 3 of the Simple Network Management Protocol
(SNMPv3)", RFC 2574, April 1999.
Teow Standards Track [Page 45]
^L
RFC 2837 FC Fabric Element MIB May 2000
[13] Case, J., McCloghrie, K., Rose, M. and S. Waldbusser, "Protocol
Operations for Version 2 of the Simple Network Management
Protocol (SNMPv2)", RFC 1905, January 1996.
[14] Levi, D., Meyer, P. and B. Stewart, "SNMPv3 Applications", RFC
2573, April 1999.
[15] Wijnen, B., Presuhn, R. and K. McCloghrie, "View-based Access
Control Model (VACM) for the Simple Network Management Protocol
(SNMP)", RFC 2575, April 1999.
[16] Case, J., Mundy, R., Partain, D. and B. Stewart, "Introduction
to Version 3 of the Internet-standard Network Management
Framework", RFC 2570, April 1999.
7.2. Approved ANSI/NCITS References
[17] Fibre Channel Physical and Signaling Interface (FC-PH), American
National Standard for Information Systems X3.230:1994, Computer
and Business Equipment Manufacturers Association, Washington,
DC.
[18] Fibre Channel Fabric Generic (FC-FG), American National Standard
for Information Systems X3.289:1996, Computer and Business
Equipment Manufacturers Association, Washington, DC.
[19] Fibre Channel Generic Services (FC-GS), American National
Standard for Information Systems X3.288:1996, Computer and
Business Equipment Manufacturers Association, Washington, DC.
[20] Fibre Channel Arbitrated Loop (FC-AL), American National
Standard for Information Systems X3.272:1996, Computer and
Business Equipment Manufacturers Association, Washington, DC.
[21] Fibre Channel Physical and Signaling Interface-2 (FC-PH-2),
American National Standard for Information Systems, X3.297:1997,
Computer and Business Equipment Manufacturers Association,
Washington, DC.
[22] Fibre Channel Physical and Signaling Interface-3 (FC-PH-3),
American National Standard for Information Systems, X3.303:1998,
Computer and Business Equipment Manufacturers Association,
Washington, DC.
[23] Fibre Channel Switch Fabric (FC-SW), American National Standard
for Information Systems, NCITS 321:1998, Computer and Business
Equipment Manufacturers Association, Washington, DC.
Teow Standards Track [Page 46]
^L
RFC 2837 FC Fabric Element MIB May 2000
7.3. ANSI/NCITS References Under Development
[24] Fibre Channel Arbitrated Loop-2 (FC-AL-2), American National
Standard for Information Systems, X3T11/1133D Rev 5.2, Computer
and Business Equipment Manufacturers Association, Washington,
DC.
8. Editor's Address
Kha Sin Teow
Brocade Communications Systems, Inc.
1901 Guadalupe Parkway,
San Jose, CA 95131
U.S.A.
Phone: +1 408-487-8180
Email: khasin@Brocade.COM
Teow Standards Track [Page 47]
^L
RFC 2837 FC Fabric Element MIB May 2000
9. Full Copyright Statement
Copyright (C) The Internet Society (2000). All Rights Reserved.
This document and translations of it may be copied and furnished to
others, and derivative works that comment on or otherwise explain it
or assist in its implementation may be prepared, copied, published
and distributed, in whole or in part, without restriction of any
kind, provided that the above copyright notice and this paragraph are
included on all such copies and derivative works. However, this
document itself may not be modified in any way, such as by removing
the copyright notice or references to the Internet Society or other
Internet organizations, except as needed for the purpose of
developing Internet standards in which case the procedures for
copyrights defined in the Internet Standards process must be
followed, or as required to translate it into languages other than
English.
The limited permissions granted above are perpetual and will not be
revoked by the Internet Society or its successors or assigns.
This document and the information contained herein is provided on an
"AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING
TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING
BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION
HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF
MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
Acknowledgement
Funding for the RFC Editor function is currently provided by the
Internet Society.
Teow Standards Track [Page 48]
^L
|