summaryrefslogtreecommitdiff
path: root/MIBS/hp/HP-SN-AGENT-MIB
blob: 7cb6395a51461f12921b981adbfe20f5c8d87168 (plain)
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
-- SECTION 1: Top Level Definitions

HP-SN-AGENT-MIB DEFINITIONS ::= BEGIN

-- BigIron Router Switch Agent MIB Release 2.0.0
-- Revision 10/11/99

-- Copyright 1996 Foundry Networks, Inc.
-- All rights reserved.
-- This Foundry SNMP Management Information Base Specification
-- (Specification) embodies Foundry's confidential and
-- proprietary intellectual property. Foundry retains all
-- title and ownership in the Specification, including any
-- revisions.

-- This Specification is supplied "AS IS," and Foundry makes
-- no warranty, either express or implied, as to the use,
-- operation, condition, or performance of the Specification.


-- Imports

IMPORTS
        TimeTicks, IpAddress, Counter, Gauge
                FROM RFC1155-SMI
        OBJECT-TYPE
                FROM RFC-1212
        snChassis, snAgentSys, snStack
                FROM HP-SN-ROOT-MIB;


                -- textual conventions

          DisplayString ::=
              OCTET STRING
          -- This data type is used to model textual information taken
          -- from the NVT ASCII character set.  By convention, objects
          -- with this syntax are declared as having
          --
          --      SIZE (0..255)

          MacAddress ::=
              OCTET STRING (SIZE(6))
          -- This data type is used to model media addresses.  For many
          -- types of media, this will be in a binary representation.
          -- For example, an ethernet address would be represented as
          -- a string of 6 octets.

-- Groups

snChasGen       OBJECT IDENTIFIER ::= { snChassis 1 }
snChasPwr       OBJECT IDENTIFIER ::= { snChassis 2 }
snChasFan       OBJECT IDENTIFIER ::= { snChassis 3 }


-- SECTION 2: MIB Objects


-- General Chassis Information

snChasType OBJECT-TYPE
    SYNTAX DisplayString (SIZE(0..128))
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The chassis type represents the type 
                of Foundry product being managed. "
        ::= { snChasGen 1 }



snChasSerNum OBJECT-TYPE
        SYNTAX  DisplayString (SIZE(0..128))
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The serial number of the chassis. If the
                serial number is unknown or unavailable then
                the value should be a zero length string."
        ::= { snChasGen 2 }



-- Power Supply Status


snChasPwrSupplyStatus OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "A bit array that contains the value of the
                Chassis Power Supplies. This is a packed bit string;
                the 2 power supplies status are encoded into 4 bits
                (a nibble). 

                There are multiple power supplies per chassis in this release.
                The following shows the meaning of each bit:
                (bit 0 is the least significant bit).

                  bit position   meaning
                  ------------   -------
                          12-31  reserved
                      11     Power  Supply 4 DC (0=bad, 1=good).
                      10     Power  Supply 3 DC (0=bad, 1=good).
                      9      Power  Supply 4 present status (0=present, 1=not-present).
                      8      Power  Supply 3 present status (0=present, 1=not-present).
                          4-7    reserved
                      3      Power  Supply 2 DC (0=bad, 1=good).
                      2      Power  Supply 1 DC (0=bad, 1=good).
                      1      Power  Supply 2 present status (0=present, 1=not-present).
                      0      Power  Supply 1 present status (0=present, 1=not-present)."
        ::= { snChasGen 3 }


-- Fan Status


snChasFanStatus OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "A bit array that contains the value of the
                fan status. This is a packed bit string. The
                status of each fan is encoded into one bit.

                  bit value    meaning
                  ---------    -------
                      0         fan failure.
                      1         fan good.

                There are two fans per VLAN Switch chassis in this release.
                The following shows the meaning of each bit:
                (bit 0 is the least significant bit).

                  bit position   meaning
                  ------------   -------
              4-31       reserved
              3          fan4 status
              2          fan3 status
              1          fan2 status
                      0          fan1 status"
        ::= { snChasGen 4 }




snChasMainBrdDescription OBJECT-TYPE
    SYNTAX DisplayString (SIZE(0..128))
    ACCESS read-only
    STATUS mandatory
    DESCRIPTION
        "The main board description string. (It is obsoleted for Chassis Product)"
    ::= { snChasGen 5 }


snChasMainPortTotal OBJECT-TYPE
    SYNTAX INTEGER (1..24)
    ACCESS read-only
    STATUS mandatory
    DESCRIPTION
        "The total number of ports for the main board. (It is obsoleted for Chassis Product)"
    ::= { snChasGen 6 }


snChasExpBrdDescription OBJECT-TYPE
    SYNTAX DisplayString (SIZE(0..128))
    ACCESS read-only
    STATUS mandatory
    DESCRIPTION
        "The expansion board description string. Expansion
        board are those boards attaching on the main board.
        (It is obsoleted for Chassis Product)"
    ::= { snChasGen 7 }


snChasExpPortTotal OBJECT-TYPE
        SYNTAX INTEGER (1..24)
    ACCESS read-only
    STATUS mandatory
    DESCRIPTION
        "The total number of ports for the expansion board.
        (It is obsoleted for Chassis Product)"
    ::= { snChasGen 8 }


snChasStatusLeds OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "A bit array that contains the value of the
                front panel status LEDs. This is a bit-map; 
                each LED is encoded into 1 bit for each switch
                port.  The maximum number of ports in one chassis 
                is 24 that means 24 Ports Status LEDs. The expansion port 
                number always begins from the last main port number.  
                The following shows the meaning of each bit for each 
                switch port:

                  bit value  meaning
                  --------   ---------  
                     0         off (Link off)
                         1         on  (Link on)

                The bitmap of LEDs are as following: 
                          
                 (Port1)            (Port4)                    (Port8)
        Bit      (Bit0)             (Bit3)                      (Bit7)
                Byte 1:  LED1   LED2   LED3  LED4   LED5   LED6   LED7   LED8    
                Byte 2:  LED9   LED10  LED11 LED12  LED13  LED14  LED15  LED16     
                Byte 3:  LED17  LED18  LED19 LED20  LED21  LED22  LED23  LED24
        --------"
        ::= { snChasGen 9 }


snChasTrafficLeds OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "A bit array that contains the value of the
                front panel traffic LEDs. This is a packed bit string; 
                each LED is encoded into 1 bit for each switch
                port.  The maximum number of ports in one chassis 
                is 24 that means 24 Ports Traffic LEDs. The expansion port 
                number always begins from the last main port number.  
                The following shows the meaning of each bit for each 
                switch port:

                  bit value  meaning
                  --------   ---------  
                     0         off (no traffic)
                         1         on  (traffic)

                The bitmap of LEDs are as following: 
                          
                 (Port1)            (Port4)                    (Port8)
        Bit      (Bit0)             (Bit3)                      (Bit7)
                Byte 1:  LED1   LED2   LED3  LED4   LED5   LED6   LED7   LED8    
                Byte 2:  LED9   LED10  LED11 LED12  LED13  LED14  LED15  LED16     
                Byte 3:  LED17  LED18  LED19 LED20  LED21  LED22  LED23  LED24
        --------"
        ::= { snChasGen 10 }


snChasMediaLeds OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "A bit array that contains the value of the
                front panel media LEDs. This is a packed bit string; 
                each LED is encoded into 1 bit for each switch port.  
                The maximum number of ports in one chassis is 24 
                that means 24 Ports Media LEDs.  The expansion port 
                number always begins from the last main port number. 
                The following shows the meaning of each bit for each 
                switch port:

                bit value  meaning   
                ---------  -------
          0        half duplex
          1        full duplex

                The bitmap of LEDs are as following: 
                         (Port1)            (Port4)                    (Port8)
        Bit      (Bit0)             (Bit3)                      (Bit7)
                Byte 1:  LED1   LED2   LED3  LED4   LED5   LED6   LED7   LED8    
                Byte 2:  LED9   LED10  LED11 LED12  LED13  LED14  LED15  LED16     
                Byte 3:  LED17  LED18  LED19 LED20  LED21  LED22  LED23  LED24                    
        ---------"
        ::= { snChasGen 11 }


snChasEnablePwrSupplyTrap OBJECT-TYPE
        SYNTAX  INTEGER { disabled(0), enabled(1) }
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Indicates whether the SNMP agent process is
                permitted to generate power supply failure traps."
    DEFVAL { enabled }
        ::= { snChasGen 12 }

snChasMainBrdId OBJECT-TYPE
    SYNTAX OCTET STRING
    ACCESS read-only
        STATUS mandatory
        DESCRIPTION
        "The main board identifier, which can uniquely identify a board
        type. It is an encoded octet string with the following meaning:
          octet 0  - octet string format version, which identifies the
                     format of this string.

        If format version octet has the value 1, the octets after the
        version octet have the following meaning:
          octet 1  - product type, FIWG=0x57, FIBB=0x42, FIMLS=0x4D
                     NI=0x4E, TI=0x54, TIRT=0x52
          octet 2  - board type, POWERPC=1, ALPHA=2
                  The length of the octet string is 27.

        If format version octet has the value 2, the octets after the
        version octet have the following meaning:
          octet 1  - product type: 
                                                BI_WG                                   0x57
                                                BI_BB                                   0x42
                                                BI_NI                                   0x4E
          octet 2  - module type:
                                                FI_MASTER_FIBER_8G              0x7
                                                FI_MASTER_FIBER_4G              0x5
                                                FI_MASTER_FIBER_2G              0x4
                                                FI_SLAVE_COPPER_24              0xB
                                                MASTER_FIBER_8G                 0x0
                                                MASTER_FIBER_4G                 0x1
                                                MASTER_FIBER_2G                 0x12    
                                                MASTER_FIBER_0G                 0x14
                                                MASTER_COPPER_16                0x2
                                                MASTER_COPPER_8G                0x6
                                                MASTER_COPPER_12_2              0x9
                                                SLAVE_FIBER_8G                  0x8
                                                SLAVE_FIBER_4G                  0x3
                                                SLAVE_COPPER_20                 0xA
                                                SLAVE_COPPER_24                 0xA
                                                SLAVE_100FX_8                   0xD
                                                SLAVE_100FX_16                  0xC
                                                SLAVE_COPPER_8G                 0xE
                                                SLAVE_COPPER_16_2               0xF
                                                STACK_FIBER_8G                  0x10
                                                STACK_COPPER_8G                 0x11
                                                SLAVE_100FX_24                  0x13
                  The length of the octet string is 28.

          Both format version 1 and 2:
          octet 3  - processor type, PVR_M603=3, PVR_M604=4, PVR_M603E=6,
                     PVR_M603EV=7, PVR_M604E=9
          octet 4 to
          octet 5  - processor speed in MHz
          octet 6  - MAC type: 
                                        MAC_SEEQ_10_100=1, 
                                        MAC_DEC_10_100=2,
                        MAC_SEEQ_1000=5, 
                                                MAC_GMAC_1000=6,        
                        MAC_VLSI_1000=9
          octet 7  - PHY type, PHY_NONE=0, PHY_QSI=1, PHY_ICS=3,
                     PHY_NATIONAL=4, PHY_LEVEL1=6, PHY_LEVEL16=7,
                     PHY_LEVEL24=8
          octet 8  - port type, COPPER=0, FIBER=1
          octet 9  - fiber port type, NONFIBER=0, SX_FIBER=1,
                     LX_FIBER=2, LHX_FIBER=3, LX_SX_FIBER=4,
                     LHB_FIBER=5
          octet 10 to
          octet 13 - DRAM size in KBytes
          octet 14 to
          octet 17 - boot flash size in KBytes
          octet 18 to
          octet 21 - code flash size in KBytes
          octet 22 to
          octet 27 - serial number.

                  Format version 1 only:
          octet 28 - chassis backplane type. 
                        chassis4000     =       0x00
                        chassis8000     =       0x04
                        Turbo8                  =       0x07 (stack2)
                        FastIron2               =       0x06 (stack1)"
        ::= { snChasGen 13 }


snChasExpBrdId OBJECT-TYPE
    SYNTAX OCTET STRING
    ACCESS read-only
    STATUS mandatory
    DESCRIPTION
        "The expansion board identifier. Expansion board are those
        boards attaching on the main board. It is an encoded octet
                string with the following meaning:
          octet 0  - octet string format version, which identifies
                     the format of this string.
        If format version octet has the value 1, the octets after
        the version octet have the following meaning:
          octet 1  - expansion board type, HUNDRED_MEG_1PORT=1,
                     HUNDRED_MEG_2PORT=2, HUNDRED_MEG_1PORT_COPPER=3,
                     HUNDRED_MEG_2PORT_COPPER=4, HUNDRED_MEG_2PORT_LX=5,
                     GIGA_1PORT=8, GIGA_2PORT=9
          octet 2  - fiber port type, NONFIBER=0, SX_FIBER=1,
                     LX_FIBER=2, LHX_FIBER=3, LX_SX_FIBER=4
        (It is obsoleted for Chassis Product)"
    ::= { snChasGen 14 }


snChasSpeedLeds OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "A bit array that contains the value of the
                front panel media LEDs. This is a packed bit string; 
                each LED is encoded into 1 bit for each switch port.  
                The maximum number of ports in one chassis is 24 
                that means 24 Ports Speed LEDs.  The expansion port 
                number always begins from the last main port number. 
                The following shows the meaning of each bit for each 
                switch port:

                bit value  meaning   
                ---------  -------
          0        10 MBit
          1        100 MBit

                The bitmap of LEDs are as following: 
                         (Port1)            (Port4)                    (Port8)
        Bit      (Bit0)             (Bit3)                      (Bit7)
                Byte 1:  LED1   LED2   LED3  LED4   LED5   LED6   LED7   LED8    
                Byte 2:  LED9   LED10  LED11 LED12  LED13  LED14  LED15  LED16     
                Byte 3:  LED17  LED18  LED19 LED20  LED21  LED22  LED23  LED24                    
        ---------"
        ::= { snChasGen 15 }


snChasEnableFanTrap OBJECT-TYPE
        SYNTAX  INTEGER { disabled(0), enabled(1) }
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Indicates whether the SNMP agent process is
                permitted to generate fan failure traps."
    DEFVAL { enabled }
        ::= { snChasGen 16 }


snChasIdNumber OBJECT-TYPE
    SYNTAX  DisplayString (SIZE (0..64))
    ACCESS  read-write
    STATUS  mandatory
    DESCRIPTION
        "An administratively-assigned chassis identity number,
        used by inventory control."
    ::= { snChasGen 17 }


snChasActualTemperature OBJECT-TYPE
    SYNTAX  INTEGER (-110..250)
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "Temperature of the chassis. Each unit is 0.5 degrees Celcius.
                Only management module built with temperature sensor hardware
                is applicable. For those non-applicable management module, it
                returns no-such-name."
        ::= { snChasGen 18 }


snChasWarningTemperature OBJECT-TYPE
    SYNTAX  INTEGER (0..250)
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Actual temperature higher than this threshold value will trigger
                the switch to send a temperature warning trap. Each unit is 0.5
                degrees Celcius. Only management module built with temperature
                sensor hardware is applicable. For those non-applicable management
                module, it returns no-such-name."
        ::= { snChasGen 19 }


snChasShutdownTemperature OBJECT-TYPE
    SYNTAX  INTEGER (0..250)
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Actual temperature higher than this threshold value will shutdown
                a partial of the switch hardware to cool down the system. Each unit
                is 0.5 degrees Celcius. Only management module built with temperature
                sensor hardware is applicable. For those non-applicable management
                module, it returns no-such-name."
        ::= { snChasGen 20 }

snChasEnableTempWarnTrap OBJECT-TYPE
        SYNTAX  INTEGER { disabled(0), enabled(1) }
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Indicates whether the SNMP agent process is
                permitted to generate temperature warning traps."
    DEFVAL { enabled }
        ::= { snChasGen 21 }


-- Power Supply Table


snChasPwrSupplyTable OBJECT-TYPE
        SYNTAX  SEQUENCE OF SnChasPwrSupplyEntry
        ACCESS  not-accessible
        STATUS  mandatory
        DESCRIPTION
                "A table of each power supply information. Only installed
                power supply appears in a table row."
        ::= { snChasPwr 1 }

snChasPwrSupplyEntry OBJECT-TYPE
        SYNTAX  SnChasPwrSupplyEntry
        ACCESS  not-accessible
        STATUS  mandatory
        DESCRIPTION
                "A row in the power supply table."
        INDEX   { snChasPwrSupplyIndex }
        ::= { snChasPwrSupplyTable 1 }

SnChasPwrSupplyEntry ::= SEQUENCE {
        snChasPwrSupplyIndex
                INTEGER,
        snChasPwrSupplyDescription
                DisplayString,
        snChasPwrSupplyOperStatus
                INTEGER
        }

snChasPwrSupplyIndex OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The index to power supply table."
        ::= { snChasPwrSupplyEntry 1 }

snChasPwrSupplyDescription OBJECT-TYPE
    SYNTAX DisplayString (SIZE(0..128))
    ACCESS read-only
    STATUS mandatory
    DESCRIPTION
        "The power supply description string."
    ::= { snChasPwrSupplyEntry 2 }

snChasPwrSupplyOperStatus OBJECT-TYPE
        SYNTAX  INTEGER {
                other(1),
                normal(2),
                failure(3)
                }
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The power supply operation status."
    ::= { snChasPwrSupplyEntry 3 }


-- Fan Table


snChasFanTable OBJECT-TYPE
        SYNTAX  SEQUENCE OF SnChasFanEntry
        ACCESS  not-accessible
        STATUS  mandatory
        DESCRIPTION
                "A table of each fan information. Only installed
                fan appears in a table row."
        ::= { snChasFan 1 }

snChasFanEntry OBJECT-TYPE
        SYNTAX  SnChasFanEntry
        ACCESS  not-accessible
        STATUS  mandatory
        DESCRIPTION
                "A row in the fan table."
        INDEX   { snChasFanIndex }
        ::= { snChasFanTable 1 }

SnChasFanEntry ::= SEQUENCE {
        snChasFanIndex
                INTEGER,
        snChasFanDescription
                DisplayString,
        snChasFanOperStatus
                INTEGER
        }

snChasFanIndex OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The index to fan table."
        ::= { snChasFanEntry 1 }

snChasFanDescription OBJECT-TYPE
    SYNTAX DisplayString (SIZE(0..128))
    ACCESS read-only
    STATUS mandatory
    DESCRIPTION
        "The fan description string."
    ::= { snChasFanEntry 2 }

snChasFanOperStatus OBJECT-TYPE
        SYNTAX  INTEGER {
                other(1),
                normal(2),
                failure(3)
                }
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The fan operation status."
    ::= { snChasFanEntry 3 }


-- Agent Groups

snAgentGbl                              OBJECT IDENTIFIER ::= { snAgentSys 1 }
snAgentBrd                              OBJECT IDENTIFIER ::= { snAgentSys 2 }
snAgentTrp                              OBJECT IDENTIFIER ::= { snAgentSys 3 }
snAgentBoot                             OBJECT IDENTIFIER ::= { snAgentSys 4 }
snAgCfgEos                              OBJECT IDENTIFIER ::= { snAgentSys 5 }
snAgentLog                              OBJECT IDENTIFIER ::= { snAgentSys 6 }
snAgentSysParaConfig    OBJECT IDENTIFIER ::= { snAgentSys 7 }
snAgentConfigModule             OBJECT IDENTIFIER ::= { snAgentSys 8 }
snAgentUser                             OBJECT IDENTIFIER ::= { snAgentSys 9 }
snAgentRedundant                OBJECT IDENTIFIER ::= { snAgentSys 10 }
  


-- SECTION 2: MIB Objects


-- Agent's Global Group
        
snAgReload OBJECT-TYPE
        SYNTAX  INTEGER {
                other(1),
                running(2),
                reset(3)
                }
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Action object to reboot the agent.
                The following values can only be read:
                  other(1).....agent in unknown or other state
                  running(2)...agent running

                The following value can be written:
                  reset(3).....do a hard reset

                The agent will return a
                response before the action occurs."
        ::= { snAgentGbl 1 }

snAgEraseNVRAM OBJECT-TYPE
        SYNTAX  INTEGER {
                normal(1),
                error(2),
                erase(3),
                erasing(4)              
                }
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Action object to erase NVRAM of the agent.
                The following values can only be read:
                  normal(1)
                  error(2)... operation failed or bad flash
                  erasing(4)...agent is erasing NVRAM flash

                The following value can be written:
                  erase(3).....do erase 

                The agent will return a response even before the erase is done.
                And the read value will be erasing until erase is done.
                And the erase request will be rejected until error or normal."
        ::= { snAgentGbl 2 }

snAgWriteNVRAM OBJECT-TYPE
        SYNTAX  INTEGER {
                normal(1),
                error(2),
                write(3),
                writing(4)              
                }
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Action object to save all configuration info to
                 NVRAM of the agent.
                The following values can only be read:
                  normal(1)
                  error(2)... operation failed or bad flash
                  writing(4)...agent is writing NVRAM flash

                The following value can be written:
                  write(3).....do write 

                The agent will return a response even before the write is done.
                And the read value will be writing until write is done.
                And the write request will be rejected until error or normal."
        ::= { snAgentGbl 3 }

snAgConfigFromNVRAM OBJECT-TYPE
        SYNTAX  INTEGER {
                normal(1),
                error(2),
                config(3),
                configing(4)
        }
        ACCESS  not-accessible
        STATUS  mandatory
        DESCRIPTION
                "Action object to config the switch from NVRAM of the agent.
                The following values can only be read:
                  normal(1)
                  error(2)... operation failed or bad flash
                  configing(4)...configing from NVRAM flash is in process.
                The following value can be written:
                  config(3).....do config 

                The agent will return a response after config is done."
        ::= { snAgentGbl 4 }

--  image and config file down/up load 

snAgTftpServerIp OBJECT-TYPE
        SYNTAX  IpAddress
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "The tftp server address, this will be used for both download/upload
                 image file and config file."
        ::= { snAgentGbl 5 }

snAgImgFname OBJECT-TYPE
        SYNTAX  DisplayString (SIZE (0..32))
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Name of the image file including path currently associated
                with the system. When the object is not used, the value is a
                zero length string."
        ::= { snAgentGbl 6 }


snAgImgLoad OBJECT-TYPE
        SYNTAX  INTEGER {
                normal(1),
                flashPrepareReadFailure(2),
                flashReadError(3),
                flashPrepareWriteFailure(4),
                flashWriteError(5),
                tftpTimeoutError(6),
                tftpOutOfBufferSpace(7),
                tftpBusy(8),
            tftpRemoteOtherErrors(9), 
            tftpRemoteNoFile(10), 
            tftpRemoteBadAccess(11), 
            tftpRemoteDiskFull(12), 
            tftpRemoteBadOperation(13), 
            tftpRemoteBadId(14), 
            tftpRemoteFileExists(15), 
            tftpRemoteNoUser(16), 
                operationError(17),
                loading(18),
                uploadPrimary(19),
                downloadPrimary(20),
                uploadSecondary(21),
                downloadSecondary(22),
                tftpWrongFileType(23)
                }
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Action object to down/up load a new image
                to the agent. The following values:
                Error values: from normal(1) to operationError(17) and tftpWrongFileType(23).
                  loading(18) .. operation is in process.

                The following values are used for set :
                  uploadPrimary(19)..upload the Primary image from flash to tftp server.
                  downloadPrimary(20)..download the Primary image from tftp server to flash.
                  uploadSecondary(21)..upload the Secondary image from flash to tftp server. 
                  downloadSecondary(22)..download the Secondary image from tftp server to flash.

                The image filename is defined in
                snAgImgFname. The tftp server address is defined in snAgTftpServerIp.
                Atomic set of snAgImgLoad, snAgImgFname and  
                snAgTftpServerIp is required to allow down/up load to happen. 
                And the write request will be rejected during loading until error 
                or normal."
        ::= { snAgentGbl 7 }

snAgCfgFname OBJECT-TYPE
        SYNTAX  DisplayString (SIZE (0..32))
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Name of the config file(s) including path currently associated
                with the system. Some agents in special
                situations may support a value which contains
                multiple file names instead of a single file
                name. Multiple names are specified as a list
                of file names separated by semicolons (;).
                When the object is not used, the value is a
                zero length string."
        ::= { snAgentGbl 8 }

snAgCfgLoad OBJECT-TYPE
        SYNTAX  INTEGER {
                normal(1),
                flashPrepareReadFailure(2),
                flashReadError(3),
                flashPrepareWriteFailure(4),
                flashWriteError(5),
                tftpTimeoutError(6),
                tftpOutOfBufferSpace(7),
                tftpBusy(8),
            tftpRemoteOtherErrors(9), 
            tftpRemoteNoFile(10), 
            tftpRemoteBadAccess(11), 
            tftpRemoteDiskFull(12), 
            tftpRemoteBadOperation(13), 
            tftpRemoteBadId(14), 
            tftpRemoteFileExists(15), 
            tftpRemoteNoUser(16), 
                operationError(17),
                loading(18),
                uploadFromFlashToServer(20),
                downloadToFlashFromServer(21),
                uploadFromDramToServer(22),
                downloadToDramFromServer(23),
                uploadFromFlashToNMS(24),
                downloadToFlashFromNMS(25),
                uploadFromDramToNMS(26),
                downloadToDramFromNMS(27),
                operationDoneWithNMS(28),
                tftpWrongFileType(29)
                }
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Action object to down/up load a config image
                to the agent. The following values can be
                read :
                Error values: from normal(1) to operationError(17) and tftpWrongFileType(29).
                  loading(18) .. operation is in process.


                The following value can be used to set:
                  uploadFromFlashToServer(20)..upload the config from flash
                                              to tftp server. 
                  downloadToFlashFromServer(21)..download the config to flash
                                                from tftp server.
                  uploadFromDramToServer(22)..upload the config from DRAM 
                                             to tftp server.
                  downloadToDramFromServer(23)..download the config to DRAM
                                               from tftp server.

                The following value can be used to set:
                  uploadFromFlashToNMS(24)..upload the config from flash to NMS. 
                  downloadToFlashFromNMS(25)..download the config to flash from NMS.
                  uploadFromDramToNMS(26)..upload the config from DRAM to NMS.
                  downloadToDramFromNMS(27)..download the config to DRAM from NMS.

                The config filename is defined in
                snAgCfgFname. The tftp server address is defined in snAgTftpServerIp.
                Atomic set of snAgCfgLoad, snAgCfgFname and  snAgTftpServerIp is
                required to allow down/up load to happen. And the write request 
                will be rejected during loading until error or normal.
                For those NMS commands from (24) to (27), The snAgCfgEosTable MIB must
                be sent along in one PDU.  A seperate write memory cli or set 
                snAgWriteNVRAM is required to save the config to NVRAM."
        ::= { snAgentGbl 9 }

-- default gateway ip address

snAgDefGwayIp OBJECT-TYPE
        SYNTAX  IpAddress
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "The default gateway (router) address."         
        ::= { snAgentGbl 10 }


-- image version

snAgImgVer OBJECT-TYPE
        SYNTAX  DisplayString (SIZE(0..32))
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The version of the running software in the form
                'major.minor.maintenance[letters]'."
        ::= { snAgentGbl 11 }

snAgFlashImgVer OBJECT-TYPE
        SYNTAX  DisplayString (SIZE(0..32))
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The version of the software image saved in local
                storage such as flash memory in the form
                'major.minor.maintenance[letters]'. If not
                known or not available, then the value is
                a zero length string."
        ::= { snAgentGbl 12 }

snAgGblIfIpAddr OBJECT-TYPE
        SYNTAX  IpAddress
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "The interface ip address."
        ::= { snAgentGbl 13 }

snAgGblIfIpMask OBJECT-TYPE
        SYNTAX  IpAddress
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "The interface ip address mask."
        ::= { snAgentGbl 14 }

snAgGblPassword OBJECT-TYPE
        SYNTAX  DisplayString (SIZE (0..48))
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "System Security Access Password and this is only 
                 allowed to use for setting but not for reading.
                 An SNMP-Get will get an zero string."
        ::= { snAgentGbl 15 }

snAgTrpRcvrCurEntry OBJECT-TYPE
        SYNTAX  INTEGER (0..255)
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The current total entries of the Trap 
                Receiver Table are created."
        ::= { snAgentGbl 16 }

snAgGblDataRetrieveMode OBJECT-TYPE
        SYNTAX  INTEGER {
                nextbootCfg(0),             
                operationalData(1)
                }
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "By default, this mode is set to nextbootCfg(0).
                 The VLAN Table and Port-STP Table data will be retrieved
                 according to this mode.
                 nextbootCfg(0).........the nextboot configuration data are retrieved
                 operationalData(1)..........the current running data are retrieved"  
        ::= { snAgentGbl 19 }


snAgSystemLog OBJECT-TYPE
        SYNTAX  OCTET STRING (SIZE(5))  
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "The system log object to indicate whether any Network
                 Management Station(NMS) has login.  The first byte
                 of the octet string is the value decribed below and 
                 followed by 4 bytes of secret code.
                  login(1)..... a value for a NMS to login.
                  heartbeat(2)... a value for the login NMS periodically to 
                                checkin; Otherwise, the Agent will automatically
                                set this object to logout(3) after a timeout 
                                period. 
                  logout(3).... a value for a NMS to logout.
                  changePassword(4).... a value for the login NMS to change
                                password, only if snAgGblPasswordChangeMode
                                                was configured to 'anyMgmtEntity'.
                  changeReadOnlyCommunity(5).... a value for the login NMS
                                to change the read-only community string,
                                only if snAgGblPasswordChangeMode was
                                configured to 'anyMgmtEntity'.
                  changeReadWriteCommunity(6).... a value for the login NMS
                                to change the read-write community string,
                                only if snAgGblPasswordChangeMode was
                                configured to 'anyMgmtEntity'."
        ::= { snAgentGbl 20 }


snAgGblEnableColdStartTrap OBJECT-TYPE
        SYNTAX  INTEGER { disabled(0), enabled(1) }
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Indicates whether the SNMP agent process is
                permitted to generate cold start traps."
    DEFVAL { enabled }
        ::= { snAgentGbl 21 }


snAgGblEnableLinkUpTrap OBJECT-TYPE
        SYNTAX  INTEGER { disabled(0), enabled(1) }
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Indicates whether the SNMP agent process is
                permitted to generate link up traps."
    DEFVAL { enabled }
        ::= { snAgentGbl 22 }


snAgGblEnableLinkDownTrap OBJECT-TYPE
        SYNTAX  INTEGER { disabled(0), enabled(1) }
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Indicates whether the SNMP agent process is
                permitted to generate link down traps."
    DEFVAL { enabled }
        ::= { snAgentGbl 23 }

snAgGblPasswordChangeMode OBJECT-TYPE
        SYNTAX  INTEGER {
              anyMgmtEntity(1),
              consoleAndTelnet(2),
              consoleOnly(3),
              telnetOnly(4) }
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "Specify which management entity is allowed to change
                the password. 'anyMgmtEntity' management entities are
                SNMP management station, console command line interface,
                and telnet command line interface. For security reason,
                this object can only be modified by console command line
                interface or telnet command line interface. The default
                value is 'consoleAndTelnet', of which both console and
                telnet command line interfaces are allowed to change
                the password."
        ::= { snAgentGbl 24 }

snAgGblReadOnlyCommunity OBJECT-TYPE
        SYNTAX  DisplayString (SIZE (0..32))
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "SNMP read community string and this is only allowed
                to use for setting but not for reading. An SNMP-Get
                will get an zero length string."
        ::= { snAgentGbl 25 }

snAgGblReadWriteCommunity OBJECT-TYPE
        SYNTAX  DisplayString (SIZE (0..32))
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "SNMP read-write community string and this is only
                allowed to use for setting but not for reading. An
                SNMP-Get will get an zero length string."
        ::= { snAgentGbl 26 }

snAgGblCurrentSecurityLevel OBJECT-TYPE
        SYNTAX  INTEGER (0..5)
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "This represnts the current log-in security level.
                Each level of security requires a password to permit
                user for different system configurations."
        ::= { snAgentGbl 27 }

snAgGblSecurityLevelSet OBJECT-TYPE
        SYNTAX  INTEGER (0..5)
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "This shows which the security level password to be set."
        ::= { snAgentGbl 28 }

snAgGblLevelPasswordsMask OBJECT-TYPE
        SYNTAX  INTEGER 
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "This shows the bitmap of level passwords which successfully assigned to the system."
        ::= { snAgentGbl 29 }

snAgGblQueueOverflow OBJECT-TYPE
        SYNTAX  INTEGER { false(0), true(1) } 
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "false - The device queues are not overflow.
                 true  - The device queues are overflow."
        ::= { snAgentGbl 30 }

snAgGblBufferShortage OBJECT-TYPE
        SYNTAX  INTEGER { false(0), true(1) } 
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "false - The device buffers are adequate.
                 true  - The device buffers are in shortage."
        ::= { snAgentGbl 31 }

snAgGblDmaFailure OBJECT-TYPE
        SYNTAX  INTEGER { false(0), true(1) } 
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "false - The device DMAs are in good condition.
                 true  - One of the DMAs in the device fails."
        ::= { snAgentGbl 32 }

snAgGblResourceLowWarning OBJECT-TYPE
        SYNTAX  INTEGER { false(0), true(1) } 
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "false - No, the device does not have resource-low-warning.
                 true  - Yes, the device does have resource-low-warning."
        ::= { snAgentGbl 33 }

snAgGblExcessiveErrorWarning OBJECT-TYPE
        SYNTAX  INTEGER { false(0), true(1) } 
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "false - No, the device does not have any excessive collision, FCS errors, alignment warning etc.
                 true  - Yes, the device does have."
        ::= { snAgentGbl 34 }

snAgGblCpuUtilData OBJECT-TYPE
        SYNTAX  Gauge
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The statistics collection of utilization of the CPU in the device."
        ::= { snAgentGbl 35 }

snAgGblCpuUtilCollect OBJECT-TYPE
        SYNTAX  INTEGER { disabled(0), enabled(1) }
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "enable(1)  - The beginning of statistics collection of utilization of the CPU in the device.
                 disable(0) - The end of statistics collection of utilization of the CPU in the device."
        ::= { snAgentGbl 36 }

snAgGblTelnetTimeout OBJECT-TYPE
        SYNTAX  INTEGER (0..240)
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Telnet session idling timeout value. Writing value 0 to
                this object never timeouts any telnet sessions. Each value
                unit is one minute."
        ::= { snAgentGbl 37 }

snAgGblEnableWebMgmt OBJECT-TYPE
        SYNTAX  INTEGER { disabled(0), enabled(1) }
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Enable/disable web management."
    DEFVAL { enabled }
        ::= { snAgentGbl 38 }

snAgGblSecurityLevelBinding OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "This represnts the binding of a given password to which
                security level. A value of 255 indicates an invalid
                binding."
        ::= { snAgentGbl 39 }

snAgGblEnableSLB OBJECT-TYPE
        SYNTAX  INTEGER { disabled(0), enabled(1) }
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "Enable/disable Server Load Balancing."
        ::= { snAgentGbl 40 }

snAgSoftwareFeature OBJECT-TYPE
    SYNTAX  OCTET STRING
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "A bit string representing the software feature of the running
                switch/router image. These features were conditional compiled
                to different product images. For each bit, exist feature has
                a value of 1, but non-exist feature has a value of 0.
                  octet 0, bit 0 - RMON
                  octet 0, bit 1 - ipx switching
                  octet 0, bit 2 - server load balancing
                  octet 0, bit 3 - layer 3 filter in switch
                  octet 0, bit 4 - ipx routing
                  octet 0, bit 5 - appletalk routing
                  octet 0, bit 6 - ip multicast routing
                  octet 0, bit 7 - local access control
                  octet 1, bit 0 - BGP routing
                  octet 1, bit 1 - loopback interface
                  octet 1, bit 2 - BigIron multi-management module
                  octet 1, bit 3 - BigIron SYSIF II
                  octet 1, bit 4 - BigIron POS support
                  octet 1, bit 5 - appletalk cable vlan
                  octet 1, bit 6 - 64 subnet
                  octet 1, bit 7 - multi-slot trunk
                  octet 2, bit 0 - TACACS
                  octet 2, bit 1 - Gigabit Ethernet port auto-negotiation mode
                  octet 2, bit 2 - FSRP
                  octet 2, bit 3 - Exodus requested OSPF enhancement
                  octet 2, bit 4 - OSPF NSSA
                  octet 2, bit 5 - POS
                  octet 2, bit 6 - QOS
                  octet 2, bit 7 - Single Span
                  octet 3, bit 0 - Fast Span
                  octet 3, bit 1 - Base L3
                  octet 3, bit 2 - static log buffer
                Bit 0 is the least significant bit of an octet, and
                bit 7 is the most significant bit of an octet."
        ::= { snAgentGbl 41 }

snAgGblEnableModuleInsertedTrap OBJECT-TYPE
        SYNTAX  INTEGER { disabled(0), enabled(1) }
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Indicates whether the SNMP agent process is permitted to
                generate hardware module inserted to chassis traps."
    DEFVAL { enabled }
        ::= { snAgentGbl 42 }

snAgGblEnableModuleRemovedTrap OBJECT-TYPE
        SYNTAX  INTEGER { disabled(0), enabled(1) }
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Indicates whether the SNMP agent process is permitted to
                generate hardware module removed from chassis traps."
    DEFVAL { enabled }
        ::= { snAgentGbl 43 }

snAgGblTrapMessage OBJECT-TYPE
    SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "A generic trap message string."
        ::= { snAgentGbl 44 }

snAgGblEnableTelnetServer OBJECT-TYPE
        SYNTAX  INTEGER { disabled(0), enabled(1) }
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Enable or disable telnet server in device."
    DEFVAL { enabled }
        ::= { snAgentGbl 45 }

snAgGblTelnetPassword OBJECT-TYPE
        SYNTAX  DisplayString (SIZE (0..48))
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Telnet Access Password and this is only 
                 allowed to use for setting but not for reading.
                 An SNMP-Get will get an zero string."
        ::= { snAgentGbl 46 }

snAgBuildDate OBJECT-TYPE
        SYNTAX  DisplayString (SIZE(0..32))
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The date of the built software."
        ::= { snAgentGbl 47 }

snAgBuildtime OBJECT-TYPE
        SYNTAX  DisplayString (SIZE(0..32))
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The time of the built software."
        ::= { snAgentGbl 48 }

snAgBuildVer OBJECT-TYPE
        SYNTAX  DisplayString (SIZE(0..32))
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The version of the built software in the form
                'major.minor.maintenance[letters]'."
        ::= { snAgentGbl 49 }

-- Agent Board Table


snAgentBrdTable OBJECT-TYPE
        SYNTAX  SEQUENCE OF SnAgentBrdEntry
        ACCESS  not-accessible
        STATUS  mandatory
        DESCRIPTION
                "A table of each physical board information."
        ::= { snAgentBrd 1 }

snAgentBrdEntry OBJECT-TYPE
        SYNTAX  SnAgentBrdEntry
        ACCESS  not-accessible
        STATUS  mandatory
        DESCRIPTION
                "A row in the Agent Board table."
        INDEX   { snAgentBrdIndex }
        ::= { snAgentBrdTable 1 }

SnAgentBrdEntry ::= SEQUENCE {
        snAgentBrdIndex
                INTEGER,
        snAgentBrdMainBrdDescription
                DisplayString,
        snAgentBrdMainBrdId
                OCTET STRING,
        snAgentBrdMainPortTotal
                INTEGER,
        snAgentBrdExpBrdDescription
                DisplayString,
        snAgentBrdExpBrdId
                OCTET STRING,
        snAgentBrdExpPortTotal
                INTEGER,
        snAgentBrdStatusLeds 
                INTEGER,
        snAgentBrdTrafficLeds 
                INTEGER,
        snAgentBrdMediaLeds 
                INTEGER,
        snAgentBrdSpeedLeds 
                INTEGER,
        snAgentBrdModuleStatus
                INTEGER,
        snAgentBrdRedundantStatus
                INTEGER,
        snAgentBrdAlarmLeds 
                INTEGER,
        snAgentBrdTxTrafficLeds 
                INTEGER,
        snAgentBrdRxTrafficLeds 
                INTEGER
        }

snAgentBrdIndex OBJECT-TYPE
        SYNTAX  INTEGER (1..8)
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The index to the Agent Interface Table."
        ::= { snAgentBrdEntry 1 }

snAgentBrdMainBrdDescription OBJECT-TYPE
    SYNTAX DisplayString (SIZE(0..128))
    ACCESS read-only
    STATUS mandatory
    DESCRIPTION
        "The main board description string."
    ::= { snAgentBrdEntry 2 }

snAgentBrdMainBrdId OBJECT-TYPE
    SYNTAX OCTET STRING
    ACCESS read-only
        STATUS mandatory
        DESCRIPTION
        "The main board identifier, which can uniquely identify a board
        type. It is an encoded octet string with the following meaning:
          octet 0  - octet string format version, which identifies the
                     format of this string.
        If format version octet has the value 2, the octets after the
        version octet have the following meaning:
          octet 1  - product type: 
                                                BI_WG                                   0x57
                                                BI_BB                                   0x42
                                                BI_NI                                   0x4E
          octet 2  - module type:
                                                MASTER_FIBER_8G                 0x0
                                                MASTER_FIBER_4G                 0x1
                                                MASTER_FIBER_2G                 0x12    
                                                MASTER_FIBER_0G                 0x14    

                                                MASTER_COPPER_16                0x2
                                                MASTER_COPPER_8G                0x6
                                                MASTER_COPPER_12_2              0x9

                                                SLAVE_FIBER_8G                  0x8
                                                SLAVE_FIBER_4G                  0x3
                                                SLAVE_FIBER_2G                  0x17

                                                SLAVE_COPPER_8G                 0xE
                                                SLAVE_COPPER_2G                 0x18
                                                SLAVE_COPPER_16_2               0xF
                                                SLAVE_COPPER_20                 0xA
                                                SLAVE_COPPER_24                 0xA

                                                SLAVE_100FX_8                   0xD
                                                SLAVE_100FX_16                  0xC
                                                SLAVE_100FX_24                  0x13

                                                STACK_FIBER_8G                  0x10
                                                STACK_COPPER_8G                 0x11

                                                POS_622M                                0x15
                                                POS_155M                                0x16
          octet 3  - processor type, PVR_M603=3, PVR_M604=4, PVR_M603E=6,
                     PVR_M603EV=7, PVR_M604E=9
          octet 4 to
          octet 5  - processor speed in MHz
          octet 6  - MAC type: 
                                        MAC_SEEQ_10_100=1, 
                                        MAC_DEC_10_100=2,
                        MAC_SEEQ_1000=5, 
                                                MAC_GMAC_1000=6,        
                        MAC_VLSI_1000=9
          octet 7  - PHY type, PHY_NONE=0, PHY_QSI=1, PHY_ICS=3,
                     PHY_NATIONAL=4, PHY_LEVEL1=6, PHY_LEVEL16=7,
                     PHY_LEVEL24=8
          octet 8  - port type, COPPER=0, FIBER=1
          octet 9  - fiber port type, NONFIBER=0, SX_FIBER=1,
                     LX_FIBER=2, LHX_FIBER=3
          octet 10 to
          octet 13 - DRAM size in KBytes
          octet 14 to
          octet 17 - boot flash size in KBytes
          octet 18 to
          octet 21 - code flash size in KBytes
          octet 22 to
          octet 27 - serial number.
          octet 28 - chassis backplane type. 
                        chassis4000     =       0x00
                        chassis8000     =       0x04
                        Turbo8                  =       0x07 (stack2)
                        FastIron2               =       0x06 (stack1)"
        ::= { snAgentBrdEntry 3 }


snAgentBrdMainPortTotal OBJECT-TYPE
    SYNTAX INTEGER (1..32)
    ACCESS read-only
    STATUS mandatory
    DESCRIPTION
        "The total number of ports for the main board."
    ::= { snAgentBrdEntry 4 }


snAgentBrdExpBrdDescription OBJECT-TYPE
    SYNTAX DisplayString (SIZE(0..128))
    ACCESS read-only
    STATUS mandatory
    DESCRIPTION
        "The expansion board description string. Expansion
        board are those boards attaching on the main board."
    ::= { snAgentBrdEntry 5 }


snAgentBrdExpBrdId OBJECT-TYPE
    SYNTAX OCTET STRING
    ACCESS read-only
    STATUS mandatory
    DESCRIPTION
        "The expansion board identifier. Expansion board are those
        boards attaching on the main board. It is an encoded octet
                string with the following meaning:
          octet 0  - octet string format version, which identifies
                     the format of this string.
        If format version octet has the value 1, the octets after
        the version octet have the following meaning:
          octet 1  - expansion board type, HUNDRED_MEG_1PORT=1,
                     HUNDRED_MEG_2PORT=2, HUNDRED_MEG_1PORT_COPPER=3,
                     HUNDRED_MEG_2PORT_COPPER=4, HUNDRED_MEG_2PORT_LX=5,
                     GIGA_1PORT=8, GIGA_2PORT=9
          octet 2  - fiber port type, NONFIBER=0, SX_FIBER=1,
                     LX_FIBER=2, LHX_FIBER=3, LX_SX_FIBER=4"
    ::= { snAgentBrdEntry 6 }


snAgentBrdExpPortTotal OBJECT-TYPE
        SYNTAX INTEGER (1..24)
    ACCESS read-only
    STATUS mandatory
    DESCRIPTION
        "The total number of ports for the expansion board."
    ::= { snAgentBrdEntry 7 }


snAgentBrdStatusLeds OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "A bit array that contains the value of the
                front panel status LEDs. This is a bit-map; 
                each LED is encoded into 1 bit for each switch
                port.  The maximum number of ports in one chassis 
                is 32 that means 32 Ports Status LEDs. The expansion port 
                number always begins from the last main port number.  
                The following shows the meaning of each bit for each 
                switch port:

                  bit value  meaning
                  --------   ---------  
                     0         off (Link off)
                         1         on  (Link on)

                The bitmap of LEDs are as following: 
                          
                 (Port1)            (Port4)                    (Port8)
        Bit      (Bit0)             (Bit3)                      (Bit7)
                Byte 1:  LED1   LED2   LED3  LED4   LED5   LED6   LED7   LED8    
                Byte 2:  LED9   LED10  LED11 LED12  LED13  LED14  LED15  LED16     
                Byte 3:  LED17  LED18  LED19 LED20  LED21  LED22  LED23  LED24
        --------"
        ::= { snAgentBrdEntry 8 }


snAgentBrdTrafficLeds OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "A bit array that contains the value of the
                front panel traffic LEDs. This is a packed bit string; 
                each LED is encoded into 1 bit for each switch
                port.  The maximum number of ports in one chassis 
                is 24 that means 24 Ports Traffic LEDs. The expansion port 
                number always begins from the last main port number.  
                The following shows the meaning of each bit for each 
                switch port:

                  bit value  meaning
                  --------   ---------  
                     0         off (no traffic)
                         1         on  (traffic)

                The bitmap of LEDs are as following: 
                          
                 (Port1)            (Port4)                    (Port8)
        Bit      (Bit0)             (Bit3)                      (Bit7)
                Byte 1:  LED1   LED2   LED3  LED4   LED5   LED6   LED7   LED8    
                Byte 2:  LED9   LED10  LED11 LED12  LED13  LED14  LED15  LED16     
                Byte 3:  LED17  LED18  LED19 LED20  LED21  LED22  LED23  LED24
        --------"
        ::= { snAgentBrdEntry 9 }


snAgentBrdMediaLeds OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "A bit array that contains the value of the
                front panel media LEDs. This is a packed bit string; 
                each LED is encoded into 1 bit for each switch port.  
                The maximum number of ports in one chassis is 24 
                that means 24 Ports Media LEDs.  The expansion port 
                number always begins from the last main port number. 
                The following shows the meaning of each bit for each 
                switch port:

                bit value  meaning   
                ---------  -------
          0        half duplex
          1        full duplex

                The bitmap of LEDs are as following: 
                         (Port1)            (Port4)                    (Port8)
        Bit      (Bit0)             (Bit3)                      (Bit7)
                Byte 1:  LED1   LED2   LED3  LED4   LED5   LED6   LED7   LED8    
                Byte 2:  LED9   LED10  LED11 LED12  LED13  LED14  LED15  LED16     
                Byte 3:  LED17  LED18  LED19 LED20  LED21  LED22  LED23  LED24                    
        ---------"
        ::= { snAgentBrdEntry 10 }



snAgentBrdSpeedLeds OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "A bit array that contains the value of the
                front panel media LEDs. This is a packed bit string; 
                each LED is encoded into 1 bit for each switch port.  
                The maximum number of ports in one chassis is 24 
                that means 24 Ports Speed LEDs.  The expansion port 
                number always begins from the last main port number. 
                The following shows the meaning of each bit for each 
                switch port:

                bit value  meaning   
                ---------  -------
          0        10 MBit
          1        100 MBit

                The bitmap of LEDs are as following: 
                         (Port1)            (Port4)                    (Port8)
        Bit      (Bit0)             (Bit3)                      (Bit7)
                Byte 1:  LED1   LED2   LED3  LED4   LED5   LED6   LED7   LED8    
                Byte 2:  LED9   LED10  LED11 LED12  LED13  LED14  LED15  LED16     
                Byte 3:  LED17  LED18  LED19 LED20  LED21  LED22  LED23  LED24                    
        ---------"
        ::= { snAgentBrdEntry 11 }

snAgentBrdModuleStatus OBJECT-TYPE
        SYNTAX  INTEGER {
                moduleEmpty(0),             
                moduleGoingDown(2),
                moduleRejected(3),
                moduleBad(4),
                moduleComingUp(9),
                moduleRunning(10)
                }
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "By default, this mode is set to notActivated(0).
                moduleEmpty(0) ......... The slot of the chassis is empty.
                moduleGoingDown(2) ..... The module is going down.
                moduleRejected(3) ...... The module is being rejected due to wrong configuration.
                moduleBad(4) ........... The module Hardware is bad.
                moduleComingUp(9) ...... The module is in power-up cycle.
                moduleRunning(10) ....... The module is running."
        ::= { snAgentBrdEntry 12 }

snAgentBrdRedundantStatus OBJECT-TYPE
        SYNTAX  INTEGER {
                other(1),
                active(2),             
                standby(3),
                crashed(4),
                comingUp(5)
                }
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The redundant status of a module. Non-management module always
                returns other(1). Management module returns the rest of the
                states."
        ::= { snAgentBrdEntry 13 }

snAgentBrdAlarmLeds OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "A bit array that contains the value of the
                front panel media LEDs (for POS Module Only). This is a packed bit string; 
                each LED is encoded into 1 bit for each switch port.  
                The maximum number of ports in one chassis is 24 
                that means 24 Ports Speed LEDs.  The expansion port 
                number always begins from the last main port number. 
                The following shows the meaning of each bit for each 
                switch port:

                bit value  meaning   
                ---------  -------
          0        no alarm
          1        alarm

                The bitmap of LEDs are as following: 
                         (Port1)            (Port4)                    (Port8)
        Bit      (Bit0)             (Bit3)                      (Bit7)
                Byte 1:  LED1   LED2   LED3  LED4   LED5   LED6   LED7   LED8    
                Byte 2:  LED9   LED10  LED11 LED12  LED13  LED14  LED15  LED16     
                Byte 3:  LED17  LED18  LED19 LED20  LED21  LED22  LED23  LED24                    
        ---------"
        ::= { snAgentBrdEntry 14 }


snAgentBrdTxTrafficLeds OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "A bit array that contains the value of the
                front panel transmit traffic LEDs (for POS Module Only). This is a packed bit string; 
                each LED is encoded into 1 bit for each switch
                port.  The maximum number of ports in one chassis 
                is 24 that means 24 Ports Transmit Traffic LEDs. The expansion port 
                number always begins from the last main port number.  
                The following shows the meaning of each bit for each 
                switch port:

                  bit value  meaning
                  --------   ---------  
                     0         off (no transmit traffic)
                         1         on  (transmit traffic)

                The bitmap of LEDs are as following: 
                          
                 (Port1)            (Port4)                    (Port8)
        Bit      (Bit0)             (Bit3)                      (Bit7)
                Byte 1:  LED1   LED2   LED3  LED4   LED5   LED6   LED7   LED8    
                Byte 2:  LED9   LED10  LED11 LED12  LED13  LED14  LED15  LED16     
                Byte 3:  LED17  LED18  LED19 LED20  LED21  LED22  LED23  LED24
        --------"
        ::= { snAgentBrdEntry 15 }

snAgentBrdRxTrafficLeds OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "A bit array that contains the value of the
                front panel receive traffic LEDs (for POS Module Only). This is a packed bit string; 
                each LED is encoded into 1 bit for each switch
                port.  The maximum number of ports in one chassis 
                is 24 that means 24 Ports Receive Traffic LEDs. The expansion port 
                number always begins from the last main port number.  
                The following shows the meaning of each bit for each 
                switch port:

                  bit value  meaning
                  --------   ---------  
                     0         off (no receive traffic)
                         1         on  (receive traffic)

                The bitmap of LEDs are as following: 
                          
                 (Port1)            (Port4)                    (Port8)
        Bit      (Bit0)             (Bit3)                      (Bit7)
                Byte 1:  LED1   LED2   LED3  LED4   LED5   LED6   LED7   LED8    
                Byte 2:  LED9   LED10  LED11 LED12  LED13  LED14  LED15  LED16     
                Byte 3:  LED17  LED18  LED19 LED20  LED21  LED22  LED23  LED24
        --------"
        ::= { snAgentBrdEntry 16 }

-- Trap Receiver Table


snAgTrpRcvrTable OBJECT-TYPE
        SYNTAX  SEQUENCE OF SnAgTrpRcvrEntry
        ACCESS  not-accessible
        STATUS  mandatory
        DESCRIPTION
                "A table of managers which to send traps."
        ::= { snAgentTrp 1 }

snAgTrpRcvrEntry OBJECT-TYPE
        SYNTAX  SnAgTrpRcvrEntry
        ACCESS  not-accessible
        STATUS  mandatory
        DESCRIPTION
                "A row in the trap receiver table.
                The column snAgTrpRcvrStatus is used to create
                and delete rows in the table. Creation requires
                a SET PDU with objects snAgTrpRcvrIndex,
                snAgTrpRcvrIpAddr, snAgTrpRcvrComm and 
                snAgTrpRcvrStatus."
        INDEX   { snAgTrpRcvrIndex }
        ::= { snAgTrpRcvrTable 1 }

SnAgTrpRcvrEntry ::= SEQUENCE {
        snAgTrpRcvrIndex
                INTEGER,
        snAgTrpRcvrIpAddr
                IpAddress,
        snAgTrpRcvrComm
                OCTET STRING,
        snAgTrpRcvrStatus
                INTEGER
        }

snAgTrpRcvrIndex OBJECT-TYPE
        SYNTAX  INTEGER (1..10)
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The index to the Trap Receiver Table."
        ::= { snAgTrpRcvrEntry 1 }

snAgTrpRcvrIpAddr OBJECT-TYPE
        SYNTAX  IpAddress
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "The ip address for
                SNMP manager that is to receive the trap."
        ::= { snAgTrpRcvrEntry 2 }

snAgTrpRcvrComm OBJECT-TYPE
        SYNTAX  OCTET STRING (SIZE(0..32))
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Community string to use."
        ::= { snAgTrpRcvrEntry 3 }


snAgTrpRcvrStatus OBJECT-TYPE
        SYNTAX  INTEGER {
                other(1),
                valid(2),
                delete(3),
                create(4),
                ignore(5)
                }
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "This object is used to create and
                delete rows in the table and control
                if they are used. The values
                that can be written are:
                  ignore(5)...don't use this entry to
                                send traps to at this time
                  delete(3)...deletes the row
                  create(4)...creates a new row

                If the row exists, then a SET with
                value of create(5) returns error
                'badValue'. Deleted rows go away
                immediately. The following values
                can be returned on reads:
                  other(1)....some other case
                  valid(2)....the row exists and is valid
                  ignore(5)...don't use this entry to
                                send traps to at this time"
        ::= { snAgTrpRcvrEntry 4 }


-- Boot Sequence Table


snAgBootSeqTable OBJECT-TYPE
        SYNTAX  SEQUENCE OF SnAgBootSeqEntry
        ACCESS  not-accessible
        STATUS  mandatory
        DESCRIPTION
                "A table of image load sequnce instructions to the boot code.
                Boot code will start from instruction of the first valid entry
                to load the image. If failed, it will use the second valid
                entry and so on, until a succesful load has completed. Each
                entry must have an unique instruction, duplicate instructions
                will be rejected."
        ::= { snAgentBoot 1 }

snAgBootSeqEntry OBJECT-TYPE
        SYNTAX  SnAgBootSeqEntry
        ACCESS  not-accessible
        STATUS  mandatory
        DESCRIPTION
                "A row in the boot sequence table."
        INDEX   { snAgBootSeqIndex }
        ::= { snAgBootSeqTable 1 }

SnAgBootSeqEntry ::= SEQUENCE {
        snAgBootSeqIndex
                INTEGER,
        snAgBootSeqInstruction
                INTEGER,
        snAgBootSeqIpAddr
                IpAddress,
        snAgBootSeqFilename
                DisplayString,
        snAgBootSeqRowStatus
                INTEGER
        }

snAgBootSeqIndex OBJECT-TYPE
        SYNTAX  INTEGER (1..4)
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The index to the boot sequence table."
        ::= { snAgBootSeqEntry 1 }

snAgBootSeqInstruction OBJECT-TYPE
        SYNTAX  INTEGER {
                fromPrimaryFlash(1),
                fromSecondaryFlash(2),
                fromTftpServer(3),
                fromBootpServer(4) }
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "The instruction for the boot code."
        ::= { snAgBootSeqEntry 2 }

snAgBootSeqIpAddr OBJECT-TYPE
        SYNTAX  IpAddress
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "The ip address of the TFTP server if snAgBootSeqInstruction
                was set to 'fromTftpServer'; otherwise, this object is not
                used in any other boot instruction."
        ::= { snAgBootSeqEntry 3 }

snAgBootSeqFilename OBJECT-TYPE
        SYNTAX  DisplayString (SIZE (0..32))
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "The image filename on the TFTP server if snAgBootSeqInstruction
                was set to 'fromTftpServer'; otherwise, this object is not
                used in any other boot instruction."
        ::= { snAgBootSeqEntry 4 }

snAgBootSeqRowStatus OBJECT-TYPE
        SYNTAX  INTEGER {
                other(1),
                valid(2),
                delete(3),
                create(4) }
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "To create or delete a boot sequence table entry."
        ::= { snAgBootSeqEntry 5 }

--- Encoded Octet Strings for the Configuration File Transfer


snAgCfgEosTable OBJECT-TYPE
        SYNTAX  SEQUENCE OF SnAgCfgEosEntry
        ACCESS  not-accessible
        STATUS  mandatory
        DESCRIPTION
                "This table represents the fragmented Configuration File data packet 
                with checksum include in each rows of this table.  A SNMP-SET
                represents configuration file download, and a SNMP-GET represents
                configuration file upload.  This action is only if the SNMP-SET of
                snAgCfgLoad command is sent along with this table consecutively.  The 
                applicable snAgCfgLoad command value is as followings:
                uploadFromFlashToNMS(23),
                downloadToFlashFromNMS(24),
                uploadFromDramToNMS(25),
                downloadToDramFromNMS(26)." 
        ::= { snAgCfgEos 1 }


snAgCfgEosEntry OBJECT-TYPE
        SYNTAX  SnAgCfgEosEntry 
        ACCESS  not-accessible
        STATUS  mandatory
        DESCRIPTION
                "An EOS row in the table of encoded octet strings for table 
                snAgCfgEosTable. "
        INDEX  { snAgCfgEosIndex }
        ::= { snAgCfgEosTable 1 }



SnAgCfgEosEntry ::= 
        SEQUENCE {
        snAgCfgEosIndex
                INTEGER,
        snAgCfgEosPacket 
                OCTET STRING,
        snAgCfgEosChkSum
                INTEGER
        }


snAgCfgEosIndex OBJECT-TYPE
        SYNTAX  INTEGER 
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                 "Each VLAN EOS Buffer Identifier have a multiple 
                 VLAN table entries."
        ::= { snAgCfgEosEntry 1 }

snAgCfgEosPacket OBJECT-TYPE
        SYNTAX  OCTET STRING (SIZE(0..1000))
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "An encoded octet string. On reads it contains an integral 
                number of configuration file data packets. The size 
                of each encoded octet string is less than or equal to 1400
                bytes."
        ::= { snAgCfgEosEntry 2 }


snAgCfgEosChkSum OBJECT-TYPE
        SYNTAX  INTEGER 
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                 "A checksum of each configuration file data packet." 
        ::= { snAgCfgEosEntry 3 }


-- Stackable Management Group

snStackGen                              OBJECT IDENTIFIER ::= { snStack 1 }
snStackSecSwitchInfo    OBJECT IDENTIFIER ::= { snStack 2 }

-- MIB Objects


-- General Stackable Management Information

snStackPriSwitchMode OBJECT-TYPE
        SYNTAX  INTEGER {
                disabled(0),             
                enabled(1)
                }
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "The Stackable Management Primary Switch mode
                 either enabled or disabled and the default is 
                 disabled mode.
                 enabled(1)...........primary switch enabled
                 disabled(0)..........primary switch disabled"  
        ::= { snStackGen 1 }

snStackMaxSecSwitch OBJECT-TYPE
        SYNTAX  INTEGER 
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The Maximum Secondary Switches are allowed in the
                 Stackable Management Group."
        ::= { snStackGen 2 }

snStackTotalSecSwitch OBJECT-TYPE
        SYNTAX  INTEGER 
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The Total Secondary Switches currently connected to the
                 Stackable Management Group."
        ::= { snStackGen 3 }

snStackSyncAllSecSwitch OBJECT-TYPE
        SYNTAX  INTEGER {
                normal(0),
                invalid(1),
                device(2),
                global(3),
                local(4)
                }
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Synchronize all the secondary switches in the
                 Stackable Management Group with the following commands.
                 device(2)...........device related parameters.
                 global(3)...........global parameters.  
                 local(4)............local parameters.
                 The return result of the above commands are either
                 normal(0)...........normal condition.
                 invalid(1)...........invalid result."  
        ::= { snStackGen 4 }

snStackSmSlotIndex OBJECT-TYPE
        SYNTAX  INTEGER (0..8)
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "The Slot 0 is the Master slot and Slot 1-8 are slaves. 
                 All the slot-based MIB data can be retrieved with respect to 
                 this slot index such as snChassis global MIB. "
        ::= { snStackGen 5 }

snStackFmpSetProcess OBJECT-TYPE
        SYNTAX  INTEGER { 
                                                normal(0), 
                                                pending(1), 
                                                failure(2)
                                        }
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "normal(0)  - The set process is either in an idle state or FMP-SET-SUCCESS state.
                 pending(1) - The pending process is waiting for the result of an FMP-SET.
                 failure(2) - The failure result of an FMP-SET."
        ::= { snStackGen 6 }




-- Stackable Management Secondary Switch Information Table


snStackSecSwitchTable OBJECT-TYPE
        SYNTAX  SEQUENCE OF SnStackSecSwitchEntry
        ACCESS  not-accessible
        STATUS  mandatory
        DESCRIPTION
                "If snSwGroupOperMode is configured as basic mode
                 which is VLAN by Port, Layer2 switching,
                 then this table is valid.  Each VLAN switch port
                 could have a number of VLAN IDs."
        ::= { snStackSecSwitchInfo 1 }


snStackSecSwitchEntry OBJECT-TYPE
        SYNTAX  SnStackSecSwitchEntry
        ACCESS  not-accessible
        STATUS  mandatory
        DESCRIPTION
                "An entry in the Stackable Management Secondary Switch 
                 Information table."
        INDEX   { 
                snStackSecSwitchIndex
        }
        ::= { snStackSecSwitchTable 1 }


SnStackSecSwitchEntry ::= SEQUENCE {
        snStackSecSwitchIndex
                INTEGER,
        snStackSecSwitchSlotId
                INTEGER,
        snStackSecSwitchPortCnts
                INTEGER,
        snStackSecSwitchEnabled
                INTEGER,
        snStackSecSwitchAck
                INTEGER,
        snStackSecSwitchMacAddr
                MacAddress,
        snStackSecSwitchSyncCmd
                INTEGER, 
        snStackSecSwitchIpAddr
                IpAddress,
        snStackSecSwitchSubnetMask
                IpAddress,
        snStackSecSwitchCfgCmd
                INTEGER 
        }

snStackSecSwitchIndex OBJECT-TYPE
        SYNTAX  INTEGER (1..26)
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The secondary switch index must not be greater than the snStackMaxSecSwitch."
        ::= { snStackSecSwitchEntry 1 }


snStackSecSwitchSlotId OBJECT-TYPE
        SYNTAX  INTEGER (1..26)
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "The secondary switch slot ID must be set before the Configuration 
                 command sent from the primary switch to the secondary switch 
                 either manually or automatically - snStackSecSwitchCfgCmd."
        ::= { snStackSecSwitchEntry 2 }

snStackSecSwitchPortCnts OBJECT-TYPE
        SYNTAX  INTEGER (1..26)
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The number of ports in this secondary switch."
        ::= { snStackSecSwitchEntry 3 }

snStackSecSwitchEnabled OBJECT-TYPE
        SYNTAX  INTEGER {
                disabled(0),             
                enabled(1)
                }
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "The secondary switch has been selected to Stackable Management Group."
        ::= { snStackSecSwitchEntry 4 }

snStackSecSwitchAck OBJECT-TYPE
        SYNTAX  INTEGER {
                disabled(0),             
                enabled(1)
                }
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The secondary switch has sent reponse to the primary switch."
        ::= { snStackSecSwitchEntry 5 }

snStackSecSwitchMacAddr OBJECT-TYPE
        SYNTAX  MacAddress
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The secondary switch physical address. The physical address 
                represents a MAC Station."
        ::= { snStackSecSwitchEntry 6 }

snStackSecSwitchSyncCmd OBJECT-TYPE
        SYNTAX  INTEGER {
                normal(0),
                invalid(1),
                device(2),
                global(3),
                local(4)
                }
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Synchronize the secondary switches in the
                 Stackable Management Group with the following commands.
                 device(2)...........device related parameters.
                 global(3)...........global parameters.  
                 local(4)............local parameters.
                 The return result of the above commands are either
                 normal(0)...........normal condition.
                 invalid(1)...........invalid result."  
        ::= { snStackSecSwitchEntry 7 }

snStackSecSwitchIpAddr OBJECT-TYPE
        SYNTAX  IpAddress
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "The secondary switch IP Address and is used for 
                 manual-command of snStackSecSwitchCfgCmd."
        ::= { snStackSecSwitchEntry 8 }

snStackSecSwitchSubnetMask OBJECT-TYPE
        SYNTAX  IpAddress
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "The secondary switch IP Subnet Mask and is used for 
                 manual-command of snStackSecSwitchCfgCmd."
        ::= { snStackSecSwitchEntry 9 }

snStackSecSwitchCfgCmd OBJECT-TYPE
        SYNTAX  INTEGER {
                normal(0),
                invalid(1),
                auto(2),
                manual(3)
                }
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "snStackSecSwitchSlotId must be set before the Configuration 
                 command sent from the primary switch to the secondary switch 
                 either manually or automatically.
                 auto(2)...........auto-configuration command sent.
                 manual(3).........manual-configuration command sent.
                                                   if manual-mode is used, snStackSecSwitchIpAddr
                                                   and snStackSecSwitchSubnetMask must be
                                                   first set before this command is sent.
                 The return result of the above commands are either
                 normal(0)...........normal condition.
                 invalid(1)..........invalid result."  
        ::= { snStackSecSwitchEntry 10 }

-- System Logging Group

snAgSysLogGbl   OBJECT IDENTIFIER ::= { snAgentLog 1 }

snAgSysLogGblEnable OBJECT-TYPE
        SYNTAX  INTEGER { disabled(0), enabled(1) }
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Enable/disable system logging."
    DEFVAL { enabled }
        ::= { snAgSysLogGbl 1 }

snAgSysLogGblBufferSize OBJECT-TYPE
        SYNTAX  INTEGER (1..100)
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "The number of dynamic system logging entries."
    DEFVAL { 50 }
        ::= { snAgSysLogGbl 2 }

snAgSysLogGblClear OBJECT-TYPE
        SYNTAX  INTEGER { normal(0), clearAll(1), clearDynamic(2), clearStatic(3) }
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Clear dynamic and/or static system logging buffers."
        ::= { snAgSysLogGbl 3 }

snAgSysLogGblCriticalLevel OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Filter events going to the logging buffer. This is a packed
                bit string object of which each bit has the following meaning:
                (bit 0 is the least significant bit).

                  bit position   meaning
                  ------------   -------
                      8-31       reserved
                      7          Warning (warning conditions)
                      6          Notification (normal but significant conditions)
                      5          Informational (informational messages)
                      4          Error (error conditions)
                      3          Emergency (system is unusable)
                      2          Debugging (debugging messages)
                      1          Critical (critical conditions)
                      0          Alert (immediate action needed)

                Setting a critical level bit to 1 makes the logging buffer
                accept the corresponding event. Resetting a critical level
                bit to 0 makes the logging buffer reject the corresponding
                event."
    DEFVAL { 255 }
        ::= { snAgSysLogGbl 4 }

snAgSysLogGblLoggedCount OBJECT-TYPE
        SYNTAX  Counter
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The number events logged in the system logging buffer."
        ::= { snAgSysLogGbl 5 }

snAgSysLogGblDroppedCount OBJECT-TYPE
        SYNTAX  Counter
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The number of events dropped."
        ::= { snAgSysLogGbl 6 }

snAgSysLogGblFlushedCount OBJECT-TYPE
        SYNTAX  Counter
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The number of times that the system logging buffer was cleared."
        ::= { snAgSysLogGbl 7 }

snAgSysLogGblOverrunCount OBJECT-TYPE
        SYNTAX  Counter
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The number of times that the system logging buffer was wrapped
                around."
        ::= { snAgSysLogGbl 8 }

snAgSysLogGblServer OBJECT-TYPE
        SYNTAX  IpAddress
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "IP address of syslog server."
        ::= { snAgSysLogGbl 9 }

snAgSysLogGblFacility OBJECT-TYPE
        SYNTAX  INTEGER {
                kern(1),
                user(2),
                mail(3),
                daemon(4),
                auth(5),
                syslog(6),
                lpr(7),
                news(8),
                uucp(9),
                sys9(10),
                sys10(11),
                sys11(12),
                sys12(13),
                sys13(14),
                sys14(15),
                cron(16),
                local0(17),
                local1(18),
                local2(19),
                local3(20),
                local4(21),
                local5(22),
                local6(23),
                local7(24)
                }
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Facility code."
    DEFVAL { user }
        ::= { snAgSysLogGbl 10 }

-- Dynamic System Logging Buffer Table

snAgSysLogBufferTable OBJECT-TYPE
        SYNTAX  SEQUENCE OF SnAgSysLogBufferEntry
        ACCESS  not-accessible
        STATUS  mandatory
        DESCRIPTION
                "Dynamic system logging buffer table."
        ::= { snAgentLog 2 }

snAgSysLogBufferEntry OBJECT-TYPE
        SYNTAX  SnAgSysLogBufferEntry
        ACCESS  not-accessible
        STATUS  mandatory
        DESCRIPTION
                "A row in the dynamic system logging buffer table."
        INDEX   { snAgSysLogBufferIndex }
        ::= { snAgSysLogBufferTable 1 }

SnAgSysLogBufferEntry ::= SEQUENCE {
        snAgSysLogBufferIndex
                INTEGER,
        snAgSysLogBufferTimeStamp
                TimeTicks,
        snAgSysLogBufferCriticalLevel
                INTEGER,
        snAgSysLogBufferMessage
                DisplayString,
        snAgSysLogBufferCalTimeStamp
                DisplayString
        }

snAgSysLogBufferIndex OBJECT-TYPE
        SYNTAX  INTEGER (1..100)
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The index to the dynamic system logging buffer table."
        ::= { snAgSysLogBufferEntry 1 }

snAgSysLogBufferTimeStamp OBJECT-TYPE
        SYNTAX  TimeTicks
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "A time stamp when the event is logged."
        ::= { snAgSysLogBufferEntry 2 }

snAgSysLogBufferCriticalLevel OBJECT-TYPE
        SYNTAX  INTEGER {
                other(1),
                alert(2),
                critical(3),
                debugging(4),
                emergency(5),
                error(6),
                informational(7),
                notification(8),
                warning(9) }
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The critical level of this event."
        ::= { snAgSysLogBufferEntry 3 }

snAgSysLogBufferMessage OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The system logging message."
        ::= { snAgSysLogBufferEntry 4 }

snAgSysLogBufferCalTimeStamp OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "A time stamp when the event is logged. This object returns
                a NULL terminated time stamp string if the system calendar
                time was set. It returns a zero length string if the system
                calendar time was not set."
        ::= { snAgSysLogBufferEntry 5 }


-- Static System Logging Buffer Table

snAgStaticSysLogBufferTable OBJECT-TYPE
        SYNTAX  SEQUENCE OF SnAgStaticSysLogBufferEntry
        ACCESS  not-accessible
        STATUS  mandatory
        DESCRIPTION
                "Static system logging buffer table."
        ::= { snAgentLog 3 }

snAgStaticSysLogBufferEntry OBJECT-TYPE
        SYNTAX  SnAgStaticSysLogBufferEntry
        ACCESS  not-accessible
        STATUS  mandatory
        DESCRIPTION
                "A row in the static system logging buffer table."
        INDEX   { snAgStaticSysLogBufferIndex }
        ::= { snAgStaticSysLogBufferTable 1 }

SnAgStaticSysLogBufferEntry ::= SEQUENCE {
        snAgStaticSysLogBufferIndex
                INTEGER,
        snAgStaticSysLogBufferTimeStamp
                TimeTicks,
        snAgStaticSysLogBufferCriticalLevel
                INTEGER,
        snAgStaticSysLogBufferMessage
                DisplayString,
        snAgStaticSysLogBufferCalTimeStamp
                DisplayString
        }

snAgStaticSysLogBufferIndex OBJECT-TYPE
        SYNTAX  INTEGER (1..100)
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The index to the static system logging buffer table."
        ::= { snAgStaticSysLogBufferEntry 1 }

snAgStaticSysLogBufferTimeStamp OBJECT-TYPE
        SYNTAX  TimeTicks
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "A time stamp when the event is logged."
        ::= { snAgStaticSysLogBufferEntry 2 }

snAgStaticSysLogBufferCriticalLevel OBJECT-TYPE
        SYNTAX  INTEGER {
                other(1),
                alert(2),
                critical(3),
                debugging(4),
                emergency(5),
                error(6),
                informational(7),
                notification(8),
                warning(9) }
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The critical level of this event."
        ::= { snAgStaticSysLogBufferEntry 3 }

snAgStaticSysLogBufferMessage OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The system logging message."
        ::= { snAgStaticSysLogBufferEntry 4 }

snAgStaticSysLogBufferCalTimeStamp OBJECT-TYPE
        SYNTAX  DisplayString
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "A time stamp when the event is logged. This object returns
                a NULL terminated time stamp string if the system calendar
                time was set. It returns a zero length string if the system
                calendar time was not set."
        ::= { snAgStaticSysLogBufferEntry 5 }


-- Agent System Parameters Configuration Table


snAgentSysParaConfigTable OBJECT-TYPE
        SYNTAX  SEQUENCE OF SnAgentSysParaConfigEntry
        ACCESS  not-accessible
        STATUS  mandatory
        DESCRIPTION
                "A table of Agent of each board."
        ::= { snAgentSysParaConfig 1 }

snAgentSysParaConfigEntry OBJECT-TYPE
        SYNTAX  SnAgentSysParaConfigEntry
        ACCESS  not-accessible
        STATUS  mandatory
        DESCRIPTION
                "A row in the Agent System Parameters Configuation table."
        INDEX   { snAgentSysParaConfigIndex }
        ::= { snAgentSysParaConfigTable 1 }

SnAgentSysParaConfigEntry ::= SEQUENCE {
        snAgentSysParaConfigIndex
                INTEGER,
        snAgentSysParaConfigDescription
                DisplayString,
        snAgentSysParaConfigMin
                INTEGER,
        snAgentSysParaConfigMax 
                INTEGER,
        snAgentSysParaConfigDefault 
                INTEGER,
        snAgentSysParaConfigCurrent
                INTEGER
        }

snAgentSysParaConfigIndex OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The index to the Agent System Parameters Configuation Table."
        ::= { snAgentSysParaConfigEntry 1 }

snAgentSysParaConfigDescription OBJECT-TYPE
    SYNTAX DisplayString (SIZE(0..32))
    ACCESS read-only
    STATUS mandatory
    DESCRIPTION
        "The main board description string."
    ::= { snAgentSysParaConfigEntry 2 }

snAgentSysParaConfigMin OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The minimum value of this Agent System Parameter."
        ::= { snAgentSysParaConfigEntry 3 }

snAgentSysParaConfigMax OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The maximum value of this Agent System Parameter."
        ::= { snAgentSysParaConfigEntry 4 }

snAgentSysParaConfigDefault OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The default value of this Agent System Parameter."
        ::= { snAgentSysParaConfigEntry 5 }

snAgentSysParaConfigCurrent OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "The current configurated value of this Agent System Parameter."
        ::= { snAgentSysParaConfigEntry 6 }


-- Agent Configured Module Table


snAgentConfigModuleTable OBJECT-TYPE
        SYNTAX  SEQUENCE OF SnAgentConfigModuleEntry
        ACCESS  not-accessible
        STATUS  mandatory
        DESCRIPTION
                "A table of each configured module information."
        ::= { snAgentConfigModule 1 }

snAgentConfigModuleEntry OBJECT-TYPE
        SYNTAX  SnAgentConfigModuleEntry
        ACCESS  not-accessible
        STATUS  mandatory
        DESCRIPTION
                "A row in the Agent Configured Module table."
        INDEX   { snAgentConfigModuleIndex }
        ::= { snAgentConfigModuleTable 1 }

SnAgentConfigModuleEntry ::= SEQUENCE {
        snAgentConfigModuleIndex
                INTEGER,
        snAgentConfigModuleType
                INTEGER,
        snAgentConfigModuleRowStatus
                INTEGER
        }

snAgentConfigModuleIndex OBJECT-TYPE
        SYNTAX  INTEGER (1..8)
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The index to the Agent Configured Module Table."
        ::= { snAgentConfigModuleEntry 1 }

snAgentConfigModuleType OBJECT-TYPE
        SYNTAX  INTEGER {
                bi8PortGigManagementModule(0),
                bi4PortGigManagementModule(1),
                bi16PortCopperManagementModule(2),
                bi4PortGigModule(3),
                fi2PortGigManagementModule(4),
                fi4PortGigManagementModule(5),
                bi8PortGigCopperManagementModule(6),
                fi8PortGigManagementModule(7),
                bi8PortGigModule(8),
                bi24PortCopperModule(10),
                fi24PortCopperModule(11),
                bi16Port100FXModule(12),
                bi8Port100FXModule(13),
                bi8PortGigCopperModule(14),
                bi2PortGigManagementModule(18),
                bi24Port100FXModule(19),
                bi0PortManagementModule(20),
                pos622MbsModule(21),
                pos155MbsModule(22),
                bi2PortGigModule(23),
                bi2PortGigCopperModule(24),
                fi2PortGigModule(25),
                fi4PortGigModule(26),
                fi8PortGigModule(27),
                fi8PortGigCopperModule(28),
                fi8PortGigCopperManagementModule(29),
                pos155Mbs2PModule(30),
                fi2PortGigCopperManagementModule(31),
                fi4PortGigCopperManagementModule(32),
                bi4PortGigCopperManagementModule(33),
                bi2PortGigCopperManagementModule(34)
                }

    ACCESS read-write
    STATUS mandatory
    DESCRIPTION
        "The Configured Module Type."
    ::= { snAgentConfigModuleEntry 2 }


snAgentConfigModuleRowStatus OBJECT-TYPE
        SYNTAX  INTEGER {
                other(1),
                valid(2),
                delete(3),
                create(4) }
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "To create or delete a configured module table entry."
        ::= { snAgentConfigModuleEntry 3 }

-- Agent User Access Group


snAgentUserGbl OBJECT IDENTIFIER ::= { snAgentUser 1 }

snAgentUserMaxAccnt         OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "Maximum number of user account entries can be configured."
        ::= { snAgentUserGbl 1 }


-- Agent User Account Table


snAgentUserAccntTable       OBJECT-TYPE
        SYNTAX  SEQUENCE OF SnAgentUserAccntEntry
        ACCESS  not-accessible
        STATUS  mandatory
        DESCRIPTION
                "A table of user account information."
        ::= { snAgentUser 2 }

snAgentUserAccntEntry       OBJECT-TYPE
        SYNTAX  SnAgentUserAccntEntry
        ACCESS  not-accessible
        STATUS  mandatory
        DESCRIPTION
                "A row in the Agent User table."
        INDEX   { snAgentUserAccntName }
        ::= { snAgentUserAccntTable 1 }

SnAgentUserAccntEntry ::= SEQUENCE {
        snAgentUserAccntName
                DisplayString,
        snAgentUserAccntPassword
                DisplayString,
        snAgentUserAccntEncryptCode
                INTEGER,
        snAgentUserAccntPrivilege
                INTEGER,
        snAgentUserAccntRowStatus
                INTEGER
        }

snAgentUserAccntName        OBJECT-TYPE
    SYNTAX  DisplayString (SIZE (1..48))
        ACCESS  read-only
        STATUS  mandatory
        DESCRIPTION
                "The user name."
        ::= { snAgentUserAccntEntry 1 }

snAgentUserAccntPassword    OBJECT-TYPE
        SYNTAX  DisplayString (SIZE (0..48))
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "The user password."
        ::= { snAgentUserAccntEntry 2 }

snAgentUserAccntEncryptCode OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-write
        STATUS  mandatory
    DESCRIPTION
        "The password encryption method code."
    ::= { snAgentUserAccntEntry 3 }

snAgentUserAccntPrivilege   OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-write
        STATUS  mandatory
    DESCRIPTION
        "The user privilege."
    ::= { snAgentUserAccntEntry 4 }

snAgentUserAccntRowStatus   OBJECT-TYPE
        SYNTAX  INTEGER {
                other(1),
                valid(2),
                delete(3),
                create(4),
                modify(5) }
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "To create or delete a user account table entry."
        ::= { snAgentUserAccntEntry 5 }

-- Agent Redundant Group


snAgentRedunGbl OBJECT IDENTIFIER ::= { snAgentRedundant 1 }

snAgentRedunActiveMgmtMod      OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Slot number of the active management module. Setting
                this object does not take effect immediately. Saving
                configuration data to flash storage and reboot the
                system are required to take effect. Setting a value of 0
                requests the system to auto-select an active management
                module after power up."
    DEFVAL { 0 }
        ::= { snAgentRedunGbl 1 }

snAgentRedunSyncConfig         OBJECT-TYPE
        SYNTAX  INTEGER
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Frequency of the backup management module copying the
                configuration data from the active management module.
                Each unit is 1 second. Setting a value 0 will disable
                the synchronization copy. Setting a negative value will
                initiate the synchronization copy once immediately."
    DEFVAL { 10 }
        ::= { snAgentRedunGbl 2 }

snAgentRedunBkupCopyBootCode   OBJECT-TYPE
        SYNTAX  INTEGER { disabled(0), enabled(1) }
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "If enabled(1), the backup management module copies the boot code
                from the active management module to its boot code flash storage
                after power up, and whenever the active management module's boot
                code is updated. The backup management module does not copy if
                both boot codes were identical."
    DEFVAL { disabled }
        ::= { snAgentRedunGbl 3 }

snAgentEnableMgmtModRedunStateChangeTrap OBJECT-TYPE
        SYNTAX  INTEGER { disabled(0), enabled(1) }
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Indicates whether the SNMP agent process is permitted to
                generate management module redundancy state change traps."
    DEFVAL { enabled }
        ::= { snAgentRedunGbl 4 }

snAgentRedunBkupBootLoad       OBJECT-TYPE
        SYNTAX  INTEGER {
                normal(1),
                operationError(17),
                downloadBackup(20)
                }
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "Action object to down load a new boot code from boot flash storage
                of the active management module to the backup management module.
                The following are returned values from get operation:
                  normal(1)............no operation
                  operationError(17)...error codes

                The following are input values from set operation:
                  downloadBackup(20)...download the boot code from the active
                                       management module to the backup management
                                       module

                Any set operation is rejected during loading until error
                or normal state is reached."
        ::= { snAgentRedunGbl 5 }

snAgentRedunSwitchOver         OBJECT-TYPE
        SYNTAX  INTEGER {
                other(1),
                reset(2)
                }
        ACCESS  read-write
        STATUS  mandatory
        DESCRIPTION
                "To force a switch-over from standby to active state
                if the backup management module exists in a chassis."
        ::= { snAgentRedunGbl 6 }

END