1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
|
--===================================================================
--
-- May 23, 2002
--
-- Joel Goldman, Internet: jgoldman@us.ibm.com
-- IBM Server Group
-- Poughkeepsie, NY
--
-- Program name : IBM OSA-Express Direct SNMP Enterprise
-- Specific MIB ASN.1 Description file
--
-- SW Requires: IBM Communications Server for z/OS Version 1 Release 4
-- -or-
-- Linux ucd-snmp 4.2.x package
-- IBM OSA-Express device driver QETH (Rev. 1.239 or higher)
-- IBM osasnmpd subagent Ver. 1.1 or higher
--
-- HW Requires: OSA-Express running in QDIO mode with
-- Licensed Internal Code level 3.0A or higher
--
-- Description: Manages the IBM Open Systems Adapter Express CHPID
-- Enterprise Specific MIB
--
-- Latest MIB: Located at website
-- www.ibm.com/servers/resourcelink
-- logon on to Resourcelink
-- select "Library"
-- look to the right side under "Library short cuts" and select "OSA"
-- select the "OSA-Express Direct SNMP MIB module"
--
--===================================================================
IBM-OSA-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,
-- NOTIFICATION-TYPE, IpAddress, TimeTicks, Unsigned32
enterprises, Integer32, Gauge32, Counter32, Counter64
FROM SNMPv2-SMI -- RFC2578
-- TEXTUAL-CONVENTION, DateAndTime, TruthValue, RowStatus,
DisplayString
FROM SNMPv2-TC -- RFC2579
-- NOTIFICATION-GROUP
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF -- RFC2580
-- SnmpAdminString
-- FROM SNMP-FRAMEWORK-MIB
-- RFC2571
ifIndex
FROM IF-MIB -- RFC2863
;
ibmOSAMib MODULE-IDENTITY
LAST-UPDATED "200205230000Z"
ORGANIZATION "IBM eServer Development"
CONTACT-INFO
" Joel Goldman
Postal: International Business Machines Corporation
2455 South Road
Dept. B44G/Bldg. 706
Poughkeepsie, NY 12601
USA
Tel: +1 845 435 5501
Internet: jgoldman@us.ibm.com"
DESCRIPTION
"The IBM Enterprise Specific MIB definitions for
enabling management of an IBM OSA-Express feature.
Licensed Materials - Property of IBM
Restricted Materials of IBM
5694-A01 (C) Copyright IBM Corp. 2002
US Government Users Restricted Rights -
Use, duplication or disclosure restricted by
GSA ADP Schedule Contract with IBM Corp."
REVISION "200205230000Z"
DESCRIPTION
"Editorial revisions"
REVISION "200203260800Z"
DESCRIPTION
"Initial release"
::= { ibmProd 188 }
ibm OBJECT IDENTIFIER ::= { enterprises 2 }
ibmProd OBJECT IDENTIFIER ::= { ibm 6 }
-- ibmOSAMibTraps OBJECT IDENTIFIER ::= { ibmOSAMib 0 }
ibmOSAMibObjects OBJECT IDENTIFIER ::= { ibmOSAMib 1 }
ibmOSAMibConformance OBJECT IDENTIFIER ::= { ibmOSAMib 2 }
--===================================================================
-- IbmOSAMib
--===================================================================
-- IbmOSAExpChannelTable
ibmOSAExpChannelTable OBJECT-TYPE
SYNTAX SEQUENCE OF IbmOSAExpChannelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indexed by ifIndex. One entry in this table will exist per
OSA Device Interface."
::= { ibmOSAMibObjects 1 }
ibmOSAExpChannelEntry OBJECT-TYPE
SYNTAX IbmOSAExpChannelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Definition of a single entry in the ibmOSAExpChannelTable.
Indexed by the ifIndex of the corresponding Device interface."
INDEX { ifIndex }
::= { ibmOSAExpChannelTable 1 }
IbmOSAExpChannelEntry ::=
SEQUENCE
{
ibmOSAExpChannelNumber OCTET STRING,
ibmOSAExpChannelType INTEGER,
ibmOSAExpChannelHdwLevel INTEGER,
ibmOSAExpChannelSubType INTEGER,
ibmOSAExpChannelShared INTEGER,
ibmOSAExpChannelNodeDesc OCTET STRING,
ibmOSAExpChannelProcCodeLevel OCTET STRING,
ibmOSAExpChannelPCIBusUtil1Min Integer32,
ibmOSAExpChannelProcUtil1Min Integer32,
ibmOSAExpChannelPCIBusUtil5Min Integer32,
ibmOSAExpChannelProcUtil5Min Integer32,
ibmOSAExpChannelPCIBusUtilHour Integer32,
ibmOSAExpChannelProcUtilHour Integer32
}
ibmOSAExpChannelNumber OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(2))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CHPID corresponding to this ifIndex."
::= { ibmOSAExpChannelEntry 1 }
ibmOSAExpChannelType OBJECT-TYPE
SYNTAX INTEGER {
osaDirectExpress (17)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of channel for this interface.
OSA Direct Express has a value of 17."
::= { ibmOSAExpChannelEntry 2 }
ibmOSAExpChannelHdwLevel OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
osaExp150(2),
osaExp175(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Hardware model of the channel.
The value oasExp150(2) indicates a hardware level of 1.50.
The value oasExp175(3) indicates a hardware level of 1.75."
::= { ibmOSAExpChannelEntry 3 }
ibmOSAExpChannelSubType OBJECT-TYPE
SYNTAX INTEGER
{
unknown (1),
gigabitEthernet (65),
fastEthernet (81),
tokenRing (82),
atmEmulatedEthernet (2304)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the type of OSA feature present."
::= { ibmOSAExpChannelEntry 4 }
ibmOSAExpChannelShared OBJECT-TYPE
SYNTAX INTEGER
{
notShared (0),
shared (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An OSA-Express feature can be shared across multiple LPs.
This object indicates if this feature is currently being
shared between LPs"
::= { ibmOSAExpChannelEntry 5 }
ibmOSAExpChannelNodeDesc OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the Node Descriptor of the OSA feature.
It represents the ND obtained from the Channel Subsystem.
Bits Name Flag is first byte
char(1) Validity Valid - always '20'x
char(1) Reserved Reserved by architecture
char(1) Class Class for subsystem node
char(1) CHPID CHP ID for specified int
char(6) TypeNum Type number of the SDC
char(3) ModelNum Model number in the form of 3
EBCDIC OCTETS
char(3) Manufacturer Manufacturer in the form of 3
EBCDIC OCTETS
char(2) Mfr Plant Plant of manufacture-2 digit code
char(12)SeqNum Sequence number (12 EBCDIC OCTETS)
char(2) Tag Tag"
::= { ibmOSAExpChannelEntry 6 }
ibmOSAExpChannelProcCodeLevel OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(2))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the firmware (or micro code level) of the OSA
feature. For example, OSA code level 05.6A would be
represented as 0x056A."
::= { ibmOSAExpChannelEntry 8 }
ibmOSAExpChannelPCIBusUtil1Min OBJECT-TYPE
SYNTAX Integer32 (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The average, over a 1 minute interval, of the percentage
of time that the PCI bus was utilized to transfer data.
It does not include idle time or time used by
routine maintenance tasks. The range for this value
is from 0 to 100%."
::= { ibmOSAExpChannelEntry 9 }
ibmOSAExpChannelProcUtil1Min OBJECT-TYPE
SYNTAX Integer32 (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The average, over a 1 minute interval, of the percentage
of time that the CHPID Processor was utilized to transfer
data. It does not include idle time or time used by
routine maintenance tasks. The range for this value
is from 0 to 100%."
::= { ibmOSAExpChannelEntry 10 }
ibmOSAExpChannelPCIBusUtil5Min OBJECT-TYPE
SYNTAX Integer32 (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The average, over a 5 minute interval, of the percentage
of time that the PCI bus was utilized to transfer data.
It does not include idle time or time used by
routine maintenance tasks. The range for this value
is from 0 to 100%."
::= { ibmOSAExpChannelEntry 11 }
ibmOSAExpChannelProcUtil5Min OBJECT-TYPE
SYNTAX Integer32 (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The average, over a 5 minute interval, of the percentage
of time that the CHPID Processor was utilized to transfer
data. It does not include idle time or time used by
routine maintenance tasks. The range for this value
is from 0 to 100%."
::= { ibmOSAExpChannelEntry 12 }
ibmOSAExpChannelPCIBusUtilHour OBJECT-TYPE
SYNTAX Integer32 (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The average, over an hour interval, of the percentage
of time that the PCI bus was utilized to transfer data.
It does not include idle time or time used by
routine maintenance tasks."
::= { ibmOSAExpChannelEntry 13 }
ibmOSAExpChannelProcUtilHour OBJECT-TYPE
SYNTAX Integer32 (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The average, over an hour interval, of the percentage
of time that the CHPID Processor was utilized to transfer
data. It does not include idle time or time used by
routine maintenance tasks. The range for this value
is from 0 to 100%."
::= { ibmOSAExpChannelEntry 14 }
-- ibmOSAExpPerfTable
ibmOSAExpPerfTable OBJECT-TYPE
SYNTAX SEQUENCE OF IbmOSAExpPerfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table provides performance information for each
Logical Partition (LP) the OSA can connect to."
::= { ibmOSAMibObjects 2 }
ibmOSAExpPerfEntry OBJECT-TYPE
SYNTAX IbmOSAExpPerfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Definition of a single entry for a single LP
in the ibmOSAExpPerfTable.
Indexed by the ifIndex of the corresponding Device interface."
INDEX { ifIndex }
::= { ibmOSAExpPerfTable 1 }
IbmOSAExpPerfEntry ::=
SEQUENCE
{
ibmOSAExpPerfDataLP0 OCTET STRING,
ibmOSAExpPerfDataLP1 OCTET STRING,
ibmOSAExpPerfDataLP2 OCTET STRING,
ibmOSAExpPerfDataLP3 OCTET STRING,
ibmOSAExpPerfDataLP4 OCTET STRING,
ibmOSAExpPerfDataLP5 OCTET STRING,
ibmOSAExpPerfDataLP6 OCTET STRING,
ibmOSAExpPerfDataLP7 OCTET STRING,
ibmOSAExpPerfDataLP8 OCTET STRING,
ibmOSAExpPerfDataLP9 OCTET STRING,
ibmOSAExpPerfDataLP10 OCTET STRING,
ibmOSAExpPerfDataLP11 OCTET STRING,
ibmOSAExpPerfDataLP12 OCTET STRING,
ibmOSAExpPerfDataLP13 OCTET STRING,
ibmOSAExpPerfDataLP14 OCTET STRING,
ibmOSAExpPerfDataLP15 OCTET STRING
}
ibmOSAExpPerfDataLP0 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(40))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The performance data on this OSA for partition 0.
The 40 bytes of hex data that are returned are decoded
as follows:
Offset Bytes Field Meaning
0 4 LP Number
4 4 Processor Util 1 Minute
8 4 In Kbytes Rate 1 Minute
12 4 Out Kbytes Rate 1 Minute
16 4 Processor Util 5 Minutes
20 4 In Kbytes Rate 5 Minutes
24 4 Out Kbytes Rate 5 Minutes
28 4 Processor Util 60 Minutes
32 4 In Kbytes Rate 60 Minutes
36 4 Out Kbytes Rate 60 Minutes
The Processor Util 1 Minute is defined as follows:
The average, over a 1 minute interval, of the percentage
of time that the CHPID Processor was utilized to
transfer data for a specific LP. It does not include
idle time or time used by routine maintenance tasks.
The range for this value is from 0 to 100%.
The In Kbytes Rate 1 Minute is defined as follows:
The average, over a 1 minute interval, of the number of
inbound kilobytes processed for a specific LP.
The Out Kbytes Rate 1 Minute is defined as follows:
The average, over a 1 minute interval, of the number of
outbound kilobytes processed for a specific LP.
The 5 and 60 minute fields are defined similar to the
1 minute fields, but pertain to intervals of 5 and 60
minutes."
::= { ibmOSAExpPerfEntry 1 }
ibmOSAExpPerfDataLP1 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(40))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The performance data on this OSA for partition 1.
The 40 bytes of hex data that are returned are decoded
the same as for partition 0."
::= { ibmOSAExpPerfEntry 2 }
ibmOSAExpPerfDataLP2 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(40))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The performance data on this OSA for partition 2.
The 40 bytes of hex data that are returned are decoded
the same as for partition 0."
::= { ibmOSAExpPerfEntry 3 }
ibmOSAExpPerfDataLP3 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(40))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The performance data on this OSA for partition 3.
The 40 bytes of hex data that are returned are decoded
the same as for partition 0."
::= { ibmOSAExpPerfEntry 4 }
ibmOSAExpPerfDataLP4 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(40))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The performance data on this OSA for partition 4.
The 40 bytes of hex data that are returned are decoded
the same as for partition 0."
::= { ibmOSAExpPerfEntry 5 }
ibmOSAExpPerfDataLP5 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(40))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The performance data on this OSA for partition 5.
The 40 bytes of hex data that are returned are decoded
the same as for partition 0."
::= { ibmOSAExpPerfEntry 6 }
ibmOSAExpPerfDataLP6 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(40))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The performance data on this OSA for partition 6.
The 40 bytes of hex data that are returned are decoded
the same as for partition 0."
::= { ibmOSAExpPerfEntry 7 }
ibmOSAExpPerfDataLP7 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(40))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The performance data on this OSA for partition 7.
The 40 bytes of hex data that are returned are decoded
the same as for partition 0."
::= { ibmOSAExpPerfEntry 8 }
ibmOSAExpPerfDataLP8 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(40))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The performance data on this OSA for partition 8.
The 40 bytes of hex data that are returned are decoded
the same as for partition 0."
::= { ibmOSAExpPerfEntry 9 }
ibmOSAExpPerfDataLP9 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(40))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The performance data on this OSA for partition 9.
The 40 bytes of hex data that are returned are decoded
the same as for partition 0."
::= { ibmOSAExpPerfEntry 10 }
ibmOSAExpPerfDataLP10 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(40))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The performance data on this OSA for partition 10.
The 40 bytes of hex data that are returned are decoded
the same as for partition 0."
::= { ibmOSAExpPerfEntry 11 }
ibmOSAExpPerfDataLP11 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(40))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The performance data on this OSA for partition 11.
The 40 bytes of hex data that are returned are decoded
the same as for partition 0."
::= { ibmOSAExpPerfEntry 12 }
ibmOSAExpPerfDataLP12 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(40))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The performance data on this OSA for partition 12.
The 40 bytes of hex data that are returned are decoded
the same as for partition 0."
::= { ibmOSAExpPerfEntry 13 }
ibmOSAExpPerfDataLP13 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(40))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The performance data on this OSA for partition 13.
The 40 bytes of hex data that are returned are decoded
the same as for partition 0."
::= { ibmOSAExpPerfEntry 14 }
ibmOSAExpPerfDataLP14 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(40))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The performance data on this OSA for partition 14.
The 40 bytes of hex data that are returned are decoded
the same as for partition 0."
::= { ibmOSAExpPerfEntry 15 }
ibmOSAExpPerfDataLP15 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(40))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The performance data on this OSA for partition 15.
The 40 bytes of hex data that are returned are decoded
the same as for partition 0."
::= { ibmOSAExpPerfEntry 16 }
-- PE MIB Table starts here. This is for IBM use.
-- ibmOSAExpPETable
ibmOSAExpPETable OBJECT-TYPE
SYNTAX SEQUENCE OF IbmOSAExpPEEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table provides PE information to help IBM diagnose any
OSA problems."
::= { ibmOSAMibObjects 3 }
ibmOSAExpPEEntry OBJECT-TYPE
SYNTAX IbmOSAExpPEEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Definition of a single entry in the ibmOSAExpPETable.
Indexed by the ifIndex of the corresponding Device interface"
INDEX { ifIndex }
::= { ibmOSAExpPETable 1 }
IbmOSAExpPEEntry ::=
SEQUENCE
{
ibmOSAExpPEMaxSizeArpCache Integer32,
ibmOSAExpPEArpPendingEntries Gauge32,
ibmOSAExpPEArpActiveEntries Gauge32,
ibmOSAExpPEIPEntries Gauge32,
ibmOSAExpPEMulticastEntries Gauge32,
ibmOSAExpPEMulticastData OCTET STRING
}
ibmOSAExpPEMaxSizeArpCache OBJECT-TYPE
SYNTAX Integer32 (0..214783647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum size of the OSA ARP Cache"
::= { ibmOSAExpPEEntry 1 }
ibmOSAExpPEArpPendingEntries OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the number of Pending entries in the ARP cache."
::= { ibmOSAExpPEEntry 2 }
ibmOSAExpPEArpActiveEntries OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This the number of active ARP entries."
::= { ibmOSAExpPEEntry 3 }
ibmOSAExpPEIPEntries OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of IP addresses known to the OSA
For OSD chpids, this is the maximum # of IP addresses
that are:
- home ip addresses (Version 4 and Version 6)
- remote ip addresses in the arp cache (Version 4 only)
- multicast ip addresses that the OSA must accept inbound
data packets for (Version 4 and Version 6)"
::= { ibmOSAExpPEEntry 4 }
ibmOSAExpPEMulticastEntries OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the number of IP multicast addresses currently
on the OSA"
::= { ibmOSAExpPEEntry 5 }
ibmOSAExpPEMulticastData OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(3360))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This contains information on the multicast entries that
are currently on the OSA. These are in a format that is
for IBM use only"
::= { ibmOSAExpPEEntry 6 }
-- ibmOSAExpEthPortTable
ibmOSAExpEthPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF IbmOSAExpEthPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table represents the data associated with a port on an
OSA-Express Gigabit or Fast Ethernet OSA."
::= { ibmOSAMibObjects 4 }
ibmOSAExpEthPortEntry OBJECT-TYPE
SYNTAX IbmOSAExpEthPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Definition of a single entry in the ibmOSAExpEthPortTable.
Indexed by the ifIndex of the corresponding Device interface."
INDEX { ifIndex }
::= { ibmOSAExpEthPortTable 1 }
IbmOSAExpEthPortEntry ::=
SEQUENCE
{
ibmOsaExpEthPortNumber Integer32,
ibmOsaExpEthPortType INTEGER,
ibmOsaExpEthLanTrafficState INTEGER,
ibmOsaExpEthServiceMode INTEGER,
ibmOsaExpEthDisabledStatus BITS,
ibmOsaExpEthConfigName DisplayString,
ibmOsaExpEthConfigSpeedMode INTEGER,
ibmOsaExpEthActiveSpeedMode INTEGER,
ibmOsaExpEthMacAddrActive OCTET STRING,
ibmOsaExpEthMacAddrBurntIn OCTET STRING,
ibmOsaExpEthUserData DisplayString,
ibmOsaExpEthOutPackets Counter32,
ibmOsaExpEthInPackets Counter32,
ibmOsaExpEthInGroupFrames Counter32,
ibmOsaExpEthInBroadcastFrames Counter32,
ibmOsaExpEthPortName DisplayString,
ibmOsaExpEthInUnknownIPFrames Counter32,
ibmOsaExpEthGroupAddrTable OCTET STRING
}
ibmOsaExpEthPortNumber OBJECT-TYPE
SYNTAX Integer32 (0..3)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The physical port number for this port."
::= { ibmOSAExpEthPortEntry 1 }
ibmOsaExpEthPortType OBJECT-TYPE
SYNTAX INTEGER {
gigabitEthernet (65),
fastEthernet (81)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The physical port type."
::= { ibmOSAExpEthPortEntry 2 }
ibmOsaExpEthLanTrafficState OBJECT-TYPE
SYNTAX INTEGER
{
undefined(0),
unavailable(1),
enabling(2),
disabling(3),
enabled(4),
disabled(5),
linkMonitor(6),
definitionError(7),
configuredOffline(8)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The LAN state value ranges from 0 to 8. A value of 5,
disabled is further explained in object
ibmOsaExpEthDisabledStatus."
::= { ibmOSAExpEthPortEntry 3 }
ibmOsaExpEthServiceMode OBJECT-TYPE
SYNTAX INTEGER
{
notInServiceMode (0),
inServiceMode (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates if the processor is in service mode
or not."
::= { ibmOSAExpEthPortEntry 4 }
ibmOsaExpEthDisabledStatus OBJECT-TYPE
SYNTAX BITS
{
reserved0 (0),
internalPortFailure (1),
reserved2 (2),
reserved3 (3),
reserved4 (4),
reserved5 (5),
portTemporarilyDisabled (6),
reserved7 (7),
reserved8 (8),
serviceProcessorRequest (9),
networkRequest (10),
osasfRequest (11),
configurationChange (12),
linkFailureThresholdExceeded (13),
reserved14 (14),
reserved15 (15)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"When the value of ibmOsaExpEthLanTrafficState is
NOT disabled, the value of this object will be zero.
When the value of ibmOsaExpEthLanTrafficState is
disabled(5), this object explains the reason for the
disabled state. The value for this object may be a
combination of the bits shown."
::= { ibmOSAExpEthPortEntry 5 }
ibmOsaExpEthConfigName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..34))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the name of the configuration that is on the OSA.
It is set using OSA/SF. It is not used by OSA"
::= { ibmOSAExpEthPortEntry 6 }
ibmOsaExpEthConfigSpeedMode OBJECT-TYPE
SYNTAX INTEGER
{
notValidGigabit (-1),
autoNegotiate (0),
tenMbHalfDuplex (1),
tenMbFullDuplex (2),
oneHundredMbHalfDuplex (3),
oneHundredMbFullDuplex (4),
oneThousandMbFullDuplex (6)
}
UNITS "Megabits per second"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The configured port speed. This field shows the speed
that was configured by the user for the OSA-Express
Fast Ethernet feature.
It is not used by OSA-Express Gigabit features
and will return -1 (FFFF)"
::= { ibmOSAExpEthPortEntry 7 }
ibmOsaExpEthActiveSpeedMode OBJECT-TYPE
SYNTAX INTEGER
{
unknown (0),
tenMbHalfDuplex (1),
tenMbFullDuplex (2),
oneHundredMbHalfDuplex (3),
oneHundredMbFullDuplex (4),
oneThousandMbFullDuplex (6)
}
UNITS "Megabits per second"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The actual speed and mode the OSA is running in"
::= { ibmOSAExpEthPortEntry 8 }
ibmOsaExpEthMacAddrActive OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(6))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A 6 byte OCTET STRING which contains the current
MAC address in use on the adapter.
The values are in canonical format."
::= { ibmOSAExpEthPortEntry 9 }
ibmOsaExpEthMacAddrBurntIn OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(6))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A 6 byte OCTET STRING which contains the burned in
MAC address on the OSA.
The values are in canonical format."
::= { ibmOSAExpEthPortEntry 10 }
ibmOsaExpEthUserData OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Data set by the user. It is ignored by the OSA."
::= { ibmOSAExpEthPortEntry 11 }
ibmOsaExpEthOutPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the number of packets that have been transmitted
by the OSA since the last time the OSA port was reset"
::= { ibmOSAExpEthPortEntry 12 }
ibmOsaExpEthInPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the number of packets that have been received
by the OSA since the last time the OSA port was reset"
::= { ibmOSAExpEthPortEntry 13 }
ibmOsaExpEthInGroupFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the number of multicast frames that have been
received by the OSA."
::= { ibmOSAExpEthPortEntry 14 }
ibmOsaExpEthInBroadcastFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the number of broadcast frames that have been
received by the OSA."
::= { ibmOSAExpEthPortEntry 15 }
ibmOsaExpEthPortName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..8))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of the port as used by TCP/IP"
::= { ibmOSAExpEthPortEntry 16 }
ibmOsaExpEthInUnknownIPFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the number of non-IP received frames"
::= { ibmOSAExpEthPortEntry 17 }
ibmOsaExpEthGroupAddrTable OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(256))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This field contains the active Group Addresses.
An individual Group Address is 6 bytes long with an
additional 2 bytes of padding. There are 32 group
addresses."
::= { ibmOSAExpEthPortEntry 18 }
-- ibmOSAExpTRPortTable
ibmOSAExpTRPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF IbmOSAExpTRPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table represents the data associated with a port on an
OSA-Express token ring feature."
::= { ibmOSAMibObjects 5 }
ibmOSAExpTRPortEntry OBJECT-TYPE
SYNTAX IbmOSAExpTRPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Definition of a single entry in the ibmOSAExpTRPortTable.
Indexed by the ifIndex of the corresponding Device interface."
INDEX { ifIndex }
::= { ibmOSAExpTRPortTable 1 }
IbmOSAExpTRPortEntry ::=
SEQUENCE
{
ibmOsaExpTRPortNumber Integer32,
ibmOsaExpTRPortType INTEGER,
ibmOsaExpTRLanTrafficState INTEGER,
ibmOsaExpTRServiceMode INTEGER,
ibmOsaExpTRDisabledStatus BITS,
ibmOsaExpTRConfigName DisplayString,
ibmOsaExpTRMacAddrActive OCTET STRING,
ibmOsaExpTRMacAddrBurntIn OCTET STRING,
ibmOsaExpTRConfigSpeedMode INTEGER,
ibmOsaExpTRActiveSpeedMode INTEGER,
ibmOsaExpTRUserData DisplayString,
ibmOsaExpTRPortName DisplayString,
ibmOsaExpTRGroupAddrTable OCTET STRING,
ibmOsaExpTRFunctionalAddr OCTET STRING,
ibmOsaExpTRRingStatus BITS,
ibmOsaExpTRAllowAccessPriority Integer32,
ibmOsaExpTREarlyTokenRelease INTEGER,
ibmOsaExpTRBeaconingAddress OCTET STRING,
ibmOsaExpTRUpstreamNeighbor OCTET STRING,
ibmOsaExpTRRingState INTEGER,
ibmOsaExpTRRingOpenStatus INTEGER,
ibmOsaExpTRPacketsTransmitted Counter32,
ibmOsaExpTRPacketsReceived Counter32,
ibmOsaExpTRLineErrorCount Counter32,
ibmOsaExpTRBurstErrorCount Counter32,
ibmOsaExpTRACErrorCount Counter32,
ibmOsaExpTRAbortTransErrorCount Counter32,
ibmOsaExpTRInternalErrorCount Counter32,
ibmOsaExpTRLostFrameErrorCount Counter32,
ibmOsaExpTRRcvCongestionCount Counter32,
ibmOsaExpTRFrameCopyErrorCount Counter32,
ibmOsaExpTRTokenErrorCount Counter32,
ibmOsaExpTRFullDuplexErrorCount Counter32,
ibmOsaExpTRSoftErrorCount Counter32,
ibmOsaExpTRHardErrorCount Counter32,
ibmOsaExpTRSignalLossErrorCount Counter32,
ibmOsaExpTRTransmitBeaconCount Counter32,
ibmOsaExpTRRecoveryCounter Counter32,
ibmOsaExpTRLobeWireFaultCount Counter32,
ibmOsaExpTRRemoveReceivedCount Counter32,
ibmOsaExpTRSingleStationCount Counter32
}
ibmOsaExpTRPortNumber OBJECT-TYPE
SYNTAX Integer32 (0..3)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The physical port number for this port."
::= { ibmOSAExpTRPortEntry 1 }
ibmOsaExpTRPortType OBJECT-TYPE
SYNTAX INTEGER {
tokenring(82)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The physical port type."
::= { ibmOSAExpTRPortEntry 2 }
ibmOsaExpTRLanTrafficState OBJECT-TYPE
SYNTAX INTEGER
{
undefined(0),
unavailable(1),
enabling(2),
disabling(3),
enabled(4),
disabled(5),
linkMonitor(6),
definitionError(7),
configuredOffline(8)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The LAN state value ranges from 0 to 8. A value of 5,
disabled is further explained in object
ibmOsaExpTRDisabledStatus"
::= { ibmOSAExpTRPortEntry 3 }
ibmOsaExpTRServiceMode OBJECT-TYPE
SYNTAX INTEGER
{
notInServiceMode (0),
inServiceMode (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates if the processor is in service mode
or not."
::= { ibmOSAExpTRPortEntry 4 }
ibmOsaExpTRDisabledStatus OBJECT-TYPE
SYNTAX BITS
{
reserved0 (0),
internalPortFailure (1),
reserved2 (2),
reserved3 (3),
reserved4 (4),
reserved5 (5),
portTemporarilyDisabled (6),
reserved7 (7),
reserved8 (8),
serviceProcessorRequest (9),
networkRequest (10),
osasfRequest (11),
configurationChange (12),
linkFailureThresholdExceeded (13),
reserved14 (14),
reserved15 (15)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"When the value of ibmOsaExpTRLanTrafficState is
NOT disabled, the value of this object will be zero.
When the value of ibmOsaExpTRLanTrafficState is
disabled(5), this object explains the reason for the
disabled state. The value for this object may be a
combination of the bits shown."
::= { ibmOSAExpTRPortEntry 5 }
ibmOsaExpTRConfigName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..34))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the name of the configuration that is on the OSA.
It is set using OSA/SF. It is not used by OSA"
::= { ibmOSAExpTRPortEntry 6 }
ibmOsaExpTRMacAddrActive OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(6))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A 6 byte OCTET STRING which contains the current
MAC address in use on the OSA."
::= { ibmOSAExpTRPortEntry 7 }
ibmOsaExpTRMacAddrBurntIn OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(6))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A 6 byte OCTET STRING which contains the burned in
MAC address on the OSA"
::= { ibmOSAExpTRPortEntry 8 }
ibmOsaExpTRConfigSpeedMode OBJECT-TYPE
SYNTAX INTEGER
{
autoNegotiate (0),
fourMbHalfDuplex (1),
fourMbFullDuplex (2),
sixteenMbHalfDuplex (3),
sixteenMbFullDuplex (4),
oneHundredMbFullDuplex (6)
}
UNITS "Megabits per second"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The configured port speed. This field shows the speed
that was configured by the user for the OSA-Express
Token Ring feature."
::= { ibmOSAExpTRPortEntry 9 }
ibmOsaExpTRActiveSpeedMode OBJECT-TYPE
SYNTAX INTEGER
{
unknown (0),
fourMbHalfDuplex (1),
fourMbFullDuplex (2),
sixteenMbHalfDuplex (3),
sixteenMbFullDuplex (4),
oneHundredMbFullDuplex (6)
}
UNITS "Megabits per second"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The actual speed and mode the OSA is running in"
::= { ibmOSAExpTRPortEntry 10 }
ibmOsaExpTRUserData OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Data set by the user. It is ignored by the OSA."
::= { ibmOSAExpTRPortEntry 11 }
ibmOsaExpTRPortName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..8))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of the port as used by TCP/IP"
::= { ibmOSAExpTRPortEntry 12 }
ibmOsaExpTRGroupAddrTable OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(256))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This field contains the active Group Addresses.
An individual Group Address is 6 bytes long with an
additional 2 bytes of padding."
::= { ibmOSAExpTRPortEntry 13 }
ibmOsaExpTRFunctionalAddr OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(4))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A 4 byte OCTET STRING which contains the OSA-Express's
functional address."
::= { ibmOSAExpTRPortEntry 14 }
ibmOsaExpTRRingStatus OBJECT-TYPE
SYNTAX BITS
{
reserved0 (0),
reserved1 (1),
reserved2 (2),
reserved3 (3),
reserved4 (4),
reserved5 (5),
reserved6 (6),
reserved7 (7),
reserved8 (8),
reserved9 (9),
reserved10 (10),
reserved11 (11),
reserved12 (12),
reserved13 (13),
noStatusOpenNotCompleted (14),
reserved15 (15),
signalLoss (16),
hardError (17),
softError (18),
reserved19 (19),
lobeWireFault (20),
autoRemovalError (21),
fdxProtocol (22),
removeReceived (23),
counterOverflow (24),
singleStation (25),
ringRecovery (26),
sRCounterOverflow (27),
reserved29 (28),
openInFDXmode (29),
fourMbFullDuplex (30),
fourMbHalfDuplex (31)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current interface status which can be used to diagnose
fluctuating problems that can occur on token rings after a
station has successfully been added to the ring.
Before an open is completed, this object has the value
for the 'noStatusOpenNotCompleted' condition.
The ibmOsaExpTRRingState and ibmOsaExpTRRingOpenStatus
objects provide for debugging problems when the station
can not even enter the ring.
The object's value is a sum of values,
one for each currently applicable condition.
This information is essentially from RFC 1231."
::= { ibmOSAExpTRPortEntry 15 }
ibmOsaExpTRAllowAccessPriority OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This field contains the maximum token priority
the ring station defined by this entry in the
table is permitted to transmit."
::= { ibmOSAExpTRPortEntry 16 }
ibmOsaExpTREarlyTokenRelease OBJECT-TYPE
SYNTAX INTEGER
{
true(0),
false(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates if the ring station supports early token release.
Only valid when port is running in 16Mb half duplex mode.
Otherwise it is always set to false (1)"
::= { ibmOSAExpTRPortEntry 17 }
ibmOsaExpTRBeaconingAddress OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(6))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This field contains the node address of the NAUN as
reported in the most recently received Beacon MAC frame.
This field is valid when ibmOsaExpTRRingOpenStatus is
set to beaconing. Otherwise it is ignored"
::= { ibmOSAExpTRPortEntry 18 }
ibmOsaExpTRUpstreamNeighbor OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(6))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The MAC-address of the up stream neighbor station in
the ring (NAUN)."
::= { ibmOSAExpTRPortEntry 19 }
ibmOsaExpTRRingState OBJECT-TYPE
SYNTAX INTEGER {
opened (1),
closed (2),
opening (3),
closing (4),
openFailure (5),
ringFailure (6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current interface state with respect
to entering or leaving the ring."
::= { ibmOSAExpTRPortEntry 20 }
ibmOsaExpTRRingOpenStatus OBJECT-TYPE
SYNTAX INTEGER {
noOpen (1),
badParameter (2),
lobeFailed (3),
signalLoss (4),
insertionTimeout (5),
ringFailed (6),
beaconing (7),
duplicateMAC (8),
requestFailed (9),
removeReceived (10),
open (11),
sARecFrameNotEqualNAUNs (12),
claimTokenRec (13),
ringPurgeFramRec (14),
activeMonPresRec (15),
standbyMonPresRec (16),
accessProtocolDenied (17),
fDXInsDeniedDACfailOnOpen (18),
fDXInsDeniedDACfailOnBeaconTest (19),
beaconBeforeOpen (20),
insertTimerExpDuringDAC (21),
insertTimerExpDuringBeaconTest (22),
lobeMedizTestFailure (23),
heartbeatFailBeforeOpenCompleted (24),
heartbeatFailDuringBeaconTest (25),
recBeaconFrameWithInvalidSA (26)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the success, or the reason for failure
of the station's most recent attempt to enter the ring."
::= { ibmOSAExpTRPortEntry 21 }
ibmOsaExpTRPacketsTransmitted OBJECT-TYPE
SYNTAX Counter32
UNITS "packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This field contains the count of the total number of packets
transmitted from this port since the OSA port was reset"
::= { ibmOSAExpTRPortEntry 22 }
ibmOsaExpTRPacketsReceived OBJECT-TYPE
SYNTAX Counter32
UNITS "packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This field contains the count of the total number of
packets received by this port since the OSA port was reset"
::= { ibmOSAExpTRPortEntry 23 }
ibmOsaExpTRLineErrorCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This counter is incremented when a frame or token is
copied or repeated by a station, the E bit is zero in the
frame or token and one of the following conditions exists:
1) there is a non-data bit (J or K bit) between the SD
and the ED of the frame or token, or
2) there is an FCS error in the frame."
::= { ibmOSAExpTRPortEntry 24 }
ibmOsaExpTRBurstErrorCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This counter is incremented when a station detects the
absence of transitions for five half-bit timers
(burst-five error)."
::= { ibmOSAExpTRPortEntry 25 }
ibmOsaExpTRACErrorCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This counter is incremented when a station
receives an AMP or SMP frame in which A is
equal to C is equal to 0, and then receives
another SMP frame with A is equal to C is
equal to 0 without first receiving an AMP
frame. It denotes a station that cannot set
the AC bits properly."
::= { ibmOSAExpTRPortEntry 26 }
ibmOsaExpTRAbortTransErrorCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This counter is incremented when a station
transmits an abort delimiter while transmitting."
::= { ibmOSAExpTRPortEntry 27 }
ibmOsaExpTRInternalErrorCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This counter is incremented when a station
recognizes an internal error."
::= { ibmOSAExpTRPortEntry 28 }
ibmOsaExpTRLostFrameErrorCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This counter is incremented when a station is transmitting
and its TRR timer expires. This condition denotes a condition
transmitting station in strip mode does not receive the
trailer of the frame TRR timer goes off."
::= { ibmOSAExpTRPortEntry 29 }
ibmOsaExpTRRcvCongestionCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This counter is incremented when a station
recognizes a frame addressed to its specific address, but
has no available buffer space indicating that the station
is congested."
::= { ibmOSAExpTRPortEntry 30 }
ibmOsaExpTRFrameCopyErrorCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This counter is incremented when a station recognizes a
frame addressed to its specific address and detects that the
FS field A bits are set to 1 indicating a possible line hit
or duplicate address."
::= { ibmOSAExpTRPortEntry 31 }
ibmOsaExpTRTokenErrorCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This counter is incremented when a station acting as the
active monitor recognizes an error condition that needs a
token transmitted."
::= { ibmOSAExpTRPortEntry 32 }
ibmOsaExpTRFullDuplexErrorCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An error has been detected by the FDX protocol"
::= { ibmOSAExpTRPortEntry 33 }
ibmOsaExpTRSoftErrorCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Soft Errors the interface
has detected. It directly corresponds to
the number of Report Error MAC frames
that this interface has transmitted.
Soft Errors are those which are
recoverable by the MAC layer protocols."
::= { ibmOSAExpTRPortEntry 34 }
ibmOsaExpTRHardErrorCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times this interface has
detected an immediately recoverable
fatal error. It denotes the number of
times this interface is either
transmitting or receiving beacon MAC frames."
::= { ibmOSAExpTRPortEntry 35 }
ibmOsaExpTRSignalLossErrorCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times this interface has
detected the loss of signal condition from the ring."
::= { ibmOSAExpTRPortEntry 36 }
ibmOsaExpTRTransmitBeaconCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times this interface has
transmitted a beacon frame."
::= { ibmOSAExpTRPortEntry 37 }
ibmOsaExpTRRecoveryCounter OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Claim Token MAC frames received or
transmitted after the interface has received a frame Ring
Ring Purge MAC counter signifies the number of times the
ring has been purged and is being recovered back into a
normal operating state."
::= { ibmOSAExpTRPortEntry 38 }
ibmOsaExpTRLobeWireFaultCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times the interface has
detected an open or short circuit in the
lobe data path. The adapter will be closed
and ibmOsaExpTRRingState will signify this condition."
::= { ibmOSAExpTRPortEntry 39 }
ibmOsaExpTRRemoveReceivedCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times the interface has received a Remove
Ring Station MAC frame request. When this frame is
received the interface will enter the closed state and
ibmOsaExpTRRingState will signify this condition."
::= { ibmOSAExpTRPortEntry 40 }
ibmOsaExpTRSingleStationCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times the interface has
sensed that it is the only station on the
ring. This will happen if the interface
is the first one up on a ring, or if
there is a hardware problem."
::= { ibmOSAExpTRPortEntry 41 }
-- ibmOSAExpATMPortTable
ibmOSAExpATMPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF IbmOSAExpATMPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table represents the data associated with an emulated
Ethernet port on an OSA-Express ATM feature.
There are a maximum of 2 logical ports on each ATM feature,
however, each port is shown as though it exists independently
with each having an entry in the ibmOSAExpChannelTable."
::= { ibmOSAMibObjects 7 }
ibmOSAExpATMPortEntry OBJECT-TYPE
SYNTAX IbmOSAExpATMPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Definition of a single entry in the ibmOSAExpATMPortTable.
Indexed by the ifIndex of the corresponding Device interface."
INDEX { ifIndex }
::= { ibmOSAExpATMPortTable 1 }
IbmOSAExpATMPortEntry ::=
SEQUENCE
{
ibmOsaExpATMPortNumber Integer32,
ibmOsaExpATMPortType INTEGER,
ibmOsaExpATMLanTrafficState INTEGER,
ibmOsaExpATMServiceMode INTEGER,
ibmOsaExpATMDisabledStatus BITS,
ibmOsaExpATMConfigName DisplayString,
ibmOsaExpATMMacAddrActive OCTET STRING,
ibmOsaExpATMMacAddrBurntIn OCTET STRING,
ibmOsaExpATMUserData DisplayString,
ibmOsaExpATMPortName DisplayString,
ibmOsaExpATMGroupMacAddrTable OCTET STRING,
ibmOsaExpATMIBMEnhancedMode INTEGER,
ibmOsaExpATMBestEffortPeakRate Integer32,
ibmOsaExpATMConfigMode INTEGER,
ibmOsaExpATMConfigLanType INTEGER,
ibmOsaExpATMActualLanType INTEGER,
ibmOsaExpATMConfigMaxDataFrmSz INTEGER,
ibmOsaExpATMActualMaxDataFrmSz INTEGER,
ibmOsaExpATMConfigELANName DisplayString,
ibmOsaExpATMActualELANName DisplayString,
ibmOsaExpATMConfigLESATMAddress OCTET STRING,
ibmOsaExpATMActualLESATMAddress OCTET STRING,
ibmOsaExpATMControlTimeout Integer32,
ibmOsaExpATMMaxUnknownFrameCount Integer32,
ibmOsaExpATMMaxUnknownFrameTime Integer32,
ibmOsaExpATMVCCTimeoutPeriod Integer32,
ibmOsaExpATMMaxRetryCount Counter32,
ibmOsaExpATMAgingTime Integer32,
ibmOsaExpATMForwardDelayTime Integer32,
ibmOsaExpATMExpectedARPRespTime Integer32,
ibmOsaExpATMFlushTimeout Integer32,
ibmOsaExpATMPathSwitchingDelay Integer32,
ibmOsaExpATMLocalSegmentID Integer32,
ibmOsaExpATMMltcstSendVCCType INTEGER,
ibmOsaExpATMMltcstSendVCCAvgRate Integer32,
ibmOsaExpATMMcastSendVCCPeakRate Integer32,
ibmOsaExpATMConnectCompleteTimer Integer32,
ibmOsaExpATMClientATMAddress OCTET STRING,
ibmOsaExpATMClientIdentifier Integer32,
ibmOsaExpATMClientCurrentState INTEGER,
ibmOsaExpATMLastFailureRespCode INTEGER,
ibmOsaExpATMLastFailureState INTEGER,
ibmOsaExpATMProtocol Integer32,
ibmOsaExpATMLeVersion Integer32,
ibmOsaExpATMTopologyChange INTEGER,
ibmOsaExpATMConfigServerATMAddr OCTET STRING,
ibmOsaExpATMConfigSource INTEGER,
ibmOsaExpATMProxyClient INTEGER,
ibmOsaExpATMLePDUOctetsInbound Counter64,
ibmOsaExpATMNonErrLePDUDiscIn Counter32,
ibmOsaExpATMErrLePDUDiscIn Counter32,
ibmOsaExpATMLePDUOctetsOutbound Counter64,
ibmOsaExpATMNonErrLePDUDiscOut Counter32,
ibmOsaExpATMErrLePDUDiscOut Counter32,
ibmOsaExpATMLeARPRequestsOut Counter32,
ibmOsaExpATMLeARPRequestsIn Counter32,
ibmOsaExpATMLeARPRepliesOut Counter32,
ibmOsaExpATMLeARPRepliesIn Counter32,
ibmOsaExpATMControlFramesOut Counter32,
ibmOsaExpATMControlFramesIn Counter32,
ibmOsaExpATMSVCFailures Counter32,
ibmOsaExpATMConfigDirectIntfc Integer32,
ibmOsaExpATMConfigDirectVPI Integer32,
ibmOsaExpATMConfigDirectVCI Integer32,
ibmOsaExpATMControlDirectIntfc Integer32,
ibmOsaExpATMControlDirectVPI Integer32,
ibmOsaExpATMControlDirectVCI Integer32,
ibmOsaExpATMControlDistIntfc Integer32,
ibmOsaExpATMControlDistributeVPI Integer32,
ibmOsaExpATMControlDistributeVCI Integer32,
ibmOsaExpATMMulticastSendIntfc Integer32,
ibmOsaExpATMMulticastSendVPI Integer32,
ibmOsaExpATMMulticastSendVCI Integer32,
ibmOsaExpATMMulticastFwdIntfc Integer32,
ibmOsaExpATMMulticastForwardVPI Integer32,
ibmOsaExpATMMulticastForwardVCI Integer32
}
ibmOsaExpATMPortNumber OBJECT-TYPE
SYNTAX Integer32 (0..3)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The logical port number of this port"
::= { ibmOSAExpATMPortEntry 1 }
ibmOsaExpATMPortType OBJECT-TYPE
SYNTAX INTEGER {
emulatedEthernet (17)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The logical port type."
::= { ibmOSAExpATMPortEntry 2 }
ibmOsaExpATMLanTrafficState OBJECT-TYPE
SYNTAX INTEGER
{
undefined(0),
unavailable(1),
enabling(2),
disabling(3),
enabled(4),
disabled(5),
linkMonitor(6),
definitionError(7),
configuredOffline(8)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The LAN state value ranges from 0 to 8. A value of 5,
disabled is further explained in object
ibmOsaExpATMDisabledStatus."
::= { ibmOSAExpATMPortEntry 3 }
ibmOsaExpATMServiceMode OBJECT-TYPE
SYNTAX INTEGER
{
notInServiceMode (0),
inServiceMode (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates if the processor is in service mode
or not."
::= { ibmOSAExpATMPortEntry 4 }
ibmOsaExpATMDisabledStatus OBJECT-TYPE
SYNTAX BITS
{
reserved0 (0),
internalPortFailure (1),
reserved2 (2),
reserved3 (3),
reserved4 (4),
reserved5 (5),
portTemporarilyDisabled (6),
reserved7 (7),
reserved8 (8),
serviceProcessorRequest (9),
networkRequest (10),
osasfRequest (11),
configurationChange (12),
linkFailureThresholdExceeded (13),
reserved14 (14),
reserved15 (15)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"When the value of ibmOsaExpATMLanTrafficState is NOT
disabled, the value of this object will be zero.
When the value of ibmOsaExpATMLanTrafficState is
disabled(5), this object explains the reason for the
disabled state. The value for this object may be a
combination of the bits shown."
::= { ibmOSAExpATMPortEntry 5 }
ibmOsaExpATMConfigName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..34))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the name of the configuration that is on the OSA.
It is set using OSA/SF. It is not used by OSA"
::= { ibmOSAExpATMPortEntry 6 }
ibmOsaExpATMMacAddrActive OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(6))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A 6 byte OCTET STRING which contains the current
MAC address in use on the OSA.
The values are in canonical format."
::= { ibmOSAExpATMPortEntry 7 }
ibmOsaExpATMMacAddrBurntIn OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(6))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A 6 byte OCTET STRING which contains the burned in
MAC address on the OSA.
The values are in canonical format."
::= { ibmOSAExpATMPortEntry 8 }
ibmOsaExpATMUserData OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Data set by the user. It is ignored by the OSA."
::= { ibmOSAExpATMPortEntry 9 }
ibmOsaExpATMPortName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..8))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of the port as used by TCP/IP"
::= { ibmOSAExpATMPortEntry 12 }
ibmOsaExpATMGroupMacAddrTable OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(256))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This field contains the active Group Addresses.
An individual Group Address is 6 bytes long with an
additional 2 bytes of padding."
::= { ibmOSAExpATMPortEntry 13 }
ibmOsaExpATMIBMEnhancedMode OBJECT-TYPE
SYNTAX INTEGER {
no (0),
yes (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"When set to Yes, this keeps data connections active
when the connection to the LES is lost."
::= { ibmOSAExpATMPortEntry 14 }
ibmOsaExpATMBestEffortPeakRate OBJECT-TYPE
SYNTAX Integer32
UNITS "Megabytes per second"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Values range from 10-1550 and must be divided by 10 to
get the proper value. A value of 1550 indicates 155.0
Mbytes/sec"
::= { ibmOSAExpATMPortEntry 15 }
ibmOsaExpATMConfigMode OBJECT-TYPE
SYNTAX INTEGER {
automatic (1),
manual (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates whether this LAN Emulation Client should
auto-configure the next time it is (re)started. In
automatic (1) mode, a client uses a LAN Emulation
Configuration Server to learn the ATM address of its
LAN Emulation Server, and to obtain other parameters.
lecConfig (LanType, MaxDataFrameSize, LanName) are
used in the configure request.
ibmOsaExpATMConfigLESATMAddress is ignored.
In manual (2) mode, management tells the
client the ATM address of its LAN Emulation Server
and the value of the other parmeters. lecConfig
(LanType, MaxDataFrameSize, LanName) are used in the
Join request. ibmOsaExpATMConfigLESATMAddress
tells the client which LES to call."
::= { ibmOSAExpATMPortEntry 16 }
ibmOsaExpATMConfigLanType OBJECT-TYPE
SYNTAX INTEGER {
emulatedEthernet (17)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The logical port type that the user configured the port for"
::= { ibmOSAExpATMPortEntry 17 }
ibmOsaExpATMActualLanType OBJECT-TYPE
SYNTAX INTEGER {
emulatedEthernet (17)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The actual logical port type the port is running in"
::= { ibmOSAExpATMPortEntry 18 }
ibmOsaExpATMConfigMaxDataFrmSz OBJECT-TYPE
SYNTAX INTEGER {
unspecified (1),
f1516 (2),
f4544 (3),
f9234 (4),
f18190 (5)
}
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum data frame size (in bytes) which this
client will use the next time it returns to the Initial
State. Auto-configuring clients use this parameter in
their configure requests. Manually configured clients use
it in their join requests."
::= { ibmOSAExpATMPortEntry 19 }
ibmOsaExpATMActualMaxDataFrmSz OBJECT-TYPE
SYNTAX INTEGER {
unspecified (1),
f1516 (2),
f4544 (3),
f9234 (4),
f18190 (5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum data frame size (in bytes) which this
client will use the next time it returns to the Initial
State. Auto-configuring clients use this parameter in
their configure requests. Manually configured clients use
it in their join requests."
::= { ibmOSAExpATMPortEntry 20 }
ibmOsaExpATMConfigELANName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..36))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ELAN Name this client will use the
next time it returns to the Initial State.
Auto-configuring clients use this parameter in
their configure requests. Manually configured
clients use it in their join requests."
::= { ibmOSAExpATMPortEntry 21 }
ibmOsaExpATMActualELANName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..36))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ELAN Name this client will use the
next time it returns to the Initial State.
Auto-configuring clients use this parameter in
their configure requests. Manually configured
clients use it in their join requests."
::= { ibmOSAExpATMPortEntry 22 }
ibmOsaExpATMConfigLESATMAddress OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The LAN Emulation Server which this client will use the
next time it is started in manual configuration mode.
When ibmOsaExpATMConfigMode is 'automatic', there is no
need to set this address, Address) and no advantage to
doing so. The client will use the LECS to find a LES,
putting the auto-configured address in
ibmOsaExpATMActualLESATMAddress while leaving
ibmOsaExpATMConfigLESATMAddress alone.
Corresponds to Initial State Parameter C9.
In LAN Emulation MIB, the OCTET STRING has length 0 or 20.
For OSA, the length shall be 20, with the value 0
defined to mean that ibmOsaExpATMConfigMode is 'automatic'."
::= { ibmOSAExpATMPortEntry 23 }
ibmOsaExpATMActualLESATMAddress OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The LAN Emulation Server which this client will use the
next time it is started in manual configuration mode.
When lecConfigMode is 'automatic', there is no need to set
this address, Address) and no advantage to doing so. The
client will use the LECS to find a LES, putting the
auto-configured address in ibmOsaExpATMActualLESATMAddress
while leaving ibmOsaExpATMConfigLESATMAddress alone.
Corresponds to Initial State Parameter C9.
In LAN Emulation MIB, the OCTET STRING has length 0 or 20.
For OSA, the length shall be 20, with the value 0 defined
to mean that ibmOsaExpATMConfigMode is 'automatic'."
::= { ibmOSAExpATMPortEntry 24 }
ibmOsaExpATMControlTimeout OBJECT-TYPE
SYNTAX Integer32 (10..300)
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Control Time-out. Time out period used for timing out most
request/response control frame interactions, as specified
elsewhere in the LAN Emulation specification.
This time value is expressed in seconds. Corresponds to
Initial State Parameter C7."
::= { ibmOSAExpATMPortEntry 25 }
ibmOsaExpATMMaxUnknownFrameCount OBJECT-TYPE
SYNTAX Integer32 (1..10)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum Unknown Frame Count. See the description of
ibmOsaExpATMMaxUnknownFrameTime below. Corresponds to
Initial State Parameter C10."
::= { ibmOSAExpATMPortEntry 26 }
ibmOsaExpATMMaxUnknownFrameTime OBJECT-TYPE
SYNTAX Integer32 (1..60)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum Unknown Frame Time. Within the period of time
defined by the Maximum Unknown Frame Time, a LE Client
will send no more than Maximum Unknown Frame Count
frames to the BUS for a given unicast LAN Destination,
and it must also initiate the address resolution
protocol to resolve that LAN Destination. This time value
is expressed in seconds. Corresponds to Initial State
Parameter C11."
::= { ibmOSAExpATMPortEntry 27 }
ibmOsaExpATMVCCTimeoutPeriod OBJECT-TYPE
SYNTAX Integer32
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"VCC Time-out Period. A LE Client SHOULD release any
Data Direct VCC that it has not used to transmit
or receive any data frames for the length of the VCC
Time-out Period. This parameter is only meaningful for
SVC Data Direct VCCs.
This time value is expressed in seconds. The default
value is 20 minutes. A value of 0 seconds means
that the timeout period is infinite.
Negative values will be rejected by the agent.
Corresponds to Initial State Parameter C12."
::= { ibmOSAExpATMPortEntry 28 }
ibmOsaExpATMMaxRetryCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum Retry Count. A LE CLient MUST not retry a
LE_ARP_REQUEST for a given frame's LAN destination
more than Maximum Retry Count times, after the first
LE_ARP_REQUEST for that same frame's LAN destination.
Corresponds to Initial State Parameter C13."
::= { ibmOSAExpATMPortEntry 29 }
ibmOsaExpATMAgingTime OBJECT-TYPE
SYNTAX Integer32 (10..300)
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Aging Time. The maximum time that a LE Client will
maintain an entry in its LE_ARP cache in the absence
of a verification of that relationship.
This time value is expressed in seconds. Corresponds to
Initial State Parameter C17."
::= { ibmOSAExpATMPortEntry 30 }
ibmOsaExpATMForwardDelayTime OBJECT-TYPE
SYNTAX Integer32 (4..30)
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Forward Delay Time. The maximum time that a LE Client
will maintain an entry for a non-local MAC address in
its LE_ARP cache in the absence of a verification of
that relationship, as long as the Topology Change flag
C19 is true. ibmOsaExpATMForwardDelayTime SHOULD BE
less than ibmOsaExpATMAgingTIme. When it is not,
ibmOsaExpATMAgingTime governs LE_ARP aging.
This time value is expressed in seconds. Corresponds to
Initial State Parameter C18."
::= { ibmOSAExpATMPortEntry 31 }
ibmOsaExpATMExpectedARPRespTime OBJECT-TYPE
SYNTAX Integer32 (1..30)
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Expected LE_ARP Reponse Time. The maximum time that
the LEC expects an LE_ARP_REQUEST/LE_ARP_RESPONSE
cycle to take. Used for retries and verifies. This
time value is expressed in seconds.
Corresponds to Initial State Parameter C20."
::= { ibmOSAExpATMPortEntry 32 }
ibmOsaExpATMFlushTimeout OBJECT-TYPE
SYNTAX Integer32 (1..4)
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Flush Time-out. Time limit to wait to receive a
LE_FLUSH_RESPONSE after the LE_FLUSH_REQUEST has been
sent before taking recovery action. This time value
is expressed in seconds. Corresponds to Initial State
Parameter C21."
::= { ibmOSAExpATMPortEntry 33 }
ibmOsaExpATMPathSwitchingDelay OBJECT-TYPE
SYNTAX Integer32 (1..8)
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Path Switching Delay. The time since sending a
frame to the BUS after which the LE Client may
assume that the frame has been either discarded
or delivered to the recipient. May be used to
bypass the Flush protocol. This time value is
expressed in seconds. Corresponds to Initial State
Parameter C22."
::= { ibmOSAExpATMPortEntry 34 }
ibmOsaExpATMLocalSegmentID OBJECT-TYPE
SYNTAX Integer32 (0..4095)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Local Segment ID. The segment ID of the emulated LAN.
This is only required for IEEE 802.5 clients that
are Source Routing bridges. Corresponds to Initial
State Parameter C23."
::= { ibmOSAExpATMPortEntry 35 }
ibmOsaExpATMMltcstSendVCCType OBJECT-TYPE
SYNTAX INTEGER {
bestEffort(1),
variableBitRate(2),
constantBitRate(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Multicast Send VCC Type. Signalling parameter that
SHOULD be used by the LE Client when establishing
the Multicast Send VCC. This is the method to be used
by the LE Client when specifying traffic parameters
when it sets up the Multicast Send VCC for this
emulated LAN. Corresponds to Initial State
Parameter C24."
::= { ibmOSAExpATMPortEntry 36 }
ibmOsaExpATMMltcstSendVCCAvgRate OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Multicast Send VCC AvgRate. Signalling parameter
that SHOULD be used by the LE Client when estabishing
the Multicast Send VCC. Forward and Backward Sustained
Cell Rate to be requested by LE Client when setting
up Multicast Send VCC, if using Variable bit rate
codings. Corresponds to Initial State Parameter C25."
::= { ibmOSAExpATMPortEntry 37 }
ibmOsaExpATMMcastSendVCCPeakRate OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Multicast Send VCC PeakRate. Signalling parameter that
SHOULD be used by the LE Client when establishing the
Multicast Send VCC. Forward and Backward Peak Cell
Rate to be requested by LE Client when setting up the
Multicast Send VCC when using either Variable or
Constant bit rate codings. Corresponds to Initial
State Parameter C26."
::= { ibmOSAExpATMPortEntry 38 }
ibmOsaExpATMConnectCompleteTimer OBJECT-TYPE
SYNTAX Integer32 (1..10)
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Connection Complete Timer. Optional. In Connection
Establish ment this is the time period in which
data or a READY_IND message is expected from a Calling
Party. This time value is expressed in seconds.
Corresponds to Initial State Parameter C28."
::= { ibmOSAExpATMPortEntry 39 }
ibmOsaExpATMClientATMAddress OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"LE Client's ATM Addresses. The primary ATM address
of this LAN Emulation Client. This address is used
to establish the Control Direct and Multicast Send
VCCs, and may also be used to set up Data Direct
VCCs. A client may have additional ATM addresses
for use with Data Direct VCCs.
Corresponds to Initial State Parameter C1."
::= { ibmOSAExpATMPortEntry 40 }
ibmOsaExpATMClientIdentifier OBJECT-TYPE
SYNTAX Integer32 (0..65279)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"LE Client Identifier. Each LE Client requires a
LE Client Identifier (LECID) assigned by the LE
Server during the Join phase. The LECID is placed
in control requests by the LE Client and MAY be used
for echo suppression on multicast data frames sent
by that LE Client. This value MUST NOT change without
terminating the LE Client and returning to the Initial
state. A valid LECID MUST be in the range X'0001'
through X'FEFF'. The value of this object is only
meaningful for a LEC that is connected to a LES. For
a LEC which does not belong to an emulated LAN, the
value of this object is defined to be 0. Corresponds to
Initial State Parameter C14."
::= { ibmOSAExpATMPortEntry 41 }
ibmOsaExpATMClientCurrentState OBJECT-TYPE
SYNTAX INTEGER {
initialState (1),
lecsConnect (2),
configure (3),
join (4),
initialRegistration (5),
busConnect (6),
operational (7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current state of the LAN Emulation Client. Note
that 'ifOperStatus' is defined to be 'up' when, and
only when, this field is 'operational'."
::= { ibmOSAExpATMPortEntry 42 }
ibmOsaExpATMLastFailureRespCode OBJECT-TYPE
SYNTAX INTEGER {
none (1),
timeout (2),
undefinedError (3),
versionNotSupported (4),
invalidRequestParameters (5),
duplicateLanDestination (6),
duplicateAtmAddress (7),
insufficientResources (8),
accessDenied (9),
invalidRequesterId (10),
invalidLanDestination (11),
invalidAtmAddress (12),
noConfiguration (13),
leConfigureError (14),
insufficientInformation (15)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Status code from the last failed Configure response
or Join response. Failed responses are those for which
the LE_CONFIGURE_RESPONSE / LE_JOIN_RESPONSE frame
contains a non-zero code, or fails to arrive within a
timeout period. If none of this client's requests have
failed, this object has the value 'none'. If the
failed response contained a STATUS code that is not
defined in the LAN Emulation specification, this
object has the value 'undefinedError'. The value
'timeout' is self explanatory. Other failure codes
correspond to those defined in the specification,
although they may have different numeric values."
::= { ibmOSAExpATMPortEntry 43 }
ibmOsaExpATMLastFailureState OBJECT-TYPE
SYNTAX INTEGER {
initialState (1),
lecsConnect (2),
configure (3),
join (4),
initialRegistration (5),
busConnect (6),
operational (7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The state this client was in when it updated the
'ibmOsaExpATMLastFailureRespCode'.
If 'ibmOsaExpATMLastFailureRespCode'
is 'none', this object has the value initialState(1)."
::= { ibmOSAExpATMPortEntry 44 }
ibmOsaExpATMProtocol OBJECT-TYPE
SYNTAX Integer32 (1..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The LAN Emulation protocol which this client supports,
and specifies in its LE_JOIN_REQUESTs."
::= { ibmOSAExpATMPortEntry 45 }
ibmOsaExpATMLeVersion OBJECT-TYPE
SYNTAX Integer32 (1..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The LAN Emulation protocol version which this client
supports, and specifies in its LE_JOIN_REQUESTs."
::= { ibmOSAExpATMPortEntry 46 }
ibmOsaExpATMTopologyChange OBJECT-TYPE
SYNTAX INTEGER {
true (1),
false (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Topology Change. Boolean indication that the LE Client
is using the Forward Delay Time C18, instead of the
Aging Time C17, to age non-local entries in its LE_ARP
cache C16. For a client which is not connected to the
LES, this object is defined to have the value 'false'.
Corresponds to Initial State Parameter C19."
::= { ibmOSAExpATMPortEntry 47 }
ibmOsaExpATMConfigServerATMAddr OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ATM address of the LAN Emulation Configuration
Server (if known) or 0 (otherwise). In LAN
Emulation MIB, the OCTET STRING is either 0 length
or 20 octets.
For OSA-ATM, this Address has been
changed to a constant 20 octets, with the value 0
equivalent to the 0 length OCTET STRING."
::= { ibmOSAExpATMPortEntry 48 }
ibmOsaExpATMConfigSource OBJECT-TYPE
SYNTAX INTEGER {
gotAddressViaIlmi(1),
usedWellKnownAddress(2),
usedLecsPvc(3),
didNotUseLecs(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates whether this LAN Emulation Client used the
LAN Emulation Configuration Server, and, if so, what
method it used to establish the Configuration Direct VCC"
::= { ibmOSAExpATMPortEntry 49 }
ibmOsaExpATMProxyClient OBJECT-TYPE
SYNTAX INTEGER {
true (1),
false (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates whether this client is acting as a proxy.
Proxy clients are allowed to represent unregistered
MAC addresses, and receive copies of LE_ARP_REQUEST
frames for such addresses. Corresponds to Initial
State Parameter C4."
::= { ibmOSAExpATMPortEntry 50 }
ibmOsaExpATMLePDUOctetsInbound OBJECT-TYPE
SYNTAX Counter64
UNITS "octets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Le PDU Octets received"
::= { ibmOSAExpATMPortEntry 51 }
ibmOsaExpATMNonErrLePDUDiscIn OBJECT-TYPE
SYNTAX Counter32
UNITS "octets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Non Error Le PDU Octets received"
::= { ibmOSAExpATMPortEntry 52 }
ibmOsaExpATMErrLePDUDiscIn OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Errored Le PDU Discards received"
::= { ibmOSAExpATMPortEntry 53 }
ibmOsaExpATMLePDUOctetsOutbound OBJECT-TYPE
SYNTAX Counter64
UNITS "octets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Le PDU Discards sent"
::= { ibmOSAExpATMPortEntry 54 }
ibmOsaExpATMNonErrLePDUDiscOut OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Non Error Le PDU Discards sent"
::= { ibmOSAExpATMPortEntry 55 }
ibmOsaExpATMErrLePDUDiscOut OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Errored Le PDU Discards sent"
::= { ibmOSAExpATMPortEntry 56 }
ibmOsaExpATMLeARPRequestsOut OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of LE ARP Requests sent"
::= { ibmOSAExpATMPortEntry 57 }
ibmOsaExpATMLeARPRequestsIn OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of LE ARP Requests received over the LUNI
by this LAN Emulation Client. Requests may arrive
on the Control Direct VCC or on the Control Distribute
VCC, depending upon how the LES is implemented and the
chances it has had for learning. This counter covers
both VCCs."
::= { ibmOSAExpATMPortEntry 58 }
ibmOsaExpATMLeARPRepliesOut OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of LE ARP Responses sent over the LUNI
by this LAN Emulation Client."
::= { ibmOSAExpATMPortEntry 59 }
ibmOsaExpATMLeARPRepliesIn OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of LE ARP Responses received over the
LUNI by this LAN Emulation Client. This count includes
all such replies, whether solicited or not. Replies
may arrive on the Control Direct VCC or on the
Control Distribute VCC, depending upon how the LES
is implemented. This counter covers both VCCs."
::= { ibmOSAExpATMPortEntry 60 }
ibmOsaExpATMControlFramesOut OBJECT-TYPE
SYNTAX Counter32
UNITS "packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of control packets sent by this
LAN Emulation Client over the LUNI."
::= { ibmOSAExpATMPortEntry 61 }
ibmOsaExpATMControlFramesIn OBJECT-TYPE
SYNTAX Counter32
UNITS "packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of control packets received by this
LAN Emulation Client over the LUNI."
::= { ibmOSAExpATMPortEntry 62 }
ibmOsaExpATMSVCFailures OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of outgoing LAN Emulation SVCs
which this client tried, but failed, to open;
incoming LAN Emulation SVCs which this client tried,
but failed to establish; and incoming LAN Emulation
SVCs which this client rejected for protocol or
security reasons."
::= { ibmOSAExpATMPortEntry 63 }
ibmOsaExpATMConfigDirectIntfc OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The interface associated with the Configuration
Direct VCC. If no Configuration Direct VCC exists,
this object has the value 0. Otherwise, the objects
( ibmOsaExpATMConfigDirectIntfc,
ibmOsaExpATMConfigDirectVPI,
ibmOsaExpATMConfigDirectVCI) identify the circuit."
::= { ibmOSAExpATMPortEntry 64 }
ibmOsaExpATMConfigDirectVPI OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If the Configuration Direct VCC exists, this object
contains the VPI which identifies that VCC at the
point where it connects to this LE client.
Otherwise, this object has the value 0."
::= { ibmOSAExpATMPortEntry 65 }
ibmOsaExpATMConfigDirectVCI OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If the Configuration Direct VCC exists, this
object contains the VCI which identifies that
VCC at the point where it connects to this LE
client. Otherwise, this object has the value 0."
::= { ibmOSAExpATMPortEntry 66 }
ibmOsaExpATMControlDirectIntfc OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The interface associated with the Control Direct
VCC. If no Control Direct VCC exists, this object
has the value 0. Otherwise, the objects
( ibmOsaExpATMConfigDirectIntfc,
ibmOsaExpATMConfigDirectVPI,
ibmOsaExpATMConfigDirectVCI) identify the circuit."
::= { ibmOSAExpATMPortEntry 67 }
ibmOsaExpATMControlDirectVPI OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If the Control Direct VCC exists, this object
contains the VPI which identifies that VCC at
the point where it connects to this LE client.
Otherwise, this object has the value 0."
::= { ibmOSAExpATMPortEntry 68 }
ibmOsaExpATMControlDirectVCI OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If the Control Direct VCC exists, this object
contains the VCI which identifies that VCC at
the point where it connects to this LE client.
Otherwise, this object has the value 0."
::= { ibmOSAExpATMPortEntry 69 }
ibmOsaExpATMControlDistIntfc OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The interface associated with the Control Distribute
VCC. If no Control Distribute VCC has been set up to
this client, this object has the value 0. Otherwise,
the objects ( ibmOsaExpATMControlDistIntfc,
ibmOsaExpATMControlDistributeVPI.
ibmOsaExpATMControlDistributeVCI) identify the circuit."
::= { ibmOSAExpATMPortEntry 70 }
ibmOsaExpATMControlDistributeVPI OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If the Control Distribute VCC exists, this object
contains the VPI which identifies that VCC at the
point where it connects to this LE client.
Otherwise, this object has the value 0."
::= { ibmOSAExpATMPortEntry 71 }
ibmOsaExpATMControlDistributeVCI OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If the Control Distribute VCC exists, this object
contains the VCI which identifies that VCC at the
point where it connects to this LE client.
Otherwise, this object contains the value 0."
::= { ibmOSAExpATMPortEntry 72 }
ibmOsaExpATMMulticastSendIntfc OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The interface associated with the Multicast Send
VCC. If no Multicast Send VCC exists, this object
has the value 0. Otherwise, the objects
( ibmOsaExpATMMulticastSendIntfc,
ibmOsaExpATMMulticastSendVPI,
ibmOsaExpATMMulticastSendVCI) identify the circuit."
::= { ibmOSAExpATMPortEntry 73 }
ibmOsaExpATMMulticastSendVPI OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If the Multicast Send VCC exists, this object
contains the VPI which identifies that VCC at
the point where it connects to this LE client.
Otherwise, this object has the value 0."
::= { ibmOSAExpATMPortEntry 74 }
ibmOsaExpATMMulticastSendVCI OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If the Multicast Send VCC exists, this object
contains the VCI which identifies that VCC at
the point where it connects to this LE client.
Otherwise, this object has the value 0."
::= { ibmOSAExpATMPortEntry 75 }
ibmOsaExpATMMulticastFwdIntfc OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The interface associated with the Multicast
Forward VCC. If no Multicast Forward VCC has
been set up to this client, this object has the
value 0. Otherwise, the objects
( ibmOsaExpATMMulticastFwdIntfc,
ibmOsaExpATMMulticastForwardVPI,
ibmOsaExpATMMulticastForwardVCI) identify the circuit."
::= { ibmOSAExpATMPortEntry 76 }
ibmOsaExpATMMulticastForwardVPI OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If the Multicast Forward VCC exists, this object
contains the VPI which identifies that VCC at the
point where it connects to this LE client.
Otherwise, this object has the value 0."
::= { ibmOSAExpATMPortEntry 77 }
ibmOsaExpATMMulticastForwardVCI OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If the Multicast Forward VCC exists, this object
contains the VCI which identifies that VCC at the
point where it connects to this LE client.
Otherwise, this object has the value 0."
::= { ibmOSAExpATMPortEntry 78 }
-- Conformance information
-- Compliance statements
--===================================================================
ibmOSAMibCompliances OBJECT
IDENTIFIER ::= { ibmOSAMibConformance 1 }
ibmOSAMibGroups OBJECT
IDENTIFIER ::= { ibmOSAMibConformance 2 }
--===================================================================
-- Compliance statements
--===================================================================
ibmOSAMibCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for the OSA DIrect SNMP product."
MODULE -- this module
MANDATORY-GROUPS {
ibmOSAExpChannelGroup,
ibmOSAExpPerfGroup,
ibmOSAExpPEGroup
}
GROUP ibmOSAExpEthGroup
DESCRIPTION
"The objects in this group are required for Gigabit or
Fast Ethernet features."
GROUP ibmOSAExpTRGroup
DESCRIPTION
"The objects in this group are required for OSA-Express
Token Ring features."
GROUP ibmOSAExpATMGroup
DESCRIPTION
"The objects in this group are required for OSA-Express
ATM LAN Emulation features."
::= { ibmOSAMibCompliances 1 }
--===================================================================
-- MIB groupings
--===================================================================
ibmOSAExpChannelGroup OBJECT-GROUP
OBJECTS {
ibmOSAExpChannelNumber,
ibmOSAExpChannelType,
ibmOSAExpChannelHdwLevel,
ibmOSAExpChannelSubType,
ibmOSAExpChannelShared,
ibmOSAExpChannelNodeDesc,
ibmOSAExpChannelProcCodeLevel,
ibmOSAExpChannelPCIBusUtil1Min,
ibmOSAExpChannelProcUtil1Min,
ibmOSAExpChannelPCIBusUtil5Min,
ibmOSAExpChannelProcUtil5Min,
ibmOSAExpChannelPCIBusUtilHour,
ibmOSAExpChannelProcUtilHour
}
STATUS current
DESCRIPTION
"This group comprises those objects that are related
to OSA-Express Channel support."
::= { ibmOSAMibGroups 1 }
ibmOSAExpPerfGroup OBJECT-GROUP
OBJECTS {
ibmOSAExpPerfDataLP0 ,
ibmOSAExpPerfDataLP1 ,
ibmOSAExpPerfDataLP2 ,
ibmOSAExpPerfDataLP3 ,
ibmOSAExpPerfDataLP4 ,
ibmOSAExpPerfDataLP5 ,
ibmOSAExpPerfDataLP6 ,
ibmOSAExpPerfDataLP7 ,
ibmOSAExpPerfDataLP8 ,
ibmOSAExpPerfDataLP9 ,
ibmOSAExpPerfDataLP10 ,
ibmOSAExpPerfDataLP11 ,
ibmOSAExpPerfDataLP12 ,
ibmOSAExpPerfDataLP13 ,
ibmOSAExpPerfDataLP14 ,
ibmOSAExpPerfDataLP15
}
STATUS current
DESCRIPTION
"This group comprises those objects that are related
to OSA-Express Performance data support."
::= { ibmOSAMibGroups 2 }
ibmOSAExpPEGroup OBJECT-GROUP
OBJECTS {
ibmOSAExpPEMaxSizeArpCache ,
ibmOSAExpPEArpPendingEntries ,
ibmOSAExpPEArpActiveEntries ,
ibmOSAExpPEIPEntries ,
ibmOSAExpPEMulticastEntries ,
ibmOSAExpPEMulticastData
}
STATUS current
DESCRIPTION
"This group comprises those objects that are related
to OSA-Express PE data support."
::= { ibmOSAMibGroups 3 }
ibmOSAExpEthGroup OBJECT-GROUP
OBJECTS {
ibmOsaExpEthPortNumber ,
ibmOsaExpEthPortType ,
ibmOsaExpEthLanTrafficState ,
ibmOsaExpEthServiceMode ,
ibmOsaExpEthDisabledStatus ,
ibmOsaExpEthConfigName ,
ibmOsaExpEthConfigSpeedMode ,
ibmOsaExpEthActiveSpeedMode ,
ibmOsaExpEthMacAddrActive ,
ibmOsaExpEthMacAddrBurntIn ,
ibmOsaExpEthUserData ,
ibmOsaExpEthOutPackets ,
ibmOsaExpEthInPackets ,
ibmOsaExpEthInGroupFrames ,
ibmOsaExpEthInBroadcastFrames ,
ibmOsaExpEthPortName ,
ibmOsaExpEthInUnknownIPFrames ,
ibmOsaExpEthGroupAddrTable
}
STATUS current
DESCRIPTION
"This group comprises those objects that are related
to OSA-Express Fast Ethernet and Gigabit features only"
::= { ibmOSAMibGroups 4 }
ibmOSAExpTRGroup OBJECT-GROUP
OBJECTS {
ibmOsaExpTRPortNumber ,
ibmOsaExpTRPortType ,
ibmOsaExpTRLanTrafficState ,
ibmOsaExpTRServiceMode ,
ibmOsaExpTRDisabledStatus ,
ibmOsaExpTRConfigName ,
ibmOsaExpTRMacAddrActive ,
ibmOsaExpTRMacAddrBurntIn ,
ibmOsaExpTRConfigSpeedMode ,
ibmOsaExpTRActiveSpeedMode ,
ibmOsaExpTRUserData ,
ibmOsaExpTRPortName ,
ibmOsaExpTRGroupAddrTable ,
ibmOsaExpTRFunctionalAddr ,
ibmOsaExpTRRingStatus ,
ibmOsaExpTRAllowAccessPriority ,
ibmOsaExpTREarlyTokenRelease ,
ibmOsaExpTRBeaconingAddress ,
ibmOsaExpTRUpstreamNeighbor ,
ibmOsaExpTRRingState ,
ibmOsaExpTRRingOpenStatus ,
ibmOsaExpTRPacketsTransmitted ,
ibmOsaExpTRPacketsReceived ,
ibmOsaExpTRLineErrorCount ,
ibmOsaExpTRBurstErrorCount ,
ibmOsaExpTRACErrorCount ,
ibmOsaExpTRAbortTransErrorCount ,
ibmOsaExpTRInternalErrorCount ,
ibmOsaExpTRLostFrameErrorCount ,
ibmOsaExpTRRcvCongestionCount ,
ibmOsaExpTRFrameCopyErrorCount ,
ibmOsaExpTRTokenErrorCount ,
ibmOsaExpTRFullDuplexErrorCount ,
ibmOsaExpTRSoftErrorCount ,
ibmOsaExpTRHardErrorCount ,
ibmOsaExpTRSignalLossErrorCount ,
ibmOsaExpTRTransmitBeaconCount ,
ibmOsaExpTRRecoveryCounter ,
ibmOsaExpTRLobeWireFaultCount ,
ibmOsaExpTRRemoveReceivedCount ,
ibmOsaExpTRSingleStationCount
}
STATUS current
DESCRIPTION
"This group comprises those objects that are related
to OSA-Express Token Ring feature only"
::= { ibmOSAMibGroups 5 }
ibmOSAExpATMGroup OBJECT-GROUP
OBJECTS {
ibmOsaExpATMPortNumber ,
ibmOsaExpATMPortType ,
ibmOsaExpATMLanTrafficState ,
ibmOsaExpATMServiceMode ,
ibmOsaExpATMDisabledStatus ,
ibmOsaExpATMConfigName ,
ibmOsaExpATMMacAddrActive ,
ibmOsaExpATMMacAddrBurntIn ,
ibmOsaExpATMUserData ,
ibmOsaExpATMPortName ,
ibmOsaExpATMGroupMacAddrTable ,
ibmOsaExpATMIBMEnhancedMode ,
ibmOsaExpATMBestEffortPeakRate ,
ibmOsaExpATMConfigMode ,
ibmOsaExpATMConfigLanType ,
ibmOsaExpATMActualLanType ,
ibmOsaExpATMConfigMaxDataFrmSz ,
ibmOsaExpATMActualMaxDataFrmSz ,
ibmOsaExpATMConfigELANName ,
ibmOsaExpATMActualELANName ,
ibmOsaExpATMConfigLESATMAddress ,
ibmOsaExpATMActualLESATMAddress ,
ibmOsaExpATMControlTimeout ,
ibmOsaExpATMMaxUnknownFrameCount ,
ibmOsaExpATMMaxUnknownFrameTime ,
ibmOsaExpATMVCCTimeoutPeriod ,
ibmOsaExpATMMaxRetryCount ,
ibmOsaExpATMAgingTime ,
ibmOsaExpATMForwardDelayTime ,
ibmOsaExpATMExpectedARPRespTime ,
ibmOsaExpATMFlushTimeout ,
ibmOsaExpATMPathSwitchingDelay ,
ibmOsaExpATMLocalSegmentID ,
ibmOsaExpATMMltcstSendVCCType ,
ibmOsaExpATMMltcstSendVCCAvgRate ,
ibmOsaExpATMMcastSendVCCPeakRate ,
ibmOsaExpATMConnectCompleteTimer ,
ibmOsaExpATMClientATMAddress ,
ibmOsaExpATMClientIdentifier ,
ibmOsaExpATMClientCurrentState ,
ibmOsaExpATMLastFailureRespCode ,
ibmOsaExpATMLastFailureState ,
ibmOsaExpATMProtocol ,
ibmOsaExpATMLeVersion ,
ibmOsaExpATMTopologyChange ,
ibmOsaExpATMConfigServerATMAddr ,
ibmOsaExpATMConfigSource ,
ibmOsaExpATMProxyClient ,
ibmOsaExpATMLePDUOctetsInbound ,
ibmOsaExpATMNonErrLePDUDiscIn ,
ibmOsaExpATMErrLePDUDiscIn ,
ibmOsaExpATMLePDUOctetsOutbound ,
ibmOsaExpATMNonErrLePDUDiscOut ,
ibmOsaExpATMErrLePDUDiscOut ,
ibmOsaExpATMLeARPRequestsOut ,
ibmOsaExpATMLeARPRequestsIn ,
ibmOsaExpATMLeARPRepliesOut ,
ibmOsaExpATMLeARPRepliesIn ,
ibmOsaExpATMControlFramesOut ,
ibmOsaExpATMControlFramesIn ,
ibmOsaExpATMSVCFailures ,
ibmOsaExpATMConfigDirectIntfc ,
ibmOsaExpATMConfigDirectVPI ,
ibmOsaExpATMConfigDirectVCI ,
ibmOsaExpATMControlDirectIntfc ,
ibmOsaExpATMControlDirectVPI ,
ibmOsaExpATMControlDirectVCI ,
ibmOsaExpATMControlDistIntfc ,
ibmOsaExpATMControlDistributeVPI ,
ibmOsaExpATMControlDistributeVCI ,
ibmOsaExpATMMulticastSendIntfc ,
ibmOsaExpATMMulticastSendVPI ,
ibmOsaExpATMMulticastSendVCI ,
ibmOsaExpATMMulticastFwdIntfc ,
ibmOsaExpATMMulticastForwardVPI ,
ibmOsaExpATMMulticastForwardVCI
}
STATUS current
DESCRIPTION
"This group comprises those objects that are related
to OSA-Express ATM LAN Emulation feature only"
::= { ibmOSAMibGroups 7 }
END
|