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
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
|
-- Mib files packaged on Tue Mar 17 11:28:59 EDT 2015 for Storage Array Firmware V7.1.5 (R408054)
EQLMEMBER-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, IpAddress, Integer32, enterprises,TimeTicks,Unsigned32, Counter32, Counter64, Gauge32,
NOTIFICATION-TYPE
FROM SNMPv2-SMI
DisplayString, RowStatus, TruthValue
FROM SNMPv2-TC
equalLogic
FROM EQUALLOGIC-SMI
InetAddressType, InetAddress
FROM INET-ADDRESS-MIB -- RFC2851
eqlGroupId, UTFString, eqlStorageGroupAdminAccountIndex
FROM EQLGROUP-MIB;
eqlmemberModule MODULE-IDENTITY
LAST-UPDATED "201503171528Z"
ORGANIZATION "EqualLogic Inc."
CONTACT-INFO
"Contact: Customer Support
Postal: Dell Inc
300 Innovative Way, Suite 301, Nashua, NH 03062
Tel: +1 603-579-9762
E-mail: US-NH-CS-TechnicalSupport@dell.com
WEB: www.equallogic.com"
DESCRIPTION
"Dell Inc. Storage Array member information
Copyright (c) 2002-2012 by Dell Inc.
All rights reserved. This software may not be copied, disclosed,
transferred, or used except in accordance with a license granted
by Dell Inc. This software embodies proprietary information
and trade secrets of Dell Inc.
"
-- Revision history, in reverse chronological order
REVISION "201209220000Z" -- 2012-09-22T00:00:00
DESCRIPTION "Add eqlTaggedHeatProfileInfoTable, eqlTaggedHeatProfileBinTable."
REVISION "201208150000Z" -- 2012-08-15T00:00:00
DESCRIPTION "Add eqlDriveGroupHeatProfileInfoTable, eqlDriveGroupHeatProfileBinTable."
REVISION "201108090000Z" -- 2011-08-09T00:00:00
DESCRIPTION "Add eqlDriveGroupStatisticsTable."
REVISION "200209060000Z" -- 2002-09-06T00:00:00
DESCRIPTION "Initial revision"
::= { enterprises equalLogic(12740) 2 }
eqlmemberObjects OBJECT IDENTIFIER ::= { eqlmemberModule 1 }
eqlmemberNotifications OBJECT IDENTIFIER ::= { eqlmemberModule 2 }
eqlmemberConformance OBJECT IDENTIFIER ::= { eqlmemberModule 3 }
EqlMemberSEDShareType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"A share of an SED encryption key."
SYNTAX OCTET STRING (SIZE (0..163))
eqlMemberTable OBJECT-TYPE
SYNTAX SEQUENCE OF EqlMemberEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "EqualLogic-Persistent Storage Group Member Table"
::= { eqlmemberObjects 1 }
eqlMemberEntry OBJECT-TYPE
SYNTAX EqlMemberEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry (row) containing member info"
INDEX { eqlGroupId, eqlMemberIndex }
::= { eqlMemberTable 1 }
EqlMemberEntry ::=
SEQUENCE {
eqlMemberIndex Unsigned32,
eqlMemberDateAndTime Counter32,
eqlMemberTimeZone INTEGER,
eqlMemberAdjustDaylightSavTime INTEGER,
eqlMemberDefaultRoute IpAddress,
eqlMemberUUID OCTET STRING,
eqlMemberName DisplayString,
eqlMemberSite DisplayString,
eqlMemberDescription UTFString,
eqlMemberRowStatus RowStatus,
eqlMemberState INTEGER,
eqlMemberPolicySingleControllerSafe INTEGER,
eqlMemberPolicyLowBatterySafe INTEGER,
eqlMemberVersion Unsigned32,
eqlMemberDelayDataMove INTEGER,
eqlMemberDefaultInetRouteType InetAddressType,
eqlMemberDefaultInetRoute InetAddress,
eqlMemberDriveMirroring INTEGER,
eqlMemberProfileIndex Unsigned32,
eqlMemberControllerType DisplayString,
eqlMemberControllerMajorVersion Unsigned32,
eqlMemberControllerMinorVersion Unsigned32,
eqlMemberControllerMaintenanceVersion Unsigned32,
eqlMemberCompressionCapable TruthValue
}
eqlMemberIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This field unique identifies an array within a group."
::= { eqlMemberEntry 1 }
eqlMemberDateAndTime OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This field is dynamic, it contains the date and time for the array.
There is no default value."
::= { eqlMemberEntry 2}
eqlMemberTimeZone OBJECT-TYPE
SYNTAX INTEGER {
hst(1),
ast(2),
pst(3),
pnt(4),
mst(5),
cst(6),
est(7),
iet(8),
prt(9),
gmt(10),
ect(11),
eet(12),
eat(13),
met(14),
net(15),
plt(16),
ist(17),
bst(18),
vst(19),
ctt(20),
jst(21),
act(22),
aet(23),
sst(24),
nst(25),
mit(26),
cnt(27),
agt(28),
bet(29),
cat(30)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The field specifies the default timezone for the group.
This can be overwritten on a per Array basis. The default is EST.
We need to file in all the supported TZ. For now we punt and do GMT as the catch all."
DEFVAL { est }
::= { eqlMemberEntry 3}
eqlMemberAdjustDaylightSavTime OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This field specifies whether or not dayLight savings time should be applied to the time.
The default value is enabled."
DEFVAL { enabled }
::= { eqlMemberEntry 4}
eqlMemberDefaultRoute OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This field is deprecated and will be unsupported in the next release."
::= { eqlMemberEntry 5}
eqlMemberSite OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This field specifies the site where the volume res ides.
Sites are defined on a per array basis.
Sites are used to define where primary and secondary copies of volume mirror reside.
The default is the default site."
DEFVAL { "default" }
::= { eqlMemberEntry 6}
eqlMemberDescription OBJECT-TYPE
SYNTAX UTFString (SIZE (0..64))
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This field contains a description of the array.
For example the location of the array. There is no default."
::= { eqlMemberEntry 7}
eqlMemberUUID OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "EQL-SECONDARY-KEY
This field is for internal use only."
::= { eqlMemberEntry 8}
eqlMemberName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..64))
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This field specifies the name of the array.
This name must be unique within the group.
It can be a DNS name, though it is not required to be one. There is no default."
::= { eqlMemberEntry 9}
eqlMemberRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This RowStatus is used only to delete a member.
The row in this table could be created only by the subsystem."
::= { eqlMemberEntry 10 }
eqlMemberState OBJECT-TYPE
SYNTAX INTEGER {
on-line(1),
off-line(2),
vacate(3),
vacated(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The field specifies the desired state of the array.
Currently setting this value to vacate is the only operation that is
supported."
DEFVAL { on-line }
::= { eqlMemberEntry 11}
eqlMemberPolicySingleControllerSafe OBJECT-TYPE
SYNTAX INTEGER {
safe-enabled(1),
safe-disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This field specifies the cache policy if we boot with only one CM."
DEFVAL { safe-enabled }
::= { eqlMemberEntry 12}
eqlMemberPolicyLowBatterySafe OBJECT-TYPE
SYNTAX INTEGER {
safe-enabled(1),
safe-disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This field specifies the cache policy if the battery charge is below tolerance."
DEFVAL { safe-enabled }
::= { eqlMemberEntry 13}
eqlMemberVersion OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This field specifies the compatibility level of a member."
::= { eqlMemberEntry 14 }
eqlMemberDelayDataMove OBJECT-TYPE
SYNTAX INTEGER {
unconfigured(0),
wait(1),
use-member-space(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "When a new member is added to the group the value of this column will be zero(unconfigured).
Before configuring raid-policy , this value must be set to wait(1) or use-member-space(2).
The value can be changed from wait(1) to use-member-space(2)
But once set to use-member-space, it cannot be changed back.
"
DEFVAL { unconfigured }
::= { eqlMemberEntry 15 }
eqlMemberDefaultInetRouteType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This field is used to indicate the default gateway for the group.
This value can be overriden on a per array basis.
This field contains the address of the local router used to forward network traffic
beyond the local subnet. Gateways are used to connect multiple subnets.
There is no default value for this entry."
::= { eqlMemberEntry 16 }
eqlMemberDefaultInetRoute OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This field is used to indicate the default gateway for the group.
This value can be overriden on a per array basis.
This field contains the address of the local router used to forward network traffic
beyond the local subnet. Gateways are used to connect multiple subnets.
There is no default value for this entry."
::= { eqlMemberEntry 17 }
eqlMemberDriveMirroring OBJECT-TYPE
SYNTAX INTEGER {
enabled(0),
disabled(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "On disk drive failures, this value is checked for mirroring the data onto the spare drive.
The value can be changed from enabled(0) to disabled(1) and vice-versa
"
DEFVAL { enabled }
::= { eqlMemberEntry 18 }
eqlMemberProfileIndex OBJECT-TYPE
SYNTAX Unsigned32(1..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field represents the profile identifier supported by this member."
DEFVAL { 1 }
::= { eqlMemberEntry 19 }
eqlMemberControllerType OBJECT-TYPE
SYNTAX DisplayString( SIZE( 0..32 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This variable specifies the type of the active controller module on this member. Ex: Type II"
DEFVAL {"unknown"}
::= { eqlMemberEntry 20 }
eqlMemberControllerMajorVersion OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This variable specifies the major version number of the
software present on the active controller module."
DEFVAL { 1 }
::= { eqlMemberEntry 21 }
eqlMemberControllerMinorVersion OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This variable specifies the minor version number of the
software present on the active controller module."
DEFVAL { 1 }
::= { eqlMemberEntry 22 }
eqlMemberControllerMaintenanceVersion OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This variable specifies the maintenance version number of the
software present on the active controller module."
DEFVAL { 0 }
::= { eqlMemberEntry 23 }
eqlMemberCompressionCapable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This variable specifies if the member is capable of supporting compression."
DEFVAL { false }
::= { eqlMemberEntry 24 }
--**************************************************************************
eqlMemberStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF EqlMemberStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "EqualLogic-Dynamic Member Status Table"
::= { eqlmemberObjects 3 }
eqlMemberStatusEntry OBJECT-TYPE
SYNTAX EqlMemberStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry (row) containing member status info"
INDEX { eqlGroupId, eqlMemberIndex }
::= { eqlMemberStatusTable 1 }
EqlMemberStatusEntry ::=
SEQUENCE {
eqlMemberStatusTotalSpace Integer32,
eqlMemberStatusTotalSpaceUsed Integer32,
eqlMemberStatusModel DisplayString,
eqlMemberStatusSerialNumber DisplayString,
eqlMemberStatusNumberOfControllers INTEGER,
eqlMemberStatusNumberOfDisks Integer32,
eqlMemberStatusNumberOfSpares Integer32,
eqlMemberStatusCacheSize Integer32,
eqlMemberStatusCacheMode INTEGER,
eqlMemberStatusNumberOfConnections Integer32,
eqlMemberStatusAverageTemp Integer32,
eqlMemberStatusTempStatus INTEGER,
eqlMemberStatusBackplaneTempSensor1 Integer32,
eqlMemberStatusBackplaneTempSensor2 Integer32,
eqlMemberStatusPowerSupply1Status INTEGER,
eqlMemberStatusPowerSupply2Status INTEGER,
eqlMemberStatusTrayOneFanOneSpeed Integer32,
eqlMemberStatusTrayOneFanTwoSpeed Integer32,
eqlMemberStatusTrayTwoFanOneSpeed Integer32,
eqlMemberStatusTrayTwoFanTwoSpeed Integer32,
eqlMemberStatusPowerSupplyOneFanStatus INTEGER,
eqlMemberStatusPowerSupplyTwoFanStatus INTEGER,
eqlMemberStatusRaidStatus INTEGER,
eqlMemberStatusRaidPercentage Integer32,
eqlMemberStatusLostRaidBlocks INTEGER,
eqlMemberStatusHealth Integer32, -- deprecated by new health tables in v1.1
eqlMemberStatusShortId Integer32
-- This table is deprecated and new tables for Storage, Chassis, RAID etc... are added!!!
-- Don't add any more columns here
}
eqlMemberStatusTotalSpace OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the total disk space in MBs on the this array."
::= { eqlMemberStatusEntry 1}
eqlMemberStatusTotalSpaceUsed OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the total disk space in MBs allocated to volume data
for this array."
::= { eqlMemberStatusEntry 2}
eqlMemberStatusModel OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the model number for the array."
-- .jpmfix - acutally model of active CM
::= { eqlMemberStatusEntry 3}
eqlMemberStatusSerialNumber OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the serial number for the array."
-- -jpmfix looks like SN of active CM
::= { eqlMemberStatusEntry 4}
eqlMemberStatusNumberOfControllers OBJECT-TYPE
SYNTAX INTEGER {
single(1),
dual(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the number of Controller modules in the array."
::= { eqlMemberStatusEntry 5}
eqlMemberStatusNumberOfDisks OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the number of disks installed in the array."
::= { eqlMemberStatusEntry 6}
eqlMemberStatusNumberOfSpares OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the number disks allocated as spares in an array."
::= { eqlMemberStatusEntry 7}
eqlMemberStatusCacheSize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The field specifies the size in MB of the read/write cache within the array."
::= { eqlMemberStatusEntry 8}
eqlMemberStatusCacheMode OBJECT-TYPE
SYNTAX INTEGER {
write-thru(1),
write-back(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the mode the cache is in within the array.
The default is write-back. The array will be set to write-thru on battery failure."
DEFVAL { write-back }
::= { eqlMemberStatusEntry 9}
eqlMemberStatusNumberOfConnections OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the number of iSCSI initiators which are connected to this array."
::= { eqlMemberStatusEntry 11}
eqlMemberStatusAverageTemp OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the average tempature of the array in degrees C."
::= { eqlMemberStatusEntry 12}
eqlMemberStatusTempStatus OBJECT-TYPE
SYNTAX INTEGER {
good(1),
bad(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies whether the tempatures for the array
are within acceptable tolerances.
** What are acceptable tolerances?"
::= { eqlMemberStatusEntry 13}
eqlMemberStatusBackplaneTempSensor1 OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the tempature of backplane sensor 1 in degrees C."
::= { eqlMemberStatusEntry 14}
eqlMemberStatusBackplaneTempSensor2 OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the tempature of backplane sensor 2 in degrees C."
::= { eqlMemberStatusEntry 15}
eqlMemberStatusPowerSupply1Status OBJECT-TYPE
SYNTAX INTEGER {
on(1),
no-power(2),
failed (3),
fan-failed (4),
not-present (5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the state of the first power supply."
::= { eqlMemberStatusEntry 16}
eqlMemberStatusPowerSupply2Status OBJECT-TYPE
SYNTAX INTEGER {
on (1),
no-power (2),
failed (3),
fan-failed (4),
not-present (5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the state of the second power supply."
::= { eqlMemberStatusEntry 17}
eqlMemberStatusTrayOneFanOneSpeed OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The field specifies the rpm fan speed for fan tray 1, fan 1."
::= { eqlMemberStatusEntry 18}
eqlMemberStatusTrayOneFanTwoSpeed OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The field specifies the rpm fan speed for fan tray 1, fan 2."
::= { eqlMemberStatusEntry 19}
eqlMemberStatusTrayTwoFanOneSpeed OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The field specifies the rpm fan speed for fan tray 2, fan 1."
::= { eqlMemberStatusEntry 20}
eqlMemberStatusTrayTwoFanTwoSpeed OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The field specifies the rpm fan speed for fan tray 2, fan 2."
::= { eqlMemberStatusEntry 21}
eqlMemberStatusPowerSupplyOneFanStatus OBJECT-TYPE
SYNTAX INTEGER {
on-line(1),
off-line (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies whether the fan in power supply one is on-line or not."
::= {eqlMemberStatusEntry 22}
eqlMemberStatusPowerSupplyTwoFanStatus OBJECT-TYPE
SYNTAX INTEGER {
on-line(1),
off-line (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies whether the fan in power supply two is on-line or not."
::= {eqlMemberStatusEntry 23 }
eqlMemberStatusRaidStatus OBJECT-TYPE
SYNTAX INTEGER {
ok (1),
degraded (2),
verifying (3),
reconstructing (4),
failed (5),
catastrophicLoss(6),
expanding (7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the status of the raid subsystem.
This is a composite of the view of the underlying subsystems.
Status ok means things are ok.
Status degraded means we are in a degraded state, possible because no spare is available.
Status verifying means a verify pass is run, and a percent complete is available.
Status reconstructing means we are reconstructing a drive and a percent complete is available.
Status failed means we had a failure while we were up, possibly a drive failed and we have
no spare.
Status catastrophicLoss may not be visible to the user since the member may not be able to
bootup. It means we need administrator intervention to correct the problem.
"
::= {eqlMemberStatusEntry 24 }
eqlMemberStatusRaidPercentage OBJECT-TYPE
SYNTAX Integer32 (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the percentage complete when the eqlMemberStatusRaidStatus is verifying
or reconstructing."
::= {eqlMemberStatusEntry 25 }
eqlMemberStatusLostRaidBlocks OBJECT-TYPE
SYNTAX INTEGER {
true (1),
false (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies whether we have lost blocks in the raid array which
the user may want to clear."
::= {eqlMemberStatusEntry 26 }
eqlMemberStatusHealth OBJECT-TYPE
SYNTAX Integer32 (0..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This field specifies what the overall health of the member
is on a scale of 0(dead) to 100(healthy)
-- deprecated by new health tables in v1.1"
::= {eqlMemberStatusEntry 27 }
eqlMemberStatusShortId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This field specifies short member address"
::= {eqlMemberStatusEntry 28 }
--**************************************************************************
eqlMemberInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF EqlMemberInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "EqualLogic-Dynamic Member Info Table"
::= { eqlmemberObjects 4 }
eqlMemberInfoEntry OBJECT-TYPE
SYNTAX EqlMemberInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry (row) containing member info"
INDEX { eqlGroupId, eqlTargetMemberIndex }
::= { eqlMemberInfoTable 1 }
EqlMemberInfoEntry ::=
SEQUENCE {
eqlTargetMemberIndex Integer32,
eqlMemberInfoStatus INTEGER
}
eqlTargetMemberIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION " This is a duplication of eqlMemberIndex just to make our code generation happy."
::= { eqlMemberInfoEntry 1}
eqlMemberInfoStatus OBJECT-TYPE
SYNTAX INTEGER {
on-line(1),
off-line(2),
vacating-in-progress(3),
vacated(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION " The current state of the member."
DEFVAL { on-line }
::= { eqlMemberInfoEntry 2}
--**************************************************************************
eqlMemberHealthTable OBJECT-TYPE
SYNTAX SEQUENCE OF EqlMemberHealthEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "EqualLogic-Dynamic Member Health Table"
::= { eqlmemberObjects 5 }
eqlMemberHealthEntry OBJECT-TYPE
SYNTAX EqlMemberHealthEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry (row) containing overall member health info"
INDEX { eqlGroupId, eqlMemberIndex }
::= { eqlMemberHealthTable 1 }
EqlMemberHealthEntry ::=
SEQUENCE {
eqlMemberHealthStatus INTEGER,
eqlMemberHealthWarningConditions BITS,
eqlMemberHealthCriticalConditions BITS
}
eqlMemberHealthStatus OBJECT-TYPE
SYNTAX INTEGER {
unknown (0),
normal (1),
warning (2),
critical (3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value of this object is determinted by the severity of the
health condition state variables. The most severe state will
be reflected."
DEFVAL { unknown }
::= { eqlMemberHealthEntry 1}
-- these are the encodings based on the definitions in NetBSD/src/sys/EQL/include/emd_info.h
-- Note that snmp bits have bit 0 as the left most (or high order) bit in the octet..
-- so this struct has to be twiddled
eqlMemberHealthWarningConditions OBJECT-TYPE
SYNTAX BITS {
hwComponentFailedWarn (0), -- A non-critical hardware component has failed
powerSupplyRemoved (1), -- One of the power supplys has been removed;
controlModuleRemoved (2), -- a cm is missing....
psfanOffline (3), -- a power supply fan has failed;
fanSpeed (4), -- a fan is not operating in its normal ranges;
-- check the eqllog msgs to see the exact fan and issue
cacheSyncing (5), -- the cache is syncing, it would be unwise to power down while this is occuring
raidSetFaulted (6), --
highTemp (7), -- one or more sensors has exceeded the sensor's warning temp
raidSetLostblkEntry (8), -- the raid set has lost blocks; see the Group Admin manual
secondaryEjectSWOpen (9), -- the eject switch on the secondary controller has been opened; Please close it..
b2bFailure (10), -- board to board communication between the active and secondary CMs has failed.. Call support?
replicationNoProg (11), -- no progress in replicating a volume. Check network connectivity between partners.
raidSpareTooSmall (12), -- a drive considered a spare is too small to use
lowTemp (13), -- one or more sensors is below the sensor's warning temp range
powerSupplyFailed (14), -- one of the power supplies failed
timeOfDayClkBatteryLow (15), -- time of day clock battery is low
incorrectPhysRamSize (16), -- incorrect physical ram size
mixedMedia (17), -- drive incompatibilities present
sumoChannelCardMissing (18), -- sumo channel card missing
sumoChannelCardFailed (19), -- sumo channel card failed
batteryLessthan72hours (20), -- The battery has insufficient charge to survive a 72 hour power outage.
cpuFanNotSpinning (21), -- The CPU fan is not functioning properly
raidMoreSparesExpected (22), -- more spares are expected
raidSpareWrongType (23), -- a spare if the wrong type of spare
raidSsdRaidsetHasHdd (24), -- SSD RAIDset has a HDD
driveNotApproved (25), -- one or more drives is not approved
noEthernetFlowControl (26), -- Ethernet flow control disabled
fanRemovedCondition (27),
smartBatteryLowCharge (28),
nandHighBadBlockCount (29), -- NAND chip on control module is reporting a large number of bad blocks.
networkStorm (30), -- Array is experiencing a network storm
batteryEndOfLifeWarning (31)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field defines possible warning health conditions and which
ones are present."
::= { eqlMemberHealthEntry 2}
eqlMemberHealthCriticalConditions OBJECT-TYPE
SYNTAX BITS {
raidSetDoubleFaulted (0), -- the raid set is double faulted; the psg wont come up without user intervention; See the admin guide
bothFanTraysRemoved (1), -- both fan trays are removed; How are you even seeing this message?
highAmbientTemp (2), -- one or more sensors has exceeded its critical temperature tthreshold
raidLostCache (3), -- The RAID driver is unable to recover the battery-backed cache. The disk array will not initialize without user intervention. See the Handling Lost Data section in the Group Administration manual for more information.
moreThanOneFanSpeedCondition(4), -- more than one fan is operating outside its normal parameters
fanTrayRemoved (5), -- a fan tray has been removed. Loss of the other fan tray will result in the PSA overheating
raidSetLostblkTableFull (6), -- the raid lost block table is full; what is the user supposed to do about this? see the admin guide?
raidDeviceIncompatible (7), -- RAID Device is incompatible with platform.
raidOrphanCache (8), -- The RAID driver has found data in the battery-backed cache with no matching disk array. Initialization will not proceed without user intervention. Call EqualLogic Support for assistance.
raidMultipleRaidSets (9), -- Multiple valid RAIDsets were found. The array cannot choose which one to initialize. Remove all but one valid RAIDset and power-cycle the array.
nVRAMBatteryFailed (10), -- The NVRAM battery has failed. The NVRAM can no longer be used.
hwComponentFailedCrit (11), -- A critical hardware component has failed
incompatControlModule (12), -- An incorrect control module has been inserted into the chassis
lowAmbientTemp (13), -- one or more sensors is below its critical temperature range
opsPanelFailure (14), -- Ops Panel is missing or broken
emmLinkFailure (15), -- Enclosure management services are unavailable
highBatteryTemperature (16), -- Cache battery temperature exceeds upper limit; battery charger is disabled.
enclosureOpenPerm (17), -- Enclosure open for a long time
sumoChannelBothMissing (18), -- Both Sumo Channel cards missing
sumoEIPFailureCOndition (19), -- EIP failed in Sumo.
sumoChannelBothFailed (20), -- Both Sumo Channel cards failed
staleMirrorDiskFailure (21), -- Stale mirror disk failure
c2fPowerModuleFailureCondition(22), -- Cache to flash power module failed
raidsedUnresolved (23), -- Raid sed is unresolved.
colossusDeniedFullPower (24), -- Colossus was denied full power. Drive I/O is unavailable.
cemiUpdateInProgress (25), -- CEMI update is in progress.
colossusCannotStart (26), -- Colossus cannot start normal operation.
multipleFansRemoved (27), -- Multiple fans removed
smartBatteryFailure (28), -- Smart Battery failure
critbit29 (29), -- available
nandFailure (30), -- NAND chip on control module failed to restore persistent data.
batteryEndOfLife (31)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field defines possible critical health conditions and which
ones are present."
::= { eqlMemberHealthEntry 3}
--**************************************************************************
eqlMemberHealthDetailsTemperatureTable OBJECT-TYPE
SYNTAX SEQUENCE OF EqlMemberHealthDetailsTemperatureEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "EqualLogic-Dynamic Member Health Details Temperature Table.
"
::= { eqlmemberObjects 6 }
eqlMemberHealthDetailsTemperatureEntry OBJECT-TYPE
SYNTAX EqlMemberHealthDetailsTemperatureEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry (row) containing member health detailed temperature info"
INDEX { eqlGroupId, eqlMemberIndex, eqlMemberHealthDetailsTempSensorIndex }
::= { eqlMemberHealthDetailsTemperatureTable 1 }
EqlMemberHealthDetailsTemperatureEntry ::=
SEQUENCE {
eqlMemberHealthDetailsTempSensorIndex INTEGER,
eqlMemberHealthDetailsTemperatureName DisplayString,
eqlMemberHealthDetailsTemperatureValue Integer32,
eqlMemberHealthDetailsTemperatureCurrentState INTEGER,
eqlMemberHealthDetailsTemperatureHighCriticalThreshold Integer32,
eqlMemberHealthDetailsTemperatureHighWarningThreshold Integer32,
eqlMemberHealthDetailsTemperatureLowCriticalThreshold Integer32,
eqlMemberHealthDetailsTemperatureLowWarningThreshold Integer32,
eqlMemberHealthDetailsTemperatureNameID Unsigned32
}
eqlMemberHealthDetailsTempSensorIndex OBJECT-TYPE
SYNTAX INTEGER {
integratedSystemTemperature(1),
backplaneSensor0(2),
backplaneSensor1(3),
controlModule0processor(4),
controlModule0chipset(5),
controlModule1processor(6),
controlModule1chipset(7),
controlModule0sasController(8),
controlModule0sasExpander(9),
controlModule0sesEnclosure(10),
controlModule1sasController(11),
controlModule1sasExpander(12),
controlModule1sesEnclosure(13),
sesOpsPanel(14),
cemi0(15),
cemi1(16),
controlModule0batteryThermistor(17),
controlModule1batteryThermistor(18),
subExpanderModule0(19),
subExpanderModule1(20),
subExpanderModule2(21),
subExpanderModule3(22),
bottomplane0d0(23),
bottomplane0d1(24),
bottomplane0d2(25),
bottomplane0d3(26),
bottomplane0d4(27),
bottomplane1d0(28),
bottomplane1d1(29),
bottomplane1d2(30),
bottomplane1d3(31),
bottomplane1d4(32),
subExpanderModule0expander0(33),
subExpanderModule0expander1(34),
subExpanderModule1expander0(35),
subExpanderModule1expander1(36),
subExpanderModule2expander0(37),
subExpanderModule2expander1(38),
subExpanderModule3expander0(39),
subExpanderModule3expander1(40)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A unique integer that denotes which temperature sensor
this entry refers to"
::= { eqlMemberHealthDetailsTemperatureEntry 1 }
eqlMemberHealthDetailsTemperatureName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the name of the sensor that we display to the user."
::= { eqlMemberHealthDetailsTemperatureEntry 2 }
eqlMemberHealthDetailsTemperatureValue OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of this object is temperature in degrees C"
DEFVAL { 0 }
::= { eqlMemberHealthDetailsTemperatureEntry 3 }
eqlMemberHealthDetailsTemperatureCurrentState OBJECT-TYPE
SYNTAX INTEGER {
unknown (0),
normal (1), -- green
warning (2), -- yellow
critical (3) -- red
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field tells us the state of the temperature sensor.
Either normal, warning or critical."
DEFVAL { unknown }
::= { eqlMemberHealthDetailsTemperatureEntry 4 }
eqlMemberHealthDetailsTemperatureHighCriticalThreshold OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "when the TemperatureValue is greater than or equal to this
variable's value the current state is set to critical."
DEFVAL { 0 }
::= { eqlMemberHealthDetailsTemperatureEntry 5 }
eqlMemberHealthDetailsTemperatureHighWarningThreshold OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "when the TemperatureValue is greater than or equal to this
variable's value and not greater than or equal to the
HighCriticalThreshold, the current state is set to warning."
DEFVAL { 0 }
::= { eqlMemberHealthDetailsTemperatureEntry 6 }
eqlMemberHealthDetailsTemperatureLowCriticalThreshold OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "when the TemperatureValue is less than or equal to this
variable's value the current state is set to critical."
DEFVAL { 0 }
::= { eqlMemberHealthDetailsTemperatureEntry 7 }
eqlMemberHealthDetailsTemperatureLowWarningThreshold OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "when the TemperatureValue is less than or equal to this
variable's value and not less than or equal to the
LowCriticalThreshold, the current state is set to warning."
DEFVAL { 0 }
::= { eqlMemberHealthDetailsTemperatureEntry 8 }
eqlMemberHealthDetailsTemperatureNameID OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the XML based name ID of the sensor that we display to the user."
::= { eqlMemberHealthDetailsTemperatureEntry 9 }
--**************************************************************************
eqlMemberHealthDetailsFanTable OBJECT-TYPE
SYNTAX SEQUENCE OF EqlMemberHealthDetailsFanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "EqualLogic-Dynamic Member Health Details Fan Table."
::= { eqlmemberObjects 7 }
eqlMemberHealthDetailsFanEntry OBJECT-TYPE
SYNTAX EqlMemberHealthDetailsFanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry (row) containing member health detailed fan info"
INDEX { eqlGroupId, eqlMemberIndex, eqlMemberHealthDetailsFanIndex }
::= { eqlMemberHealthDetailsFanTable 1 }
EqlMemberHealthDetailsFanEntry ::=
SEQUENCE {
eqlMemberHealthDetailsFanIndex INTEGER,
eqlMemberHealthDetailsFanName DisplayString,
eqlMemberHealthDetailsFanValue Unsigned32,
eqlMemberHealthDetailsFanCurrentState INTEGER,
eqlMemberHealthDetailsFanHighCriticalThreshold Unsigned32,
eqlMemberHealthDetailsFanHighWarningThreshold Unsigned32,
eqlMemberHealthDetailsFanLowCriticalThreshold Unsigned32,
eqlMemberHealthDetailsFanLowWarningThreshold Unsigned32,
eqlMemberHealthDetailsFanNameID Unsigned32
}
eqlMemberHealthDetailsFanIndex OBJECT-TYPE
SYNTAX INTEGER {
emm0fan0(1),
emm0fan1(2),
emm1fan0(3),
emm1fan1(4),
emm2fan0(5),
emm2fan1(6),
emm3fan0(7),
emm3fan1(8)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A unique integer that identifies the fan that the
corresponding entry refers to
"
::= { eqlMemberHealthDetailsFanEntry 1 }
eqlMemberHealthDetailsFanName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the name of the fan that we display to the user."
::= { eqlMemberHealthDetailsFanEntry 2 }
eqlMemberHealthDetailsFanValue OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of this object is fan speed in rpm."
DEFVAL { 0 }
::= { eqlMemberHealthDetailsFanEntry 3 }
eqlMemberHealthDetailsFanCurrentState OBJECT-TYPE
SYNTAX INTEGER {
unknown (0),
normal (1), -- green
warning (2), -- yellow
critical (3) -- red
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field tells us the state of the fan.
Either normal, warning or critical."
DEFVAL { unknown }
::= { eqlMemberHealthDetailsFanEntry 4 }
eqlMemberHealthDetailsFanHighCriticalThreshold OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "when the FanValue is greater than or equal to this
variable's value the current state is set to critical."
DEFVAL { 0 }
::= { eqlMemberHealthDetailsFanEntry 5 }
eqlMemberHealthDetailsFanHighWarningThreshold OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "when the FanValue is greater than or equal to this
variable's value and not greater than or equal to the
HighCriticalThreshold, the current state is set to warning."
DEFVAL { 0 }
::= { eqlMemberHealthDetailsFanEntry 6 }
eqlMemberHealthDetailsFanLowCriticalThreshold OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "when the FanValue is less than or equal to this
variable's value the current state is set to critical."
DEFVAL { 0 }
::= { eqlMemberHealthDetailsFanEntry 7 }
eqlMemberHealthDetailsFanLowWarningThreshold OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "when the FanValue is less than or equal to this
variable's value and not less than or equal to the
LowCriticalThreshold, the current state is set to warning."
DEFVAL { 0 }
::= { eqlMemberHealthDetailsFanEntry 8 }
eqlMemberHealthDetailsFanNameID OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the XML based name ID of the fan that we display to the user."
::= { eqlMemberHealthDetailsFanEntry 9 }
--**************************************************************************
eqlMemberHealthDetailsPowerSupplyTable OBJECT-TYPE
SYNTAX SEQUENCE OF EqlMemberHealthDetailsPowerSupplyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "EqualLogic-Dynamic Member Health Details Power Supply Table.
The mappng of index to power supply:
.1 = power supply 0
.2 = power supply 1
.3 = power supply 2
"
::= { eqlmemberObjects 8 }
eqlMemberHealthDetailsPowerSupplyEntry OBJECT-TYPE
SYNTAX EqlMemberHealthDetailsPowerSupplyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry (row) containing power supply status information."
INDEX { eqlGroupId, eqlMemberIndex, eqlMemberHealthDetailsPowerSupplyIndex }
::= { eqlMemberHealthDetailsPowerSupplyTable 1 }
EqlMemberHealthDetailsPowerSupplyEntry ::=
SEQUENCE {
eqlMemberHealthDetailsPowerSupplyIndex INTEGER,
eqlMemberHealthDetailsPowerSupplyName DisplayString,
eqlMemberHealthDetailsPowerSupplyCurrentState INTEGER,
eqlMemberHealthDetailsPowerSupplyFanStatus INTEGER,
eqlMemberHealthDetailsPowerSupplyFirmwareVersion DisplayString,
eqlMemberHealthDetailsPowerSupplyNameID Unsigned32
}
eqlMemberHealthDetailsPowerSupplyIndex OBJECT-TYPE
SYNTAX INTEGER {
powerSupply0(1),
powerSupply1(2),
powerSupply2(3)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Iff the power supply current state is on-and-operating,
then this field tells if the fan is operational."
::= { eqlMemberHealthDetailsPowerSupplyEntry 1 }
eqlMemberHealthDetailsPowerSupplyName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the name of the power supply that we display to the user."
::= { eqlMemberHealthDetailsPowerSupplyEntry 2 }
eqlMemberHealthDetailsPowerSupplyCurrentState OBJECT-TYPE
SYNTAX INTEGER {
on-and-operating (1),
no-ac-power (2),
failed-or-no-data (3) -- has ac but no dc out
-- or we have no data
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field tells us the state of the power supply."
DEFVAL { failed-or-no-data }
::= { eqlMemberHealthDetailsPowerSupplyEntry 3 }
eqlMemberHealthDetailsPowerSupplyFanStatus OBJECT-TYPE
SYNTAX INTEGER {
not-applicable (0),
fan-is-operational (1),
fan-not-operational (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Iff the power supply current state is on-and-operating,
then this field tells if the fan is operational."
DEFVAL { fan-not-operational }
::= { eqlMemberHealthDetailsPowerSupplyEntry 4 }
eqlMemberHealthDetailsPowerSupplyFirmwareVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies power supply firmware version.
Only available starting from Porfidio Platforms."
::= { eqlMemberHealthDetailsPowerSupplyEntry 5 }
eqlMemberHealthDetailsPowerSupplyNameID OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the XML based nameID of the power supply that we display to the user."
::= { eqlMemberHealthDetailsPowerSupplyEntry 6 }
--**************************************************************************
eqlMemberIdentificationTable OBJECT-TYPE
SYNTAX SEQUENCE OF EqlMemberIdentificationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION " EqualLogic-Dynamic Member Identification Table."
::= { eqlmemberObjects 9 }
eqlMemberIdentificationEntry OBJECT-TYPE
SYNTAX EqlMemberIdentificationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "List of attributes of the array used to identity the location of that array.
"
AUGMENTS { eqlMemberStatusEntry }
::= { eqlMemberIdentificationTable 1 }
EqlMemberIdentificationEntry ::=
SEQUENCE {
eqlMemberIdentificationLEDsBlinking TruthValue
}
eqlMemberIdentificationLEDsBlinking OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "
Setting this variable to true enables blinking of the ALRM and WARN
LEDs on the front panel and the ERR LED on the CM, as seen
from the back.
The blinking stops after 2 hours or when the variable is
set to false.
"
DEFVAL { false }
::= { eqlMemberIdentificationEntry 1}
--**************************************************************************
eqlMemberStorageTable OBJECT-TYPE
SYNTAX SEQUENCE OF EqlMemberStorageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION " EqualLogic-Dynamic Member Storage Information Table."
::= { eqlmemberObjects 10 }
eqlMemberStorageEntry OBJECT-TYPE
SYNTAX EqlMemberStorageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "List of attributes used to convey the details of storage space utilization on the array.
"
AUGMENTS { eqlMemberIdentificationEntry }
::= { eqlMemberStorageTable 1 }
EqlMemberStorageEntry ::=
SEQUENCE {
eqlMemberTotalStorage Integer32,
eqlMemberUsedStorage Integer32,
eqlMemberSnapStorage Integer32,
eqlMemberReplStorage Integer32,
eqlMemberVirtualStorage Counter64,
eqlMemberCompressionStackStorage Counter64
}
eqlMemberTotalStorage OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the total disk storage in MBs on the array."
::= { eqlMemberStorageEntry 1}
eqlMemberUsedStorage OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies sum of reserved delegated space, reserved volume space, used snapshot space, used replication space."
::= { eqlMemberStorageEntry 2}
eqlMemberSnapStorage OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies used snapshot space. Space on this array used by snapshots. Note that this value is not the same as space reserved for snapshots."
::= { eqlMemberStorageEntry 3}
eqlMemberReplStorage OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies used replication space. Space on this array used by in progress replicas or failback replicas. Note that this value is not the same as space reserved for replication."
::= { eqlMemberStorageEntry 4}
eqlMemberVirtualStorage OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the amount of space (MB) used by compressed pages if all pages were not compressed on the member."
::= { eqlMemberStorageEntry 5}
eqlMemberCompressionStackStorage OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The amount of space (MB) used to store compressed data on this member."
::= { eqlMemberStorageEntry 6}
--**************************************************************************
eqlMemberChassisTable OBJECT-TYPE
SYNTAX SEQUENCE OF EqlMemberChassisEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION " EqualLogic-Dynamic Member Chassis Information Table."
::= { eqlmemberObjects 11 }
eqlMemberChassisEntry OBJECT-TYPE
SYNTAX EqlMemberChassisEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "List of attributes used to convey the details and type of Chassis present on the array.
"
AUGMENTS { eqlMemberIdentificationEntry }
::= { eqlMemberChassisTable 1 }
EqlMemberChassisEntry ::=
SEQUENCE {
eqlMemberModel DisplayString,
eqlMemberSerialNumber DisplayString,
eqlMemberNumberOfControllers INTEGER,
eqlMemberNumberOfDisks Integer32,
eqlMemberCacheSize Integer32,
eqlMemberCacheMode INTEGER,
eqlMemberChassisType INTEGER,
eqlMemberServiceTag DisplayString,
eqlMemberProductFamily DisplayString,
eqlMemberChassisFlags BITS,
eqlMemberChassisDiskSectorSize INTEGER
}
eqlMemberModel OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the model number for the array."
-- .jpmfix - acutally model of active CM
::= { eqlMemberChassisEntry 1}
eqlMemberSerialNumber OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the serial number for the array."
-- -jpmfix looks like SN of active CM"
::= { eqlMemberChassisEntry 2}
eqlMemberNumberOfControllers OBJECT-TYPE
SYNTAX INTEGER {
single(1),
dual(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the number of Controller modules in the array."
::= { eqlMemberChassisEntry 3}
eqlMemberNumberOfDisks OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the number of disk installed in the array."
::= {eqlMemberChassisEntry 4}
eqlMemberCacheSize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The field specifies the size in MB of the read/write cache within the array."
::= { eqlMemberChassisEntry 5}
eqlMemberCacheMode OBJECT-TYPE
SYNTAX INTEGER {
unknown(0),
write-thru(1),
write-back(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the mode the cache is in within the array.
The default is write-back. The array will be set to write-thru on battery failure."
DEFVAL { write-back }
::= { eqlMemberChassisEntry 6}
eqlMemberChassisType OBJECT-TYPE
SYNTAX INTEGER {
unknown(0),
t1403(1),
t1603(2),
t4835(3),
tDELLSBB2u1235(4),
tDELLSBB2u2425(5),
tDELLSBB4u2435(6),
tDELL2WB1425V1(7),
tDELLSBB5u6035(8)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the chassis type of the array. The default is unknown."
DEFVAL { unknown }
::= { eqlMemberChassisEntry 7}
eqlMemberServiceTag OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the service tag number for the array."
::= { eqlMemberChassisEntry 8}
eqlMemberProductFamily OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the product family of the peer storage array. Ex: PS5000 E Series."
::= { eqlMemberChassisEntry 9}
eqlMemberChassisFlags OBJECT-TYPE
SYNTAX BITS {
isAccelerated(0), -- is the chassis raid6-accelerated?
isAllSedDisks(1), -- are all disks in the chassis SED?
flag2(2),
flag3(3),
flag4(4),
flag5(5),
flag6(6),
flag7(7),
flag8(8),
flag9(9),
flag10(10),
flag11(11),
flag12(12),
flag13(13),
flag14(14),
flag15(15),
flag16(16),
flag17(17),
flag18(18),
flag19(19),
flag20(20),
flag21(21),
flag22(22),
flag23(23),
flag24(24),
flag25(25),
flag26(26),
flag27(27),
flag28(28),
flag29(29),
flag30(30),
flag31(31)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field defines the common place holder for Chassis operational flags. The flags must be of type
enable(1) or disable(0), and the default will always be disable(0)."
DEFVAL { {} }
::= { eqlMemberChassisEntry 10 }
eqlMemberChassisDiskSectorSize OBJECT-TYPE
SYNTAX INTEGER {
sector-size-512-bytes(0),
sector-size-4096-bytes(1),
sector-size-unknown(2),
sector-size-mixed(3) -- not currently supported
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the disk sector size of disks in this array."
::= { eqlMemberChassisEntry 11}
--**************************************************************************
eqlMemberConnTable OBJECT-TYPE
SYNTAX SEQUENCE OF EqlMemberConnEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION " EqualLogic-Dynamic Member Conn Information Table."
::= { eqlmemberObjects 12 }
eqlMemberConnEntry OBJECT-TYPE
SYNTAX EqlMemberConnEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "List of attributes used to convey the connections information on the array.
"
AUGMENTS { eqlMemberIdentificationEntry }
::= { eqlMemberConnTable 1 }
EqlMemberConnEntry ::=
SEQUENCE {
eqlMemberNumberOfConnections Integer32,
eqlMemberReadLatency Counter64,
eqlMemberWriteLatency Counter64,
eqlMemberReadAvgLatency Gauge32,
eqlMemberWriteAvgLatency Gauge32,
eqlMemberReadOpCount Counter64,
eqlMemberWriteOpCount Counter64,
eqlMemberTxData Counter64,
eqlMemberRxData Counter64,
eqlMemberNumberOfExtConnections Integer32
}
eqlMemberNumberOfConnections OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the number of iSCSI connections made from initiators to this array."
::= {eqlMemberConnEntry 1}
eqlMemberReadLatency OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The accumulative latency in milli seconds for read operations on this member. The value will be zero until all members are atleast 3.0. The value is reset to zero upon reboot."
::= {eqlMemberConnEntry 2}
eqlMemberWriteLatency OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The accumulative latency in milli seconds for write operations on this member. The value will be zero until all members are atleast 3.0. The value is reset to zero upon reboot."
::= {eqlMemberConnEntry 3}
eqlMemberReadAvgLatency OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The average latency for read operations on this member in milli seconds. The value is reset to zero upon reboot."
::= {eqlMemberConnEntry 4}
eqlMemberWriteAvgLatency OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The average latency for write operations on this member in milli seconds. The value is reset to zero upon reboot."
::= {eqlMemberConnEntry 5}
eqlMemberReadOpCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of read operations on this member. The value is reset to zero upon reboot."
::= {eqlMemberConnEntry 6}
eqlMemberWriteOpCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of write operations on this member. The value is reset to zero upon reboot."
::= {eqlMemberConnEntry 7}
eqlMemberTxData OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The count of data octets trasmitted by this member.The value is reset to zero upon reboot."
::= {eqlMemberConnEntry 8}
eqlMemberRxData OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The count of data octets received by this member.The value is reset to zero upon reboot."
::= {eqlMemberConnEntry 9}
eqlMemberNumberOfExtConnections OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the number of iSCSI connections made from external initiators to this array."
::= {eqlMemberConnEntry 10}
--**************************************************************************
eqlMemberRAIDTable OBJECT-TYPE
SYNTAX SEQUENCE OF EqlMemberRAIDEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION " EqualLogic-Dynamic Member RAID Information Table."
::= { eqlmemberObjects 13 }
eqlMemberRAIDEntry OBJECT-TYPE
SYNTAX EqlMemberRAIDEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "List of attributes used to convey the RAID status information on the array.
"
AUGMENTS { eqlMemberIdentificationEntry }
::= { eqlMemberRAIDTable 1 }
EqlMemberRAIDEntry ::=
SEQUENCE {
eqlMemberRaidStatus INTEGER,
eqlMemberRaidPercentage Integer32,
eqlMemberLostRaidBlocks INTEGER,
eqlMemberNumberOfSpares Integer32,
eqlMemberRaidProgress Unsigned32
}
eqlMemberRaidStatus OBJECT-TYPE
SYNTAX INTEGER {
ok (1),
degraded (2),
verifying (3),
reconstructing (4),
failed (5),
catastrophicLoss(6),
expanding (7),
mirroring (8)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the status of the raid subsystem.
This is a composite of the view of the underlying subsystems.
Status ok means things are ok.
Status degraded means we are in a degraded state, possible because no spare is available.
Status verifying means a verify pass is run, and a percent complete is available.
Status reconstructing means we are reconstructing a drive and a percent complete is available.
Status failed means we had a failure while we were up, possibly a drive failed and we have
no spare.
Status catastrophicLoss may not be visible to the user since the member may not be able to
bootup. It means we need administrator intervention to correct the problem.
Status mirroring means we are mirroring a bad drive onto a spare drive.
"
::= {eqlMemberRAIDEntry 1 }
eqlMemberRaidPercentage OBJECT-TYPE
SYNTAX Integer32 (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the percentage complete when the eqlMemberStatusRaidStatus is verifying
or reconstructing."
::= {eqlMemberRAIDEntry 2 }
eqlMemberLostRaidBlocks OBJECT-TYPE
SYNTAX INTEGER {
true (1),
false (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies whether we have lost blocks in the raid array which
the user may want to clear."
::= {eqlMemberRAIDEntry 3 }
eqlMemberNumberOfSpares OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the number disks allocated as spares in an array."
::= { eqlMemberRAIDEntry 4}
eqlMemberRaidProgress OBJECT-TYPE
SYNTAX Unsigned32 (0..100000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies 1000 times the percentage complete when the eqlMemberStatusRaidStatus is verifying
or reconstructing."
::= {eqlMemberRAIDEntry 5 }
--**************************************************************************
eqlMemberPSGMapTable OBJECT-TYPE
SYNTAX SEQUENCE OF EqlMemberPSGMapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION " EqualLogic-Dynamic Member PSG Map Table."
::= { eqlmemberObjects 14 }
eqlMemberPSGMapEntry OBJECT-TYPE
SYNTAX EqlMemberPSGMapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "List of attributes used to convey the PSS ID information of this array in the group map.
"
AUGMENTS { eqlMemberIdentificationEntry }
::= { eqlMemberPSGMapTable 1 }
EqlMemberPSGMapEntry ::=
SEQUENCE {
eqlMemberShortId Integer32
}
eqlMemberShortId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This field specifies PSS ID of the member in the context of the leader of the PSG."
::= {eqlMemberPSGMapEntry 1 }
-- SNMP TRAPS
--
--
--
--
eqlMemberEnclosureMgmtNotifications OBJECT IDENTIFIER ::= {eqlmemberNotifications 1}
-- traps related to enclosure sensors
eqlMemberHealthTempSensorHighThreshold NOTIFICATION-TYPE
OBJECTS{
eqlMemberHealthDetailsTemperatureName,
eqlMemberHealthDetailsTemperatureValue,
eqlMemberHealthDetailsTemperatureCurrentState,
eqlMemberHealthDetailsTemperatureHighCriticalThreshold,
eqlMemberHealthDetailsTemperatureHighWarningThreshold,
eqlMemberHealthDetailsTemperatureNameID
}
STATUS current
DESCRIPTION
"Sent when a high threshold has been exceeded for any of the
enclosure temp sensors. The implementation of this trap should
not send more than one notification of this type for a sensor
in any 10 minute time span"
::= { eqlMemberEnclosureMgmtNotifications 1 }
eqlMemberHealthTempSensorLowThreshold NOTIFICATION-TYPE
OBJECTS{
eqlMemberHealthDetailsTemperatureName,
eqlMemberHealthDetailsTemperatureValue,
eqlMemberHealthDetailsTemperatureCurrentState,
eqlMemberHealthDetailsTemperatureLowCriticalThreshold,
eqlMemberHealthDetailsTemperatureLowWarningThreshold,
eqlMemberHealthDetailsTemperatureNameID
}
STATUS current
DESCRIPTION
"Sent when a low threshold has been exceeded for any of the
enclosure temp sensors. The implementation of this trap should
not send more than one notification of this type for a sensor
in any 10 minute time span"
::= { eqlMemberEnclosureMgmtNotifications 2 }
eqlMemberHealthFanSpeedHighThreshold NOTIFICATION-TYPE
OBJECTS{
eqlMemberHealthDetailsFanName,
eqlMemberHealthDetailsFanValue,
eqlMemberHealthDetailsFanCurrentState,
eqlMemberHealthDetailsFanHighCriticalThreshold,
eqlMemberHealthDetailsFanHighWarningThreshold,
eqlMemberHealthDetailsFanNameID
}
STATUS current
DESCRIPTION
"Sent when a high threshold has been exceeded for any of the
enclosure fan speed sensors. The implementation of this trap should
not send more than one notification of this type for a sensor
in any 10 minute time span"
::= { eqlMemberEnclosureMgmtNotifications 3 }
eqlMemberHealthFanSpeedLowThreshold NOTIFICATION-TYPE
OBJECTS{
eqlMemberHealthDetailsFanName,
eqlMemberHealthDetailsFanValue,
eqlMemberHealthDetailsFanCurrentState,
eqlMemberHealthDetailsFanLowCriticalThreshold,
eqlMemberHealthDetailsFanLowWarningThreshold,
eqlMemberHealthDetailsFanNameID
}
STATUS current
DESCRIPTION
"Sent when a low threshold has been exceeded for any of the
enclosure fan speed sensors. The implementation of this trap should
not send more than one notification of this type for a sensor
in any 10 minute time span"
::= { eqlMemberEnclosureMgmtNotifications 4 }
eqlMemberHealthPowerSupplyFanFailure NOTIFICATION-TYPE
OBJECTS{
eqlMemberHealthDetailsPowerSupplyName,
eqlMemberHealthDetailsPowerSupplyFanStatus,
eqlMemberHealthDetailsPowerSupplyNameID
}
STATUS current
DESCRIPTION
"Sent when a failure has been detected on any of the power
supply fan speed sensors. The implementation of this trap should
not send more than one notification of this type for a sensor
in any 10 minute time span"
::= { eqlMemberEnclosureMgmtNotifications 5 }
eqlMemberHealthPowerSupplyFailure NOTIFICATION-TYPE
OBJECTS{
eqlMemberHealthDetailsPowerSupplyName,
eqlMemberHealthDetailsPowerSupplyCurrentState,
eqlMemberHealthDetailsPowerSupplyNameID
}
STATUS current
DESCRIPTION
"Sent when a failure has been detected on any of the power
supplys in the PSA. The implementation of this trap should
not send more than one notification of this type for a sensor
in any 10 minute time span"
::= { eqlMemberEnclosureMgmtNotifications 6 }
eqlMemberHealthRAIDSetDoubleFaulted NOTIFICATION-TYPE
OBJECTS{
eqlMemberHealthStatus
}
STATUS current
DESCRIPTION
"Sent when the raid set has been detected to have double faulted. When
this occurs, the array will not come up.
User intervention is required to correct the issue"
::= { eqlMemberEnclosureMgmtNotifications 7 }
eqlMemberHealthBothFanTraysRemoved NOTIFICATION-TYPE
OBJECTS{
eqlMemberHealthStatus
}
STATUS current
DESCRIPTION
"Sent when both of the fan trays have been removed from the
chassis. This results in overheating"
::= { eqlMemberEnclosureMgmtNotifications 8 }
eqlMemberHealthRAIDlostCache NOTIFICATION-TYPE
OBJECTS{
eqlMemberHealthStatus
}
STATUS current
DESCRIPTION
"Sent because the RAID driver is unable to recover the
battery-backed cache. The disk array will not initialize
without user intervention. See the Handling Lost Data section
in the Group Administration manual for more information."
::= { eqlMemberEnclosureMgmtNotifications 9 }
eqlMemberHealthFanTrayRemoved NOTIFICATION-TYPE
OBJECTS{
eqlMemberHealthStatus
}
STATUS current
DESCRIPTION
"Sent when one of the fan trays have been removed from the
chassis. This results in overheating"
::= { eqlMemberEnclosureMgmtNotifications 10 }
eqlMemberHealthRAIDSetLostBlkTableFull NOTIFICATION-TYPE
OBJECTS{
eqlMemberHealthStatus
}
STATUS current
DESCRIPTION
"Sent when the RAID lost block table is full.
This usually is an indication of lost data."
::= { eqlMemberEnclosureMgmtNotifications 11 }
eqlMemberHealthBatteryLessThan72Hours NOTIFICATION-TYPE
OBJECTS{
eqlMemberHealthStatus
}
STATUS current
DESCRIPTION
"Sent when the battery has insufficient charge to survive
a 72 hour power outage."
::= { eqlMemberEnclosureMgmtNotifications 12 }
eqlMemberHealthRaidOrphanCache NOTIFICATION-TYPE
OBJECTS{
eqlMemberHealthStatus
}
STATUS current
DESCRIPTION
"Sent when the RAID driver finds data in the battery-backed cache with no matching disk array. Initialization will not proceed without user intervention. Call EqualLogic Support for assistance."
::= { eqlMemberEnclosureMgmtNotifications 13 }
eqlMemberHealthRaidMultipleRaidSets NOTIFICATION-TYPE
OBJECTS{
eqlMemberHealthStatus
}
STATUS current
DESCRIPTION
"Sent when multiple valid RAIDsets were found. The array cannot choose which one to initialize. Remove all but one valid RAIDset and power-cycle the array."
::= { eqlMemberEnclosureMgmtNotifications 14 }
eqlMemberHealthNVRAMBatteryFailed NOTIFICATION-TYPE
OBJECTS{
eqlMemberHealthStatus
}
STATUS current
DESCRIPTION
"Sent when the NVRAM battery fails . The NVRAM can no longer be used."
::= { eqlMemberEnclosureMgmtNotifications 15 }
eqlMemberHealthhwComponentFailedCrit NOTIFICATION-TYPE
OBJECTS{
eqlMemberHealthStatus
}
STATUS current
DESCRIPTION
"Sent when a critical hardware component has failed."
::= { eqlMemberEnclosureMgmtNotifications 16 }
eqlMemberHealthincompatControlModule NOTIFICATION-TYPE
OBJECTS{
eqlMemberHealthStatus
}
STATUS current
DESCRIPTION
"Sent when An incorrect control module has been inserted into the chassis."
::= { eqlMemberEnclosureMgmtNotifications 17 }
eqlMemberHealthlowAmbientTemp NOTIFICATION-TYPE
OBJECTS{
eqlMemberHealthStatus
}
STATUS current
DESCRIPTION
"Sent when one or more sensors is below its critical temperature range."
::= { eqlMemberEnclosureMgmtNotifications 18 }
eqlMemberHealthopsPanelFailure NOTIFICATION-TYPE
OBJECTS{
eqlMemberHealthStatus
}
STATUS current
DESCRIPTION
"Sent when Ops Panel is missing or broken."
::= { eqlMemberEnclosureMgmtNotifications 19 }
eqlMemberHealthemmLinkFailure NOTIFICATION-TYPE
OBJECTS{
eqlMemberHealthStatus
}
STATUS current
DESCRIPTION
"Sent when enclosure management services are unavailable."
::= { eqlMemberEnclosureMgmtNotifications 20 }
eqlMemberHealthhighBatteryTemperature NOTIFICATION-TYPE
OBJECTS{
eqlMemberHealthStatus
}
STATUS current
DESCRIPTION
"Sent when the cache battery temperature exceeds upper limit; battery charger is disabled."
::= { eqlMemberEnclosureMgmtNotifications 21 }
eqlMemberHealthenclosureOpenPerm NOTIFICATION-TYPE
OBJECTS{
eqlMemberHealthStatus
}
STATUS current
DESCRIPTION
"Sent when the enclosure is open for a long time."
::= { eqlMemberEnclosureMgmtNotifications 22 }
eqlMemberHealthsumoChannelBothMissing NOTIFICATION-TYPE
OBJECTS{
eqlMemberHealthStatus
}
STATUS current
DESCRIPTION
"Sent when both the Sumo Channel cards go missing."
::= { eqlMemberEnclosureMgmtNotifications 23 }
eqlMemberHealthsumoEIPFailureCOndition NOTIFICATION-TYPE
OBJECTS{
eqlMemberHealthStatus
}
STATUS current
DESCRIPTION
"Sent when EIP failed in Sumo."
::= { eqlMemberEnclosureMgmtNotifications 24 }
eqlMemberHealthsumoChannelBothFailed NOTIFICATION-TYPE
OBJECTS{
eqlMemberHealthStatus
}
STATUS current
DESCRIPTION
"Sent when both the Sumo Channel cards go into failed state."
::= { eqlMemberEnclosureMgmtNotifications 25 }
--**************************************************************************
eqlDriveGroupTable OBJECT-TYPE
SYNTAX SEQUENCE OF EqlDriveGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "EqualLogic-Persistent Storage Drive Group Table."
::= { eqlmemberObjects 15 }
eqlDriveGroupEntry OBJECT-TYPE
SYNTAX EqlDriveGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry (row) containing drive group configuration"
INDEX { eqlGroupId, eqlMemberIndex, eqlDriveGroupIndex }
::= { eqlDriveGroupTable 1 }
EqlDriveGroupEntry ::=
SEQUENCE {
eqlDriveGroupIndex Unsigned32,
eqlDriveGroupStoragePoolIndex Unsigned32,
eqlDriveGroupRAIDPolicy INTEGER
}
eqlDriveGroupIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This field uniquely identifies a RAID Group within a member."
::= { eqlDriveGroupEntry 1 }
eqlDriveGroupStoragePoolIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This field uniquely identifies a Storage Pool."
DEFVAL { 1 }
::= { eqlDriveGroupEntry 2 }
eqlDriveGroupRAIDPolicy OBJECT-TYPE
SYNTAX INTEGER {
unconfigured(0),
raid50(1),
raid10(2),
raid5(3),
raid50-nospares(4),
raid10-nospares(5),
raid5-nospares(6),
raid6(7),
raid6-nospares(8),
raid6-accelerated(9),
hvs-storage(10)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The RAID policy of this drive group:
0 - unconfigured
1 - raid50
2 - raid10
3 - raid5
4 - raid50 with minimal spares
5 - raid10 with minimal spares
6 - raid5 with minimal spares
7 - raid6
8 - raid6 with minimal spares
9 - raid6 with ssd acceleration
10 - hvs storage"
DEFVAL { unconfigured }
::= { eqlDriveGroupEntry 3 }
--**************************************************************************
eqlDriveGroupOpsTable OBJECT-TYPE
SYNTAX SEQUENCE OF EqlDriveGroupOpsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "EqualLogic-Persistent Storage Drive Group Operations Table."
::= { eqlmemberObjects 16 }
eqlDriveGroupOpsEntry OBJECT-TYPE
SYNTAX EqlDriveGroupOpsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry (row) containing drive group configuration"
INDEX { eqlGroupId, eqlMemberIndex, eqlDriveGroupIndex, eqlDriveGroupOpsIndex }
::= { eqlDriveGroupOpsTable 1 }
EqlDriveGroupOpsEntry ::=
SEQUENCE {
eqlDriveGroupOpsIndex Unsigned32,
eqlDriveGroupOpsRowStatus RowStatus,
eqlDriveGroupOpsOperation INTEGER,
eqlDriveGroupOpsExec INTEGER,
eqlDriveGroupOpsStartTime Counter32,
eqlDriveGroupOpsStoragePoolSourceIndex Unsigned32,
eqlDriveGroupOpsStoragePoolDestinationIndex Unsigned32,
eqlDriveGroupOpsVolBalCommandIndex Unsigned32,
eqlDriveGroupOpsVolBalCommandiscsiLocalMemberId Unsigned32
}
eqlDriveGroupOpsIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This field unique identifies an operation withing a Drive Group."
::= { eqlDriveGroupOpsEntry 1 }
eqlDriveGroupOpsRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This field is used indicate the status of this entry."
::= { eqlDriveGroupOpsEntry 2 }
eqlDriveGroupOpsOperation OBJECT-TYPE
SYNTAX INTEGER {
none(0),
movePool(1),
vacate(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The current operation for this drive group
0 - no operation
1 - move Pool
2 - vacate"
::= { eqlDriveGroupOpsEntry 3 }
eqlDriveGroupOpsExec OBJECT-TYPE
SYNTAX INTEGER {
none(0),
cancel(1),
failed(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The action to perform on this operation
0 - no operation
1 - cancel
2 - the operation failed"
::= { eqlDriveGroupOpsEntry 4 }
eqlDriveGroupOpsStartTime OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This field contains the time of the start of the operation."
::= { eqlDriveGroupOpsEntry 5 }
eqlDriveGroupOpsStoragePoolSourceIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This field unique identifies the source Storage Pool."
DEFVAL { 1 }
::= { eqlDriveGroupOpsEntry 6 }
eqlDriveGroupOpsStoragePoolDestinationIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This field unique identifies the destination Storage Pool."
DEFVAL { 1 }
::= { eqlDriveGroupOpsEntry 7 }
eqlDriveGroupOpsVolBalCommandIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION "2nd Part of Index for row in eqliscsiVolBalCommandTable"
::= { eqlDriveGroupOpsEntry 8 }
eqlDriveGroupOpsVolBalCommandiscsiLocalMemberId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION "3rd Part of Index for row in eqliscsiVolBalCommandTable"
::= { eqlDriveGroupOpsEntry 9 }
--******************************************************************
eqlAdminAccountMemberTable OBJECT-TYPE
SYNTAX SEQUENCE OF EqlAdminAccountMemberEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "EqualLogic-Dynamic table indicating the access an administrator
has to a member."
::= { eqlmemberObjects 17 }
eqlAdminAccountMemberEntry OBJECT-TYPE
SYNTAX EqlAdminAccountMemberEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry (row) containing the access privilege."
INDEX { eqlGroupId, eqlStorageGroupAdminAccountIndex, eqlMemberIndex }
::= { eqlAdminAccountMemberTable 1 }
EqlAdminAccountMemberEntry ::=
SEQUENCE {
eqlAdminAccountMemberAccess INTEGER
}
eqlAdminAccountMemberAccess OBJECT-TYPE
SYNTAX INTEGER {
read-only (1),
read-write (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The administrative permission to a member."
::= { eqlAdminAccountMemberEntry 1 }
--******************************************************************
eqlDriveGroupOpsStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF EqlDriveGroupOpsStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "EqualLogic-Dynamic Storage Volume Operations Status Table."
::= { eqlmemberObjects 18 }
eqlDriveGroupOpsStatusEntry OBJECT-TYPE
SYNTAX EqlDriveGroupOpsStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry (row) containing status for volume operations."
AUGMENTS { eqlDriveGroupOpsEntry }
::= { eqlDriveGroupOpsStatusTable 1}
EqlDriveGroupOpsStatusEntry ::=
SEQUENCE {
eqlDriveGroupOpsStatusCompletePct Unsigned32
}
eqlDriveGroupOpsStatusCompletePct OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The percentage complete an ongoing move or bind operation is"
::= {eqlDriveGroupOpsStatusEntry 1 }
--******************************************************************
eqlMemberOpsTable OBJECT-TYPE
SYNTAX SEQUENCE OF EqlMemberOpsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "EqualLogic-Persistent Member Operations Table."
::= { eqlmemberObjects 19 }
eqlMemberOpsEntry OBJECT-TYPE
SYNTAX EqlMemberOpsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry (row) containing Member operations configuration."
INDEX { eqlGroupId, eqlMemberIndex, eqlMemberOpsIndex }
::= { eqlMemberOpsTable 1}
EqlMemberOpsEntry ::=
SEQUENCE {
eqlMemberOpsIndex Unsigned32,
eqlMemberOpsRowStatus RowStatus,
eqlMemberOpsOperation INTEGER,
eqlMemberOpsExec INTEGER,
eqlMemberOpsCompletePct Integer32,
eqlMemberOpsOperationArg DisplayString,
eqlMemberOpsOperationStatus INTEGER,
eqlMemberOpsStartTime Unsigned32,
eqlMemberOpsOperationArg1 DisplayString
}
eqlMemberOpsIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The field uniquely identifies an operation within a Member."
::= {eqlMemberOpsEntry 1 }
eqlMemberOpsRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This field is used indicate the status of this entry."
::= { eqlMemberOpsEntry 2 }
eqlMemberOpsOperation OBJECT-TYPE
SYNTAX INTEGER {
none(0),
diagnose(3),
update(4),
restart(5),
shutdown(6),
delete-pending(7),
install-software-component(8),
cli-update(9)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The current operation for this Member
0 - no operation
3 - get diagnostics
4 - firmware update
5 - restart array
6 - shutdown array
7 - delete old update kit (deprecated, use eqlMemberDynamicOps instead)
8 - install software component
9 - update from the cli
"
DEFVAL { none }
::= { eqlMemberOpsEntry 3 }
eqlMemberOpsExec OBJECT-TYPE
SYNTAX INTEGER {
none(0),
cancel(1),
failed(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The action to perform on this operation
0 - no operation
1 - cancel"
DEFVAL { none }
::= { eqlMemberOpsEntry 4 }
eqlMemberOpsCompletePct OBJECT-TYPE
SYNTAX Integer32 (0..100)
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The percentage complete an ongoing diag operation is"
::= { eqlMemberOpsEntry 5 }
eqlMemberOpsOperationArg OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This field specifies the argument for the operation.
There is no default."
::= { eqlMemberOpsEntry 6 }
eqlMemberOpsOperationStatus OBJECT-TYPE
SYNTAX INTEGER {
success(0),
failure(1)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION " The status of the operation."
DEFVAL { success }
::= { eqlMemberOpsEntry 7 }
eqlMemberOpsStartTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This field contains the time of the start of the operation."
::= { eqlMemberOpsEntry 8 }
eqlMemberOpsOperationArg1 OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This field specifies the additional argument(s) for the operation.
There is no default."
::= { eqlMemberOpsEntry 9 }
--**************************************************************************
eqlMemberHWComponentTable OBJECT-TYPE
SYNTAX SEQUENCE OF EqlMemberHWComponentEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "EqualLogic-Dynamic Member Hardware component table. This is the general place holder for all single hardware components on the member. If there is more than one such hardware component(controllers, channel cards), they go into their own table. Otherwise they end up in this table."
::= { eqlmemberObjects 20 }
eqlMemberHWComponentEntry OBJECT-TYPE
SYNTAX EqlMemberHWComponentEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry (row) containing member health detailed fan info"
INDEX { eqlGroupId, eqlMemberIndex, eqlMemberHWComponentIndex }
::= { eqlMemberHWComponentTable 1 }
EqlMemberHWComponentEntry ::=
SEQUENCE {
eqlMemberHWComponentIndex INTEGER,
eqlMemberHWComponentName DisplayString,
eqlMemberHWComponentSerialNumber DisplayString,
eqlMemberHWComponentFirmwareRev DisplayString,
eqlMemberHWComponentStatus INTEGER
}
eqlMemberHWComponentIndex OBJECT-TYPE
SYNTAX INTEGER {
eip(1)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A unique integer that identifies the fan that the
corresponding entry refers to
"
::= { eqlMemberHWComponentEntry 1 }
eqlMemberHWComponentName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the name of the component."
::= { eqlMemberHWComponentEntry 2 }
eqlMemberHWComponentSerialNumber OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the serial number of the component."
::= { eqlMemberHWComponentEntry 3 }
eqlMemberHWComponentFirmwareRev OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the firmware revision of the component."
::= { eqlMemberHWComponentEntry 4 }
eqlMemberHWComponentStatus OBJECT-TYPE
SYNTAX INTEGER {
unknown(0),
not-present(1),
failed(2),
good(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the status of the component."
DEFVAL {unknown}
::= { eqlMemberHWComponentEntry 5 }
--**************************************************************************
eqlMemberDynamicInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF EqlMemberDynamicInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "EqualLogic-Dynamic Member Info Table"
::= { eqlmemberObjects 21 }
eqlMemberDynamicInfoEntry OBJECT-TYPE
SYNTAX EqlMemberDynamicInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry (row) containing dynamic member info "
INDEX { eqlGroupId, eqlMemberIndex }
::= { eqlMemberDynamicInfoTable 1 }
EqlMemberDynamicInfoEntry ::=
SEQUENCE {
eqlMemberDynamicInfoPendingUpdateVersion DisplayString,
eqlMemberDynamicInfoIsRestartRunning INTEGER,
eqlMemberDynamicInfoIsUpdateRunning INTEGER
}
eqlMemberDynamicInfoPendingUpdateVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the string to be read.
To be used to send the member's pending update version.
"
DEFVAL {""}
::= { eqlMemberDynamicInfoEntry 1 }
eqlMemberDynamicInfoIsRestartRunning OBJECT-TYPE
SYNTAX INTEGER {
not-running(0),
running(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the status of the reboot shell script."
DEFVAL {not-running}
::= { eqlMemberDynamicInfoEntry 2 }
eqlMemberDynamicInfoIsUpdateRunning OBJECT-TYPE
SYNTAX INTEGER {
not-running(0),
running(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the status of the update shell script."
DEFVAL {not-running}
::= { eqlMemberDynamicInfoEntry 3 }
--**************************************************************************
eqlMemberCacheStatisticsTable OBJECT-TYPE
SYNTAX SEQUENCE OF EqlMemberCacheStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "EqualLogic-Dynamic member cache statistics table"
::= { eqlmemberObjects 22 }
eqlMemberCacheStatisticsEntry OBJECT-TYPE
SYNTAX EqlMemberCacheStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry (row) containing member cache statistics info "
INDEX { eqlGroupId, eqlMemberIndex }
::= { eqlMemberCacheStatisticsTable 1 }
EqlMemberCacheStatisticsEntry ::=
SEQUENCE {
eqlMemberTotalPageCount Counter64,
eqlMemberHotPageCount Counter64,
eqlMemberWarmPageCount Counter64,
eqlMemberColdPageCount Counter64,
eqlMemberPageSize Unsigned32,
eqlMemberSSDAcceleratorSize Unsigned32,
eqlMemberSSDCacheSize Unsigned32,
eqlMemberSSDAcceleratorEntriesTotal Unsigned32,
eqlMemberSSDAcceleratorEntriesUsed Unsigned32
}
eqlMemberTotalPageCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the total count of pages on the storage array"
::= { eqlMemberCacheStatisticsEntry 1 }
eqlMemberHotPageCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies count of most frequently accessed pages on the storage array"
::= { eqlMemberCacheStatisticsEntry 2 }
eqlMemberWarmPageCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies count of moderately accessed pages on the storage array"
::= { eqlMemberCacheStatisticsEntry 3 }
eqlMemberColdPageCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies count of pages not currently being accessed on the storage array"
::= { eqlMemberCacheStatisticsEntry 4 }
eqlMemberPageSize OBJECT-TYPE
SYNTAX Unsigned32
UNITS "KB"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies size of an IOM page"
::= { eqlMemberCacheStatisticsEntry 5 }
eqlMemberSSDAcceleratorSize OBJECT-TYPE
SYNTAX Unsigned32
UNITS "GB"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies amount of space reserved for mapping writes to SSD"
::= { eqlMemberCacheStatisticsEntry 6 }
eqlMemberSSDCacheSize OBJECT-TYPE
SYNTAX Unsigned32
UNITS "GB"
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies SSD RAID LUN"
::= { eqlMemberCacheStatisticsEntry 7 }
eqlMemberSSDAcceleratorEntriesTotal OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the total number of i/o's that can be mapped to SSD space"
::= { eqlMemberCacheStatisticsEntry 8 }
eqlMemberSSDAcceleratorEntriesUsed OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies number of i/o's that are currently mapped to SSD space"
::= { eqlMemberCacheStatisticsEntry 9 }
--**************************************************************************
eqlMemberSEDEncryptionTable OBJECT-TYPE
SYNTAX SEQUENCE OF EqlMemberSEDEncryptionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "EqualLogic-Dynamic member encryption shares for SED disks"
::= { eqlmemberObjects 23 }
eqlMemberSEDEncryptionEntry OBJECT-TYPE
SYNTAX EqlMemberSEDEncryptionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry (row) containing SED Encryption Key info "
INDEX { eqlGroupId, eqlMemberIndex }
::= { eqlMemberSEDEncryptionTable 1 }
EqlMemberSEDEncryptionEntry ::=
SEQUENCE {
eqlMemberSEDEncryptionRowStatus RowStatus,
eqlMemberSEDEncryptionShare1 EqlMemberSEDShareType,
eqlMemberSEDEncryptionShare2 EqlMemberSEDShareType,
eqlMemberSEDEncryptionShare3 EqlMemberSEDShareType
}
eqlMemberSEDEncryptionRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This field is used indicate the status of this entry."
::= { eqlMemberSEDEncryptionEntry 1 }
eqlMemberSEDEncryptionShare1 OBJECT-TYPE
SYNTAX EqlMemberSEDShareType
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This field is for the first retrieved SED backup key."
::= { eqlMemberSEDEncryptionEntry 2 }
eqlMemberSEDEncryptionShare2 OBJECT-TYPE
SYNTAX EqlMemberSEDShareType
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This field is for the second retrieved SED backup key."
::= { eqlMemberSEDEncryptionEntry 3 }
eqlMemberSEDEncryptionShare3 OBJECT-TYPE
SYNTAX EqlMemberSEDShareType
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This field is for the third retrieved SED backup key."
::= { eqlMemberSEDEncryptionEntry 4 }
--******************************************************************
eqlMemberDynamicOpsTable OBJECT-TYPE
SYNTAX SEQUENCE OF EqlMemberDynamicOpsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "EqualLogic-Dynamic Member Operations Table.
This table is for member operations that do not require persistent storage.
Rows in this table should be used instead of eqlMemberOps."
::= { eqlmemberObjects 24 }
eqlMemberDynamicOpsEntry OBJECT-TYPE
SYNTAX EqlMemberDynamicOpsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry (row) containing Member operations configuration."
INDEX { eqlGroupId, eqlMemberIndex, eqlMemberDynamicOpsOperation }
::= { eqlMemberDynamicOpsTable 1}
EqlMemberDynamicOpsEntry ::=
SEQUENCE {
eqlMemberDynamicOpsOperation INTEGER,
eqlMemberDynamicOpsOperationArg OCTET STRING
}
eqlMemberDynamicOpsOperation OBJECT-TYPE
SYNTAX INTEGER {
none(0),
delete-pending(7)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The current operation for this Member
0 - no operation
1 - delete old update kit
"
DEFVAL { none }
::= { eqlMemberDynamicOpsEntry 1 }
eqlMemberDynamicOpsOperationArg OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..255))
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This field specifies the argument for the operation.
There is no default."
::= { eqlMemberDynamicOpsEntry 2 }
--**************************************************************************
eqlMemberGroupInfoAtMemberTable OBJECT-TYPE
SYNTAX SEQUENCE OF EqlMemberGroupInfoAtMemberEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "EqualLogic-Persistent Member Group Info Known At Member Table"
::= { eqlmemberObjects 25 }
eqlMemberGroupInfoAtMemberEntry OBJECT-TYPE
SYNTAX EqlMemberGroupInfoAtMemberEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry (row) containing Group info that in-use at this Member."
INDEX { eqlGroupId, eqlMemberIndex }
::= { eqlMemberGroupInfoAtMemberTable 1 }
EqlMemberGroupInfoAtMemberEntry ::=
SEQUENCE {
eqlMemberGroupInfoAtMemberPasswd1 OCTET STRING, -- NOT null-terminated
eqlMemberGroupInfoAtMemberPasswd1Len Unsigned32
}
eqlMemberGroupInfoAtMemberPasswd1 OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1..128)) -- GROUP_MAX_CREDENTIALS_SIZE = 128
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The eqlGroupPasswd1 value that is currently in-use at this Member.
Used by PSGD to insure that all Members are using the same eqlGroupPasswd1 value
before deleting the backup password. Not null-terminated. Not printable characters."
--DEFAULT cookie "secure"
::= { eqlMemberGroupInfoAtMemberEntry 1 }
eqlMemberGroupInfoAtMemberPasswd1Len OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of octets in eqlMemberGroupInfoAtMemberPasswd1."
::= { eqlMemberGroupInfoAtMemberEntry 2 }
--**************************************************************************
eqlDriveGroupStatisticsTable OBJECT-TYPE
SYNTAX SEQUENCE OF EqlDriveGroupStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "EqualLogic-Dynamic Storage Drive Group Statistics Table."
::= { eqlmemberObjects 26 }
eqlDriveGroupStatisticsEntry OBJECT-TYPE
SYNTAX EqlDriveGroupStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry (row) containing drive group statistics."
INDEX { eqlGroupId, eqlMemberIndex, eqlDriveGroupStatisticsIndex }
::= { eqlDriveGroupStatisticsTable 1 }
EqlDriveGroupStatisticsEntry ::=
SEQUENCE {
eqlDriveGroupStatisticsIndex INTEGER,
eqlDriveGroupStatisticsHeadroom Unsigned32
}
eqlDriveGroupStatisticsIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This field uniquely identifies a RAID Group within a member."
::= { eqlDriveGroupStatisticsEntry 1 }
eqlDriveGroupStatisticsHeadroom OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field is the recent, estimated, and smoothed percentage by which the RAID Group is not utilized."
::= { eqlDriveGroupStatisticsEntry 2 }
--**************************************************************************
-- This table is for the dynamic information that we need from the member
-- that doesn't fit in eqlMemberInfoTable (handled by psgd, not netmgtd)
-- and eqlMemberDynamicInfoTable (used by netmgtd but polled all the time -
-- every 30 seconds or so - by the GUI) and eqlMemberStatusTable is serviced
-- by emd.
-- This table was added initially for the Language Version
-- ************************************************************************
eqlMemberFirmwareInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF EqlMemberFirmwareInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "EqualLogic-Dynamic Member Info Table "
::= { eqlmemberObjects 27 }
eqlMemberFirmwareInfoEntry OBJECT-TYPE
SYNTAX EqlMemberFirmwareInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry (row) containing member info"
INDEX { eqlGroupId, eqlMemberIndex }
::= { eqlMemberFirmwareInfoTable 1 }
EqlMemberFirmwareInfoEntry ::=
SEQUENCE {
eqlMemberLanguageVersion DisplayString,
eqlMemberFirmwareInfoDataReduction INTEGER
}
eqlMemberLanguageVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This field specifies the installed language kit version"
DEFVAL {""}
::= { eqlMemberFirmwareInfoEntry 1 }
eqlMemberFirmwareInfoDataReduction OBJECT-TYPE
SYNTAX INTEGER {
unknown(0), -- Current state of data reduction support is unknown.
disabled(1), -- Member is capable of some form of data-reduction, but it has never been enabled.
no-capable-hardware(2), -- Current member does not support data-reduction.
no-capable-raid(3), -- Data reduction is supported, but the RAID type is not correct.
compression-running(4), -- Member is actively compressing data.
compression-paused(5) -- Compression of new data has been paused.
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Current form of data reduction to be used on the member.
The member must support the requested value in order for it to be set."
DEFVAL { unknown }
::= { eqlMemberFirmwareInfoEntry 2 }
--**************************************************************************
eqlDriveGroupHeatProfileInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF EqlDriveGroupHeatProfileInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "EqualLogic-Dynamic Storage Drive Group Heat-Profile Information Table."
::= { eqlmemberObjects 28 }
eqlDriveGroupHeatProfileInfoEntry OBJECT-TYPE
SYNTAX EqlDriveGroupHeatProfileInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry (row) identifying a per-drive-group heat profile."
INDEX { eqlGroupId, eqlMemberIndex, eqlDriveGroupStatisticsIndex, eqlDriveGroupHeatProfilePart }
::= { eqlDriveGroupHeatProfileInfoTable 1 }
EqlDriveGroupHeatProfileInfoEntry ::=
SEQUENCE {
eqlDriveGroupHeatProfilePart Unsigned32,
eqlDriveGroupHeatProfileColdCount Counter64,
-- NOTE: SNMPv2 does not support floating point.
eqlDriveGroupHeatProfileMinMagnitude Integer32,
eqlDriveGroupHeatProfileMinMultiplier Unsigned32,
eqlDriveGroupHeatProfileMaxMagnitude Integer32,
eqlDriveGroupHeatProfileMaxMultiplier Unsigned32
-- Want to put LBA/page range or something in here eventually.
}
eqlDriveGroupHeatProfilePart OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "If 1, the entire drive group, otherwise a part (possibly the only part)."
::= { eqlDriveGroupHeatProfileInfoEntry 1 }
eqlDriveGroupHeatProfileColdCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of cold pages."
::= { eqlDriveGroupHeatProfileInfoEntry 2 }
eqlDriveGroupHeatProfileMinMagnitude OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The minimum access-rate magnitude. An access-rate magnitude is the rounded-down-to-integer logarithm base 2 of the access rate in accesses per second."
::= { eqlDriveGroupHeatProfileInfoEntry 3 }
eqlDriveGroupHeatProfileMinMultiplier OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The minimum access-rate multiplier for the minimum access-rate magnitude. An access-rate multiplier is the fractional 32 bits added to 1.0 to constitute a multiplier, which when multiplied by 2 to the access-rate magnitude yields the access-rate floor of a bin of the histogram that is the heat profile."
::= { eqlDriveGroupHeatProfileInfoEntry 4 }
eqlDriveGroupHeatProfileMaxMagnitude OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The maximum access-rate magnitude."
::= { eqlDriveGroupHeatProfileInfoEntry 5 }
eqlDriveGroupHeatProfileMaxMultiplier OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The maximum access-rate multiplier for the maximum access-rate magnitude."
::= { eqlDriveGroupHeatProfileInfoEntry 6 }
--**************************************************************************
eqlDriveGroupHeatProfileBinTable OBJECT-TYPE
SYNTAX SEQUENCE OF EqlDriveGroupHeatProfileBinEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "EqualLogic-Dynamic Storage Drive Group Heat-Profile-Histogram Bins Table."
::= { eqlmemberObjects 29 }
eqlDriveGroupHeatProfileBinEntry OBJECT-TYPE
SYNTAX EqlDriveGroupHeatProfileBinEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry (row) representing one bin in the heat-profile histogram, telling how many pages covered by the heat profile have at least a certain access rate."
INDEX { eqlGroupId, eqlMemberIndex, eqlDriveGroupStatisticsIndex, eqlDriveGroupHeatProfilePart, eqlDriveGroupHeatProfileBinId }
::= { eqlDriveGroupHeatProfileBinTable 1 }
EqlDriveGroupHeatProfileBinEntry ::=
SEQUENCE {
eqlDriveGroupHeatProfileBinId Unsigned32,
-- NOTE: SNMPv2 does not support floating point.
eqlDriveGroupHeatProfileAccessRateMagnitude Integer32,
eqlDriveGroupHeatProfileAccessRateMultiplier Unsigned32,
eqlDriveGroupHeatProfileCount Counter64
}
eqlDriveGroupHeatProfileBinId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The identifier of the bin."
::= { eqlDriveGroupHeatProfileBinEntry 1 }
eqlDriveGroupHeatProfileAccessRateMagnitude OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The access-rate magnitude (cf. eqlDriveGroupHeatProfileMinMagnitude) for the bin."
::= { eqlDriveGroupHeatProfileBinEntry 2 }
eqlDriveGroupHeatProfileAccessRateMultiplier OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The access-rate multiplier (cf. eqlDriveGroupHeatProfileMinMultiplier) for the bin."
::= { eqlDriveGroupHeatProfileBinEntry 3 }
eqlDriveGroupHeatProfileCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of pages having the access-rate floor of the bin."
::= { eqlDriveGroupHeatProfileBinEntry 4 }
--**************************************************************************
eqlTaggedHeatProfileInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF EqlTaggedHeatProfileInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "EqualLogic-Dynamic Storage Tagged Heat-Profile Information Table."
::= { eqlmemberObjects 30 }
eqlTaggedHeatProfileInfoEntry OBJECT-TYPE
SYNTAX EqlTaggedHeatProfileInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry (row) identifying a quasi-per-volume heat profile."
INDEX { eqlGroupId, eqlMemberIndex, eqlTaggedHeatTag }
::= { eqlTaggedHeatProfileInfoTable 1 }
EqlTaggedHeatProfileInfoEntry ::=
SEQUENCE {
eqlTaggedHeatTag Unsigned32,
eqlTaggedHeatProfileColdCount Counter64,
-- NOTE: SNMPv2 does not support floating point.
eqlTaggedHeatProfileMinMagnitude Integer32,
eqlTaggedHeatProfileMinMultiplier Unsigned32,
eqlTaggedHeatProfileMaxMagnitude Integer32,
eqlTaggedHeatProfileMaxMultiplier Unsigned32
}
eqlTaggedHeatTag OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A tag identifying a heat profile that could apply to internal non-volume page usage, internal-volume usage, or external-volume usage. User volumes have tags of 128 or higher."
::= { eqlTaggedHeatProfileInfoEntry 1 }
eqlTaggedHeatProfileColdCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of cold pages."
::= { eqlTaggedHeatProfileInfoEntry 2 }
eqlTaggedHeatProfileMinMagnitude OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The minimum access-rate magnitude. An access-rate magnitude is the rounded-down-to-integer logarithm base 2 of the access rate in accesses per second."
::= { eqlTaggedHeatProfileInfoEntry 3 }
eqlTaggedHeatProfileMinMultiplier OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The minimum access-rate multiplier for the minimum access-rate magnitude. An access-rate multiplier is the fractional 32 bits added to 1.0 to constitute a multiplier, which when multiplied by 2 to the access-rate magnitude yields the access-rate floor of a bin of the histogram that is the heat profile."
::= { eqlTaggedHeatProfileInfoEntry 4 }
eqlTaggedHeatProfileMaxMagnitude OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The maximum access-rate magnitude."
::= { eqlTaggedHeatProfileInfoEntry 5 }
eqlTaggedHeatProfileMaxMultiplier OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The maximum access-rate multiplier for the maximum access-rate magnitude."
::= { eqlTaggedHeatProfileInfoEntry 6 }
--**************************************************************************
eqlTaggedHeatProfileBinTable OBJECT-TYPE
SYNTAX SEQUENCE OF EqlTaggedHeatProfileBinEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "EqualLogic-Dynamic Storage Tagged Heat-Profile-Histogram Bins Table."
::= { eqlmemberObjects 31 }
eqlTaggedHeatProfileBinEntry OBJECT-TYPE
SYNTAX EqlTaggedHeatProfileBinEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry (row) representing one bin in the quasi-per-volume heat-profile histogram, telling how many pages covered by the heat profile have at least a certain access rate."
INDEX { eqlGroupId, eqlMemberIndex, eqlTaggedHeatTag, eqlTaggedHeatProfileBinId }
::= { eqlTaggedHeatProfileBinTable 1 }
EqlTaggedHeatProfileBinEntry ::=
SEQUENCE {
eqlTaggedHeatProfileBinId Unsigned32,
-- NOTE: SNMPv2 does not support floating point.
eqlTaggedHeatProfileAccessRateMagnitude Integer32,
eqlTaggedHeatProfileAccessRateMultiplier Unsigned32,
eqlTaggedHeatProfileCount Counter64
}
eqlTaggedHeatProfileBinId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The identifier of the bin."
::= { eqlTaggedHeatProfileBinEntry 1 }
eqlTaggedHeatProfileAccessRateMagnitude OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The access-rate magnitude (cf. eqlTaggedHeatProfileMinMagnitude) for the bin."
::= { eqlTaggedHeatProfileBinEntry 2 }
eqlTaggedHeatProfileAccessRateMultiplier OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The access-rate multiplier (cf. eqlTaggedHeatProfileMinMultiplier) for the bin."
::= { eqlTaggedHeatProfileBinEntry 3 }
eqlTaggedHeatProfileCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of pages having the access-rate floor of the bin."
::= { eqlTaggedHeatProfileBinEntry 4 }
--**************************************************************************
eqlMemberRaidPoliciesTable OBJECT-TYPE
SYNTAX SEQUENCE OF EqlMemberRaidPoliciesEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "EqualLogic-Dynamic Member Raid Policies Table."
::= { eqlmemberObjects 32 }
eqlMemberRaidPoliciesEntry OBJECT-TYPE
SYNTAX EqlMemberRaidPoliciesEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry (row) represents a RAID policy."
INDEX { eqlGroupId, eqlMemberIndex, eqlDriveGroupRAIDPolicy }
::= { eqlMemberRaidPoliciesTable 1 }
EqlMemberRaidPoliciesEntry ::=
SEQUENCE {
eqlMemberRaidPoliciesBehavior INTEGER,
eqlMemberRaidPoliciesRAIDCapacity Counter64
}
eqlMemberRaidPoliciesBehavior OBJECT-TYPE
SYNTAX INTEGER {
always (1),
never (2),
cli (3),
cliSanHQ (4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The behavior to be followed for this RAID policy based on the current
RAID policy, the effective drive capacity and the platform.
Behavior always means the RAID policy is always configurable.
Behavior never means the RAID policy is never configurable.
Behavior cli means the RAID policy is configurable via CLI only.
Behavior cliSanHQ means the RAID policy is configurable via CLI only and
SanHQ will monitor and report on its usage."
::= { eqlMemberRaidPoliciesEntry 1 }
eqlMemberRaidPoliciesRAIDCapacity OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The estimated RAID capacity in mega-bytes of the RAID set if using this RAID policy."
::= { eqlMemberRaidPoliciesEntry 2 }
--**************************************************************************
-- This table describes the per TCP connection statistics for a member.
-- Each connection is uniquely identified by the four tuple laddr:lport:faddr:fport.
-- ************************************************************************
eqlMemberPerTCPConnectionStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF EqlMemberPerTCPConnectionStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "EqualLogic-Dynamic Storage Member Per TCP Connection Statistics Table."
::= { eqlmemberObjects 33 }
eqlMemberPerTCPConnectionStatsEntry OBJECT-TYPE
SYNTAX EqlMemberPerTCPConnectionStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry (row) of a member's per TCP connection statistics."
INDEX { eqlGroupId, eqlMemberIndex, eqlMemberPerTCPConnectionStatsIndex }
::= { eqlMemberPerTCPConnectionStatsTable 1 }
EqlMemberPerTCPConnectionStatsEntry ::=
SEQUENCE {
eqlMemberPerTCPConnectionStatsIndex Unsigned32,
eqlMemberPerTCPConnectionStatsLocalAddrType InetAddressType,
eqlMemberPerTCPConnectionStatsLocalAddr InetAddress,
eqlMemberPerTCPConnectionStatsLocalPort Unsigned32,
eqlMemberPerTCPConnectionStatsForeignAddrType InetAddressType,
eqlMemberPerTCPConnectionStatsForeignAddr InetAddress,
eqlMemberPerTCPConnectionStatsForeignPort Unsigned32,
eqlMemberPerTCPConnectionStatsMss Unsigned32,
eqlMemberPerTCPConnectionStatsState INTEGER,
eqlMemberPerTCPConnectionStatsSndpack Counter64,
eqlMemberPerTCPConnectionStatsSndbyte Counter64,
eqlMemberPerTCPConnectionStatsSndrexmitpack Counter64,
eqlMemberPerTCPConnectionStatsSndrexmitbyte Counter64,
eqlMemberPerTCPConnectionStatsRexmttimeout Counter64,
eqlMemberPerTCPConnectionStatsFastrexmt Counter64,
eqlMemberPerTCPConnectionStatsSndprobe Counter64,
eqlMemberPerTCPConnectionStatsRcvpack Counter64,
eqlMemberPerTCPConnectionStatsRcvbyte Counter64,
eqlMemberPerTCPConnectionStatsRcvwinprobe Counter64,
eqlMemberPerTCPConnectionStatsRcvbadsum Counter64
}
eqlMemberPerTCPConnectionStatsIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "An arbitrary integer used to uniquely identify a
particular connection. The index may change between requests."
::= { eqlMemberPerTCPConnectionStatsEntry 1 }
eqlMemberPerTCPConnectionStatsLocalAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The local IP address type (ipv4 or ipv6) of the connection."
::= { eqlMemberPerTCPConnectionStatsEntry 2 }
eqlMemberPerTCPConnectionStatsLocalAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The local IP address of the connection."
::= { eqlMemberPerTCPConnectionStatsEntry 3 }
eqlMemberPerTCPConnectionStatsLocalPort OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The local port of the connection."
::= { eqlMemberPerTCPConnectionStatsEntry 4 }
eqlMemberPerTCPConnectionStatsForeignAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The foreign IP address type(ipv4 or ipv6) of the connection."
::= { eqlMemberPerTCPConnectionStatsEntry 5 }
eqlMemberPerTCPConnectionStatsForeignAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The foreign IP address of the connection."
::= { eqlMemberPerTCPConnectionStatsEntry 6 }
eqlMemberPerTCPConnectionStatsForeignPort OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The foreign port of the connection."
::= { eqlMemberPerTCPConnectionStatsEntry 7 }
eqlMemberPerTCPConnectionStatsMss OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The TCP maximum segment size."
::= { eqlMemberPerTCPConnectionStatsEntry 8 }
eqlMemberPerTCPConnectionStatsState OBJECT-TYPE
SYNTAX INTEGER {
tcps-closed(0),
tcps-listen(1),
tcps-syn-sent(2),
tcps-syn-received(3),
tcps-established(4),
tcps-close-wait(5),
tcps-fin-wait1(6),
tcps-closing(7),
tcps-last-ack(8),
tcps-fin-wait2(9),
tcps-time-wait(10)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The TCP state of the connection."
::= { eqlMemberPerTCPConnectionStatsEntry 9 }
eqlMemberPerTCPConnectionStatsSndpack OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of data packets sent."
::= { eqlMemberPerTCPConnectionStatsEntry 10 }
eqlMemberPerTCPConnectionStatsSndbyte OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of data bytes sent."
::= { eqlMemberPerTCPConnectionStatsEntry 11 }
eqlMemberPerTCPConnectionStatsSndrexmitpack OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of data packets retransmitted."
::= { eqlMemberPerTCPConnectionStatsEntry 12 }
eqlMemberPerTCPConnectionStatsSndrexmitbyte OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of data bytes retransmitted."
::= { eqlMemberPerTCPConnectionStatsEntry 13 }
eqlMemberPerTCPConnectionStatsRexmttimeout OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of retransmit timeouts(slow start counter)."
::= { eqlMemberPerTCPConnectionStatsEntry 14 }
eqlMemberPerTCPConnectionStatsFastrexmt OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of fast retransmits."
::= { eqlMemberPerTCPConnectionStatsEntry 15 }
eqlMemberPerTCPConnectionStatsSndprobe OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of window probes sent."
::= { eqlMemberPerTCPConnectionStatsEntry 16 }
eqlMemberPerTCPConnectionStatsRcvpack OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of packets received in sequence."
::= { eqlMemberPerTCPConnectionStatsEntry 17 }
eqlMemberPerTCPConnectionStatsRcvbyte OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of bytes received in sequence."
::= { eqlMemberPerTCPConnectionStatsEntry 18 }
eqlMemberPerTCPConnectionStatsRcvwinprobe OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of received window probe packets."
::= { eqlMemberPerTCPConnectionStatsEntry 19 }
eqlMemberPerTCPConnectionStatsRcvbadsum OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of packets received with checksum errors."
::= { eqlMemberPerTCPConnectionStatsEntry 20 }
--**************************************************************************
-- NOTE: DESCRIPTION strings for *Table entries are parsed.
END
|