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
|
F10-CHASSIS-MIB DEFINITIONS ::= BEGIN
-- Force10 Networks, Inc.
-- 1440 McCarthy Blvd
-- Milpitas, CA 95035-7438
-- This module provides authoritative definitions for Force10
-- enterprise Chassis MIB.
--
-- This module will be extended, as needed.
--
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,
Gauge32, Integer32,
TimeTicks, NOTIFICATION-TYPE
FROM SNMPv2-SMI
DateAndTime, DisplayString
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
FROM SNMPv2-CONF
f10Mgmt
FROM FORCE10-SMI
F10SystemPortType, F10SystemCardType, F10ProcessorModuleType,
F10SlotState, F10SwDate, F10MfgDate, F10ChassisMode,
F10ChassisType, F10HundredthdB, F10CardOperStatus
FROM FORCE10-TC;
f10ChassisMib MODULE-IDENTITY
LAST-UPDATED "200809021200Z" -- Sep. 2, 2008 12:00:00 GMT
ORGANIZATION
"Force10 Networks, Inc."
CONTACT-INFO
"Force10 Networks, Inc
350 Holger Way
San Jose, CA 95134
(408) 571-3500
support@force10networks.com
http://www.force10networks.com"
DESCRIPTION
"Force10 Enterprise Chassis MIB. "
REVISION "200809021200Z"
DESCRIPTION
"Force10 Chassis MIB version 1.23
Import F10CardOperStatus."
REVISION "200804301200Z"
DESCRIPTION
"Force10 Chassis MIB version 1.22
Add chAlarmAcDcMixedPowerSupplyDetect notification.
"
REVISION "200804161200Z"
DESCRIPTION
"Force10 Chassis MIB version 1.21
Add the Sram Parity error counters:
- chSysCardParityPhantomError
- chSysCardParityRecoverableError
- chSysCardParityNonrecovrableError
"
REVISION "200802291200Z"
DESCRIPTION
"Force10 Chassis MIB version 1.20
Add chAlarmSRAMParityErrorDetect notification.
"
REVISION "200706281200Z"
DESCRIPTION
"Force10 Chassis MIB version 1.19
Import F10ChassisType.
Redefine XFP received power object.
"
REVISION "200705221200Z"
DESCRIPTION
"Force10 Chassis MIB version 1.18
- add new table: chLineCardUtilTable
- add new enum value, e1200i(6), to chType
- use Gauge32 to define utilization objects
- add notification group"
REVISION "0605220000Z"
DESCRIPTION
"Force10 Chassis MIB version 1.17
Add new XFP Received power to port table.
"
REVISION "0101020000Z"
DESCRIPTION
"Force10 Chassis MIB version 1.16
Add new chassis types E610.
"
REVISION "0310020000Z"
DESCRIPTION
"Force10 Chassis MIB version 1.15
"
REVISION "0310020000Z"
DESCRIPTION
"Force10 Chassis MIB version 1.14
1. Rename chSysPortOperStatus variables
a) 'cableProblem' to 'portDown'
b) 'notConfigured to 'notPresent'
"
REVISION "0307300000Z"
DESCRIPTION
"Force10 Chassis MIB version 1.13
1. Add support for E300 chassis.
2. Move all textual convention to the Textual-Convention MIB f10-tc.mib
"
REVISION "0307200000Z"
DESCRIPTION
"Force10 Chassis MIB version 1.12
Create SFM Group to add Utilization objects.
Changed some OCTET STRING to DisplayString to work around
the SNMPc browser problem.
"
REVISION "0206010000Z"
DESCRIPTION
"Force10 Chassis MIB version 1.11
Added CPU utilization support and added trap information.
Added traps descriptions that we supported.
Changed linecard name from F12PD to F12PE.
"
REVISION "0204010000Z"
DESCRIPTION
"Force10 Chassis MIB version 1.10
Added new linecards and port type Morphesus EoMpls,
Promatheus 80km & WAN, Cronus ED2 and Apollo
"
REVISION "0212250000Z"
DESCRIPTION
"Force10 Chassis MIB version 1.9
Added New Linecards, fixed Cronus EE port type
"
REVISION "0208080000Z"
DESCRIPTION
"Force10 Chassis MIB version 1.8
Added New Linecards
"
REVISION "0206160000Z"
DESCRIPTION
"Force10 Chassis MIB version 1.7
Added force10 product order number to card,
SFM, and the overall chassis.
"
REVISION "0205120000Z"
DESCRIPTION
"Force10 Chassis MIB version 1.6
Added force10 date textual convention.
Refine the descriptions of chRpmCOAlarmStatus.
"
REVISION "0205010000Z"
DESCRIPTION
"Force10 Chassis MIB version 1.5
Modify textual convention,
f10SystemPortType to add port
types.
"
REVISION "0204150000Z"
DESCRIPTION
"Force10 Chassis MIB version 1.4
Update for E600 series chassis
specification. Modify slot bitmap
description and add power supply
type. Update chassis, card and SFM
tables.
"
REVISION "0111070000Z"
DESCRIPTION
"Force10 Chassis MIB version 1.3
Modify Card Table -
to match the latest chassis manager
specification."
REVISION "0103260000Z"
DESCRIPTION
"Force10 Chassis MIB version 1.2
Modify Software Module Table -
to match the latest download manager
specification."
REVISION "0011210000Z"
DESCRIPTION
"Force10 Chassis MIB version 1.1.
Add more port types and removed
Air Filter Table."
REVISION "0010200000Z"
DESCRIPTION
"Force10 Chassis MIB version 1.0."
REVISION "0010280000Z"
DESCRIPTION
"Updates with review comments from marketing,
hardware and software groups.
Added more RPM information - 2nd draft revision."
REVISION "0010180000Z"
DESCRIPTION
"Updates with first draft review comments.
Changes to software release information."
REVISION "0010010000Z"
DESCRIPTION
"First draft revision of Force10 chassis mib."
::= { f10Mgmt 1 }
-- ### Groups ###
f10ChassisMibObject OBJECT IDENTIFIER ::={ f10ChassisMib 1 }
chObjects OBJECT IDENTIFIER ::={ f10ChassisMibObject 1 }
chSysObjects OBJECT IDENTIFIER ::={ f10ChassisMibObject 2 }
chRpmObjects OBJECT IDENTIFIER ::={ f10ChassisMibObject 3 }
chAlarmObjects OBJECT IDENTIFIER ::={ f10ChassisMibObject 4 }
chLineCardObjects OBJECT IDENTIFIER ::={ f10ChassisMibObject 5 }
-- ### Chassis Information
chType OBJECT-TYPE
SYNTAX F10ChassisType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The FORCE10 type of chassis."
::= { chObjects 1 }
chSerialNumber OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The FORCE10 chassis's serial number."
::= { chObjects 2 }
chVendorId OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The FORCE10 manufacturer's id."
::= { chObjects 3 }
chMfgDate OBJECT-TYPE
SYNTAX F10MfgDate
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The date the chassis was manufactured.
"
::= { chObjects 4 }
chEcLevel OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The EC Level of the FORCE10 chassis."
::= { chObjects 5 }
chNumFanTrays OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of fan trays
on the chassis."
::= { chObjects 6 }
chNumPowerSupplies OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of power supply
in the FORCE10 chassis"
::= { chObjects 7 }
chNumSlots OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of physical slots
in the chassis for line cards and
route process module (rpm ) cards."
::= { chObjects 8 }
chNumSfmSlots OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of switch fabric
modules (sfm) slots in the chassis."
::= { chObjects 9 }
chNumAirFilters OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The total number of air intake
filters in the chassis."
::= { chObjects 10 }
chSlot1to16 OBJECT-TYPE
SYNTAX F10SlotState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object has been obsoleted and will not
be supported by future Force10 Chassis. The
information here is for reference only.
This variable indicates the slot states.
Each slot occupies a bit. The value 1
indicates slot is in used and 0 indicates
the slot is empty.
The placement of line cards and rpm cards
in a E1200 chassis are as follows :
( physical slot numbers )
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| | | |
------------- -------------------
| | | |
line cards | | line card
| |
| + ----> RPM card
+-------> RPM card
The most significant bit is slot 1 and the
least significant bit is slot 16.
The placement of line cards and rpm cards
in a E600 chassis are as follows :
( physical slot numbers )
1 2 3 4 5 6 7 8 9
| |
-------------
| | |
line cards | |
| |
| + ----> RPM card
+-------> RPM card
The most significant bit is slot 1 and the
least significant bit is slot 9."
::= { chObjects 11 }
chCountryCode OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (2))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The FORCE10 manufacturer's y code."
::= { chObjects 12 }
chPartNum OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The FORCE10 manufacturer's part number."
::= { chObjects 13 }
chProductRev OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The FORCE10 manufacturer's product revision."
::= { chObjects 14 }
chProductOrder OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The FORCE10 product order number"
::= { chObjects 15 }
chChassisMode OBJECT-TYPE
SYNTAX F10ChassisMode
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The FORCE10 chassis mode of this chassis."
::= { chObjects 16 }
-- ### Chassis System ###
-- ### Power Supply Table
chSysPowerSupplyTable OBJECT-TYPE
SYNTAX SEQUENCE OF ChSysPowerSupplyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of power supply resident
in this chassis."
::= { chSysObjects 1 }
chSysPowerSupplyEntry OBJECT-TYPE
SYNTAX ChSysPowerSupplyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A power supply entry containing objects for a
particular power supply."
INDEX { chSysPowerSupplyIndex }
::= { chSysPowerSupplyTable 1 }
ChSysPowerSupplyEntry ::=
SEQUENCE {
chSysPowerSupplyIndex Integer32,
chSysPowerSupplyOperStatus INTEGER,
chSysPowerSupplyType INTEGER
}
chSysPowerSupplyIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The unique index of the power supply."
::= { chSysPowerSupplyEntry 1 }
chSysPowerSupplyOperStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1),
down(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of the power supply."
::= { chSysPowerSupplyEntry 2 }
chSysPowerSupplyType OBJECT-TYPE
SYNTAX INTEGER {
ac(1),
dc(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of the power supply."
::= { chSysPowerSupplyEntry 3 }
-- ## Fan Tray Table
chSysFanTrayTable OBJECT-TYPE
SYNTAX SEQUENCE OF ChSysFanTrayEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of fan tray resident in this chassis."
::= { chSysObjects 2 }
chSysFanTrayEntry OBJECT-TYPE
SYNTAX ChSysFanTrayEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A fan entry containing objects for a
particular fan tray."
INDEX { chSysFanTrayIndex }
::= { chSysFanTrayTable 1 }
ChSysFanTrayEntry ::=
SEQUENCE {
chSysFanTrayIndex Integer32,
chSysFanTrayOperStatus INTEGER
}
chSysFanTrayIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The unique index of the fan tray."
::= { chSysFanTrayEntry 1 }
chSysFanTrayOperStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1),
down(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of the fan tray."
::= { chSysFanTrayEntry 2 }
-- ## Card Table
-- The chassis is a multi-slots physical box.
-- In the chassis, there are physical slots available for
-- plug-in cards. There are two types of plug-in cards,
-- rpm cards and line cards.
-- The chassis also contains number of slots for
-- switch fabric modules.
-- The card table contains the card information of
-- each slot in the chassis. Each slot entry containing
-- the management information applicable to a particular
-- line card or route pocess module (rpm) card.
chSysCardTable OBJECT-TYPE
SYNTAX SEQUENCE OF ChSysCardEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of cards resident in the chassis.
The placement of line cards and rpm cards
in the E1200 chassis are as follows :
( physical slot numbers )
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
( Force10 card number )
0 1 2 3 4 5 6 0 1 7 8 9 10 11 12 13
| | | |
------------- -------------------
| | | |
line card | | line card
| |
| + ----> RPM card
+-------> RPM card
The placement of line cards and rpm cards
in the E600 chassis are as follows :
( physical slot numbers )
1 2 3 4 5 6 7 8 9
( Force10 card number )
0 1 2 3 4 5 6 0 1
| |
-------------
| | |
line card | |
| |
| + ----> RPM card
+-------> RPM card
The placement of line cards and rpm cards
in the E300 chassis are as follows :
( physical slot numbers )
1 2 3 4 5 6 7 8
( Force10 card number )
0 1 0 1 2 3 4 5
| |
-----------
| | |
| | line card
| |
| + ----> RPM card
+-------> RPM card
"
::= { chSysObjects 3 }
chSysCardEntry OBJECT-TYPE
SYNTAX ChSysCardEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of cards entries containing information
for line card or rpm card."
INDEX { chSysCardSlotIndex }
::= { chSysCardTable 1 }
ChSysCardEntry ::=
SEQUENCE {
chSysCardSlotIndex Integer32,
chSysCardType F10SystemCardType,
chSysCardNumber Integer32,
chSysCardSerialNumber DisplayString,
chSysCardVendorId DisplayString,
chSysCardMfgDate F10MfgDate,
chSysCardEcLevel Integer32,
chSysCardUpperTemp Gauge32,
chSysCardLowerTemp Gauge32,
chSysCardNumProcessors Integer32,
chSysCardNumPhyPorts Integer32,
chSysCardNumLgcPorts Integer32,
chSysCardUpTime TimeTicks,
chSysCardAdminStatus INTEGER,
chSysCardOperStatus F10CardOperStatus,
chSysCardFaultStatus INTEGER,
chSysCardLogStream OCTET STRING,
chSysCardCountryCode OCTET STRING,
chSysCardPartNum DisplayString,
chSysCardProductRev DisplayString,
chSysCardProdOrder DisplayString,
chSysCardParityPhantomError Gauge32,
chSysCardParityRecoverableError Gauge32,
chSysCardParityNonrecovrableError Gauge32
}
chSysCardSlotIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique index for each slot within
the chassis.
This value is the physical slot number
and the value is determined
by the chassis slot location where
the card is inserted. Valid entries
are 1 to the value of chNumSlots."
::= { chSysCardEntry 1 }
chSysCardType OBJECT-TYPE
SYNTAX F10SystemCardType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Type of card in this slot. The type
of cards are defined in F10SystemCardType."
::= { chSysCardEntry 2 }
chSysCardNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the card number assigned to the line
cards and the RPM cards in the chassis.
The line cards number are from 0 to 13 and the
RPM are from 0 to 1."
::= { chSysCardEntry 3 }
chSysCardSerialNumber OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The serial number of the card in this slot."
::= { chSysCardEntry 4 }
chSysCardVendorId OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The vendor id that manufactured the
card in this slot."
::= { chSysCardEntry 5 }
chSysCardMfgDate OBJECT-TYPE
SYNTAX F10MfgDate
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The date the card is manufactured."
::= { chSysCardEntry 6 }
chSysCardEcLevel OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The EC Level of the card."
::= { chSysCardEntry 7 }
chSysCardUpperTemp OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The temperature of the card. If
the temperature is too high,
alarm chAlarmCardTemperatureHigh
will be sent."
::= { chSysCardEntry 8 }
chSysCardLowerTemp OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This temperature field is
not used at the moment."
::= { chSysCardEntry 9 }
chSysCardNumProcessors OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Processors in the
card. The number of processors
are depended on the type of card
plugged into the slot."
::= { chSysCardEntry 10 }
chSysCardNumPhyPorts OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of physical ports
in each card. The card can have
one or more ports depending on
the type of cards.
If it is a logical card,
the value set to zero. "
::= { chSysCardEntry 11 }
chSysCardNumLgcPorts OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of logical ports
in each card. The card can have
one or more ports depending on
the type of cards.
If it is a physical card,
the value set to zero. "
::= { chSysCardEntry 12 }
chSysCardUpTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The SysUpTime for this slot.
This variable indicates the
time since the card
last reset."
::= { chSysCardEntry 13 }
chSysCardAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1),
down(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The admin status of the card.
The valid status are as followed:
'up' - card present and ready.
'down' - card is not ready."
::= { chSysCardEntry 14 }
chSysCardOperStatus OBJECT-TYPE
SYNTAX F10CardOperStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current operational state of the card."
::= { chSysCardEntry 15 }
chSysCardFaultStatus OBJECT-TYPE
SYNTAX INTEGER {
on(1),
off(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Fault status of the card.
The valid status are as followed:
'on' - the system fault light is on.
'off' - the system fault light is off."
DEFVAL {2}
::= { chSysCardEntry 16 }
chSysCardLogStream OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Reserved field. This fields should
return null."
::= { chSysCardEntry 17 }
chSysCardCountryCode OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (2))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The card manufacturer's country
code"
::= { chSysCardEntry 18 }
chSysCardPartNum OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The card part number"
::= { chSysCardEntry 19 }
chSysCardProductRev OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The card manufacturer's product
revision"
::= { chSysCardEntry 20 }
chSysCardProdOrder OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The F10 product order number"
::= { chSysCardEntry 21 }
chSysCardParityPhantomError OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counters indicating Transient Phantom
Parity Errors on this card.
Applied to Linecards only."
::= { chSysCardEntry 22 }
chSysCardParityRecoverableError OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counters indicating Transient Recoverable
Parity Errors on this card.
Applied to Linecards only."
::= { chSysCardEntry 23 }
chSysCardParityNonrecovrableError OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counters indicating Transient Non-Recoverable
Parity Errors on this card.
Applied to Linecards only."
::= { chSysCardEntry 24 }
-- ## Port Table
chSysPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF ChSysPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of ports in a slot."
::= { chSysObjects 4 }
chSysPortEntry OBJECT-TYPE
SYNTAX ChSysPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A port entry containing objects for a
particular slot."
INDEX { chSysPortSlotIndex,chSysPortIndex }
::= { chSysPortTable 1 }
ChSysPortEntry ::=
SEQUENCE {
chSysPortSlotIndex Integer32,
chSysPortIndex Integer32,
chSysPortType F10SystemPortType,
chSysPortAdminStatus INTEGER,
chSysPortOperStatus INTEGER,
chSysPortIfIndex Integer32,
chSysXfpRecvPower F10HundredthdB
}
chSysPortSlotIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique index for each slot within
the chassis. This value is determined by
the chassis slot number where the card
is inserted. Valid entries are 1
to the value of chNumSlots"
::= { chSysPortEntry 1 }
chSysPortIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique index for each slot within the card.
This value is determined by the variable
chSysSlotNumPorts. This value can also be
determined by the chSysCardType.
Valid entries are 1 to the value of
number of ports availabled"
::= { chSysPortEntry 2 }
chSysPortType OBJECT-TYPE
SYNTAX F10SystemPortType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of port in the card."
::= { chSysPortEntry 3 }
chSysPortAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1),
down(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The admin status of the card.
The port admin status is Up if
the user has configured it to be up
otherwise, the admin status is Down."
::= { chSysPortEntry 4 }
chSysPortOperStatus OBJECT-TYPE
SYNTAX INTEGER {
ready(1),
portDown(2),
portProblem(3),
cardProblem(4),
cardDown(5),
notPresent(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operational status provides further
condition of the card.
If the chSysPortAdminStatus is 'up', the
valid state is
'ready' - the card is present and
ready and the chSysPortAdminStatus
status is 'up'.
'portDown' - the port is down or not enabled.
'portProblem' - port hardware problems.
'cardProblem' - not used. Same as cardDown.
'cardDown' - the card is downed.
'notPresent' - the card is not present."
::= { chSysPortEntry 5 }
chSysPortIfIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index of ifIndex in the Interface Mib.
This index can link to the ifEntry to get
this interface/port information"
::= { chSysPortEntry 6 }
chSysXfpRecvPower OBJECT-TYPE
SYNTAX F10HundredthdB
UNITS "dB"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The power signal strength (dB) received for
interface on 10G linecard.
"
::= { chSysPortEntry 7 }
-- ## Air Filters Table
-- ## Removed from this MIB.
-- ## Processor Table
-- Each card has one or more processors.
-- The Processor table contains information on the
-- processor and the memory.
chSysProcessorTable OBJECT-TYPE
SYNTAX SEQUENCE OF ChSysProcessorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of Processors resident in this slot."
::= { chSysObjects 6 }
chSysProcessorEntry OBJECT-TYPE
SYNTAX ChSysProcessorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of Processor entries."
INDEX { chSysProcessorSlotIndex, chSysProcessorIndex }
::= { chSysProcessorTable 1 }
ChSysProcessorEntry ::=
SEQUENCE {
chSysProcessorSlotIndex Integer32,
chSysProcessorIndex Integer32,
chSysProcessorModule F10ProcessorModuleType,
chSysProcessorUpTime TimeTicks,
chSysProcessorNvramSize Integer32,
chSysProcessorMemSize Integer32,
chSysProcessorLogStream OCTET STRING
}
chSysProcessorSlotIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique index for each slot within
the chassis. This value is determined by
the chassis slot number where the card
is inserted. Valid entries are 1
to the value of chNumSlots"
::= { chSysProcessorEntry 1 }
chSysProcessorIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique index for each Processor within the
card. This value is determined by the variable
chSysSlotNumProcessors. the valid entries
are 1 to the value of number of processors"
::= { chSysProcessorEntry 2 }
chSysProcessorModule OBJECT-TYPE
SYNTAX F10ProcessorModuleType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of module running on the Processor."
::= { chSysProcessorEntry 3 }
chSysProcessorUpTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The SysUpTime for this Processor."
::= { chSysProcessorEntry 4 }
chSysProcessorNvramSize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total Non-volatile RAM in Kbytes."
::= { chSysProcessorEntry 5 }
chSysProcessorMemSize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The size of the RAM in Mb."
::= { chSysProcessorEntry 6 }
chSysProcessorLogStream OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Reserved field. Currently,
this field should return
NULL."
::= { chSysProcessorEntry 7 }
-- ## Software Module Table
chSysSwModuleTable OBJECT-TYPE
SYNTAX SEQUENCE OF ChSysSwModuleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of software version information in
a processor."
::= { chSysObjects 7 }
chSysSwModuleEntry OBJECT-TYPE
SYNTAX ChSysSwModuleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A software module entry containing version
number information for a particular processor."
INDEX { chSysSwSlotIndex,chSysSwProcessorIndex }
::= { chSysSwModuleTable 1 }
ChSysSwModuleEntry ::=
SEQUENCE {
chSysSwSlotIndex Integer32,
chSysSwProcessorIndex Integer32,
chSysSwRuntimeImgVersion DisplayString,
chSysSwRuntimeImgDate F10SwDate,
chSysSwCurrentBootImgVersion DisplayString,
chSysSwCurrentBootImgDate DateAndTime,
chSysSwCurrentBootImgStatus INTEGER,
chSysSwBackupBootImgVersion DisplayString,
chSysSwBackupBootImgDate DateAndTime,
chSysSwBackupBootImgStatus INTEGER,
chSysSwNextRebootImage INTEGER,
chSysSwCurrentBootImage INTEGER
}
chSysSwSlotIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique index for each slot within
the chassis. This value is determined by
the chassis slot number where the card
is inserted. Valid entries are 1
to the value of chNumSlots"
::= { chSysSwModuleEntry 1 }
chSysSwProcessorIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique index for each CPU within the card.
This value is determined by the variable
chSysSlotNumCPUs. This value can also be
determined by the chSysSlotType.
Valid entries are 1 to the value of
number of cpu"
::= { chSysSwModuleEntry 2 }
chSysSwRuntimeImgVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable indicates the software
module version that is currently
running on the processor.
The software release version is in
the format as follow:
<major version>.<minor version>.<minor
version>......
'1.1' indicate major version of 1 and
minor release of 1."
::= { chSysSwModuleEntry 3 }
chSysSwRuntimeImgDate OBJECT-TYPE
SYNTAX F10SwDate
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The release date of this software
module."
::= { chSysSwModuleEntry 4 }
chSysSwCurrentBootImgVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The software release version is in
the format as follow:
<major version>.<minor version>.<minor
version>......
'1.1' indicate major version of 1 and
minor release of 1."
::= { chSysSwModuleEntry 5 }
chSysSwCurrentBootImgDate OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The release date of this software module
If the CPU is reset, the software module
running date (chSysSwModuleRunningDate)
will change to this current date."
::= { chSysSwModuleEntry 6 }
chSysSwCurrentBootImgStatus OBJECT-TYPE
SYNTAX INTEGER {
ok(1),
failed(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of current boot image."
::= { chSysSwModuleEntry 7 }
chSysSwBackupBootImgVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The software release version is in
the format as follow:
<major version>.<minor version>.<minor
version>......
'1.1' indicate major version of 1 and
minor release of 1."
::= { chSysSwModuleEntry 8 }
chSysSwBackupBootImgDate OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The backup boot image released date."
::= { chSysSwModuleEntry 9 }
chSysSwBackupBootImgStatus OBJECT-TYPE
SYNTAX INTEGER {
ok(1),
failed(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of the backup boot image."
::= { chSysSwModuleEntry 10 }
chSysSwNextRebootImage OBJECT-TYPE
SYNTAX INTEGER {
bootImage-A(1),
bootImage-B(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The boot flash image selection. When the
chassis is rebooted, this is the boot
image to use."
::= { chSysSwModuleEntry 11 }
chSysSwCurrentBootImage OBJECT-TYPE
SYNTAX INTEGER {
bootImage-A(1),
bootImage-B(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current boot image. This is the boot image described by the
chSysSwCurrentBootImgVersion, chSysSwCurrentBootImgDate, and
chSysSwCurrentBootImgStatus objects.
"
::= { chSysSwModuleEntry 12 }
-- ## SFM Table
chSysSfmTable OBJECT-TYPE
SYNTAX SEQUENCE OF ChSysSfmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of Swicth Fabric Module in a slot."
::= { chSysObjects 8 }
chSysSfmEntry OBJECT-TYPE
SYNTAX ChSysSfmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A SFM entry containing objects for a
particular slot."
INDEX { chSysSfmIndex }
::= { chSysSfmTable 1 }
ChSysSfmEntry ::=
SEQUENCE {
chSysSfmIndex Integer32,
chSysSfmSerialNumber DisplayString,
chSysSfmVendorId DisplayString,
chSysSfmMfgDate F10MfgDate,
chSysSfmEcLevel Integer32,
chSysSfmAdminStatus INTEGER,
chSysSfmOperStatus INTEGER,
chSysSfmErrorStatus INTEGER,
chSysSfmCountryCode OCTET STRING,
chSysSfmPartNum DisplayString,
chSysSfmProductRev DisplayString,
chSysSfmProdOrder DisplayString
}
chSysSfmIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique index for each SFM within
the chassis. The number of SFM slots
can be determined with chNumSfmSlots."
::= { chSysSfmEntry 1 }
chSysSfmSerialNumber OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The serial number of the SFM."
::= { chSysSfmEntry 2 }
chSysSfmVendorId OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The vendor id that manufactured the SFM."
::= { chSysSfmEntry 3 }
chSysSfmMfgDate OBJECT-TYPE
SYNTAX F10MfgDate
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The date the SFM is manufactured."
::= { chSysSfmEntry 4 }
chSysSfmEcLevel OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The EC Level of the SFM."
::= { chSysSfmEntry 5 }
chSysSfmAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1),
down(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The admin status of
each SFM."
::= { chSysSfmEntry 6 }
chSysSfmOperStatus OBJECT-TYPE
SYNTAX INTEGER {
active(1),
absent(2),
standby(3),
incomp(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Operational status provides further
condition of Switch Fabric Module card.
If the chSysSfmAdminStatus is 'up', the
valid state is
'active' - the card is present and
ready and the chSysSfmAdminStatus
status is 'up'.
If the chSysCardOperStatus is 'down', the
service states can be as followed:
'absent' - the card is not present.
'standby' - the card is in standby mode.
'incomp' - incompatible with current sfm switch mode.
"
::= { chSysSfmEntry 7 }
chSysSfmErrorStatus OBJECT-TYPE
SYNTAX INTEGER {
ok(1),
error(2),
not-available(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Operational status provides further
condition of Switch Fabric Module card.
If the chSysSfmAdminStatus is 'up', the
valid state is
'ok' - the card is present and
ready and the chSysSfmAdminStatus
status is 'up'.
If the chSysSfmAdminStatus is 'down', the
error status can be as followed:
'not-available' - status not available.
'error' - the card is in error state."
::= { chSysSfmEntry 8 }
chSysSfmCountryCode OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (2))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The SFM manufacturer's country
code"
::= { chSysSfmEntry 9 }
chSysSfmPartNum OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The SFM manufacturer's part number"
::= { chSysSfmEntry 10 }
chSysSfmProductRev OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The SFM manufacturer's product
revision"
::= { chSysSfmEntry 11 }
chSysSfmProdOrder OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The SFM product order number."
::= { chSysSfmEntry 12 }
-- ## SFM Group
chSysSfmGroup OBJECT IDENTIFIER ::={ chSysObjects 9 }
chSfmUtil5Sec OBJECT-TYPE
SYNTAX Gauge32(0..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"SFM utilization in percentage for last 5 Seconds."
::= { chSysSfmGroup 1 }
chSfmUtil1Min OBJECT-TYPE
SYNTAX Gauge32(0..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"SFM utilization in percentage for last 1 minute."
::= { chSysSfmGroup 2 }
chSfmUtil5Min OBJECT-TYPE
SYNTAX Gauge32(0..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"SFM utilization in percentage for last 5 minute."
::= { chSysSfmGroup 3 }
-- ## Primary Routing Process Module
chRpmNumRpms OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of RPM installed
in the chassis. There is always one
primary RPM, but a secondary RPM can
also be installed as backup."
::= { chRpmObjects 1 }
chRpmSlotNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The primary routing process module
slot number. If the primary RPM is
switched to secondary RPM, the slot
number will be updated here."
::= { chRpmObjects 2 }
chRpmUptime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"SysUpTime of the last time the RPM
is reset. Used the SysUpTime of the
control processor as this variable."
::= { chRpmObjects 3 }
chRpmLastSwitchDate OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The date and time when the Routing
Process Module is switched."
::= { chRpmObjects 4 }
chRpmCOAlarmStatus OBJECT-TYPE
SYNTAX INTEGER {
off(1),
on(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Central Office (CO) Alarm on RPM card.
The valid status are as followed:
'off' - CO Alarm light is off.
'on' - CO Alarm light is on.
Please refer to Force10 Alarm document -
Appendix C for the condition when this
CO alarm is triggered.
"
DEFVAL {1}
::= { chRpmObjects 5 }
chRpmFlashStatus OBJECT-TYPE
SYNTAX INTEGER {
absent(1),
present(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Compact Flash on RPM card.
The valid status are as followed:
'absent' - external flash is not present.
'present' - external flash is present.
"
DEFVAL {1}
::= { chRpmObjects 6 }
-- ## Primary Routing Process Module CPU and Memory Utilization
chRpmUtilTable OBJECT-TYPE
SYNTAX SEQUENCE OF ChRpmUtilEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table listing the cpu and memory utilization
in master RPM."
::= { chRpmObjects 7 }
chRpmUtilEntry OBJECT-TYPE
SYNTAX ChRpmUtilEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row in each processor cpu and mmory utilization"
INDEX { chRpmCpuIndex }
::= { chRpmUtilTable 1 }
ChRpmUtilEntry ::=
SEQUENCE {
chRpmCpuIndex Integer32,
chRpmCpuType F10ProcessorModuleType,
chRpmCpuUtil5Sec Gauge32,
chRpmCpuUtil1Min Gauge32,
chRpmCpuUtil5Min Gauge32,
chRpmMemUsageUtil Gauge32
}
chRpmCpuIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique index for each Processor within the
RPM. This value is determined by the variable
chSysSlotNumProcessors. the valid entries
are 1 to the value of number of processors"
::= { chRpmUtilEntry 1 }
chRpmCpuType OBJECT-TYPE
SYNTAX F10ProcessorModuleType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of module running on the Processor."
::= { chRpmUtilEntry 2 }
chRpmCpuUtil5Sec OBJECT-TYPE
SYNTAX Gauge32(0..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CPU utilization in percentage for last 5 seconds."
::= { chRpmUtilEntry 3 }
chRpmCpuUtil1Min OBJECT-TYPE
SYNTAX Gauge32(0..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CPU utilization in percentage for last 1 minute."
::= { chRpmUtilEntry 4 }
chRpmCpuUtil5Min OBJECT-TYPE
SYNTAX Gauge32(0..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CPU utilization in percentage for last 5 minutes."
::= { chRpmUtilEntry 5 }
chRpmMemUsageUtil OBJECT-TYPE
SYNTAX Gauge32(0..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total RPM's memory usage in percentage."
::= { chRpmUtilEntry 6 }
chRpmMajorAlarmStatus OBJECT-TYPE
SYNTAX INTEGER {
off(1),
on(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Major Alarm LED on the Primary RPM card."
::= { chRpmObjects 8 }
chRpmMinorAlarmStatus OBJECT-TYPE
SYNTAX INTEGER {
off(1),
on(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Minor Alarm LED on the Primary RPM card."
::= { chRpmObjects 9 }
-- ## Line card CPU and Memory Utilization
chLineCardUtilTable OBJECT-TYPE
SYNTAX SEQUENCE OF ChLineCardUtilEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table listing the cpu and memory utilization
in line cards."
::= { chLineCardObjects 1 }
chLineCardUtilEntry OBJECT-TYPE
SYNTAX ChLineCardUtilEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row in each line card cpu and memory utilization"
INDEX { chSysCardNumber }
::= { chLineCardUtilTable 1 }
ChLineCardUtilEntry ::=
SEQUENCE {
chLineCardCpuUtil5Sec Gauge32,
chLineCardCpuUtil1Min Gauge32,
chLineCardCpuUtil5Min Gauge32,
chLineCardMemUsageUtil Gauge32
}
chLineCardCpuUtil5Sec OBJECT-TYPE
SYNTAX Gauge32(0..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CPU utilization in percentage for last 5 seconds."
::= { chLineCardUtilEntry 1 }
chLineCardCpuUtil1Min OBJECT-TYPE
SYNTAX Gauge32(0..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CPU utilization in percentage for last 1 minute."
::= { chLineCardUtilEntry 2 }
chLineCardCpuUtil5Min OBJECT-TYPE
SYNTAX Gauge32(0..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CPU utilization in percentage for last 5 minutes."
::= { chLineCardUtilEntry 3 }
chLineCardMemUsageUtil OBJECT-TYPE
SYNTAX Gauge32(0..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Memory usage in percentage."
::= { chLineCardUtilEntry 4 }
--
-- ## Alarm Group or Traps
--
chAlarmMibNotifications OBJECT IDENTIFIER ::= { chAlarmObjects 0 }
chAlarmVariable OBJECT IDENTIFIER ::= { chAlarmObjects 1 }
--
-- TRAP VarBind Data
--
chAlarmVarInteger OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"An generic integer value in the TRAP object"
::= { chAlarmVariable 1 }
chAlarmVarString OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"An generic string value in the TRAP object"
::= { chAlarmVariable 2 }
chAlarmVarSlot OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The chassis slot number.
For the traps that does not have slot information the value will
-1 in the TRAP PDU.
"
::= { chAlarmVariable 3 }
chAlarmVarPort OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The chassis port number.
For the traps that does not have port information the value will
-1 in the TRAP PDU.
"
::= { chAlarmVariable 4 }
--
-- TRAPS
--
chAlarmCardDown NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The driver/agent generate this trap when a
card operational status is down."
::= { chAlarmMibNotifications 1 }
chAlarmCardUp NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The driver/agent generate this trap when a
card operational status is up."
::= { chAlarmMibNotifications 2 }
chAlarmCardReset NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The driver/agent generate this trap when a
card is reset."
::= { chAlarmMibNotifications 3 }
chAlarmCardOffline NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The driver/agent generate this trap when a
card is set to offline."
::= { chAlarmMibNotifications 4 }
chAlarmCardMismatch NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The driver/agent generate this trap when a
card is not the same as configured"
::= { chAlarmMibNotifications 5 }
chAlarmCardRemove NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The driver/agent generate this trap when a
card is removed"
::= { chAlarmMibNotifications 6 }
chAlarmCardProblem NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The driver/agent generate this trap when a
card is indicated wht status card problem"
::= { chAlarmMibNotifications 7 }
chAlarmCutoff NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"This trap is generated if the alarm
cut off button on RPM is pressed."
::= { chAlarmMibNotifications 8 }
chAlarmSfmUp NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The driver/agent generate this trap when a
SFM operational status is up."
::= { chAlarmMibNotifications 9 }
chAlarmSfmDown NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The driver/agent generate this trap when a
SFM operational status is down."
::= { chAlarmMibNotifications 10 }
chAlarmRpmUp NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The primary RPM generate this trap when the primary RPM or
the secondary RPM is up and running."
::= { chAlarmMibNotifications 11 }
chAlarmRpmDown NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The primary RPM generate this trap when the secondary RPM is
down, either by software reset or being physically removed from
the chassis."
::= { chAlarmMibNotifications 12 }
chAlarmPowersupplyDown NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The driver/agent generate this trap when a
power supply is not operational."
::= { chAlarmMibNotifications 13 }
chAlarmMinorTemperatureHigh NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The driver/agent generate this trap when the
chassis's temperature exceed the minor threshold."
::= { chAlarmMibNotifications 14 }
chAlarmMajorTemperatureHigh NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The driver/agent generate this trap when the
chassis's temperature exceede the major threshold."
::= { chAlarmMibNotifications 15 }
chAlarmFanTrayDown NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The driver/agent generate this trap when a
fan tray is missing or down."
::= { chAlarmMibNotifications 16 }
chAlarmPowersupplyClear NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The driver/agent generate this trap when a
power supply is now operational."
::= { chAlarmMibNotifications 17 }
chAlarmMinorTemperatureClear NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The driver/agent generate this trap when the
chassis's temperature within the minor threshold."
::= { chAlarmMibNotifications 18 }
chAlarmMajorTemperatureClear NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The driver/agent generate this trap when the
chassis's temperature within the major threshold."
::= { chAlarmMibNotifications 19 }
chAlarmFanTrayClear NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The driver/agent generate this trap when a
fan tray is now operational."
::= { chAlarmMibNotifications 20 }
chAlarmMinorFanBadClear NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The driver/agent generate this trap when a
minor fan tray that was bad is now operational."
::= { chAlarmMibNotifications 21 }
chAlarmMajorSfmDown NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The driver/agent generate this trap when a
majority of SFM are down."
::= { chAlarmMibNotifications 22 }
chAlarmMajorSfmDownClr NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The driver/agent generate this trap when a
majority of SFM were down are now operational."
::= { chAlarmMibNotifications 23 }
chAlarmMinorSfmDown NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The driver/agent generate this trap when a
majority of SFM are down."
::= { chAlarmMibNotifications 24 }
chAlarmMinorSfmDownClr NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The driver/agent generate this trap when a
majority of SFM were down are now operational."
::= { chAlarmMibNotifications 25 }
chAlarmTaskSuspend NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The system generate this trap when a
a task is suspended."
::= { chAlarmMibNotifications 26 }
chAlarmTaskTerm NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The system generate this trap when a
a task is terminated."
::= { chAlarmMibNotifications 27 }
chAlarmVrrpGoMaster NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The VRRP generate this trap when it
become the master."
::= { chAlarmMibNotifications 28 }
chAlarmVrrpGiveupMaster NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The VRRP generate this trap when it
is no longer the master."
::= { chAlarmMibNotifications 29 }
chAlarmBgpEstb NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"BGP task neighbour established."
::= { chAlarmMibNotifications 30 }
chAlarmBgpXsition NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"BGP task is in transition.
"
::= { chAlarmMibNotifications 31 }
chAlarmMajorPS NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The agent generate this trap when a
power supply major alarm is issued."
::= { chAlarmMibNotifications 32 }
chAlarmMajorPSClr NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The agent generate this trap when a
power supply major alarm is cleared."
::= { chAlarmMibNotifications 33 }
chAlarmMinorPS NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The agent generate this trap when a
power supply minor alarm is issued."
::= { chAlarmMibNotifications 34 }
chAlarmMinorPSClr NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The agent generate this trap when a
power supply minor alarm is cleared."
::= { chAlarmMibNotifications 35 }
chAlarmMinorFanBad NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The agent generate this trap when
fan is bad."
::= { chAlarmMibNotifications 36 }
chAlarmExdCpuThreshold NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The agent generate this trap when
cpu utilization excceded 80%."
::= { chAlarmMibNotifications 37 }
chAlarmClrCpuThreshold NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The agent generate this trap when
cpu utilization falls below threshold."
::= { chAlarmMibNotifications 38 }
chAlarmExdMemThreshold NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The agent generate this trap when
memory utilization excceded 80%."
::= { chAlarmMibNotifications 39 }
chAlarmClrMemThreshold NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The agent generate this trap when
memory utilization falls below threshold."
::= { chAlarmMibNotifications 40 }
chAlarmMacStationMove NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The agent generate this trap when a MAC station move exceed the
threshold.
"
::= { chAlarmMibNotifications 41 }
chAlarmSfmAdd NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The agent generate this trap when a SFM is added to the chassis.
"
::= { chAlarmMibNotifications 42 }
chAlarmSfmRemove NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The agent generate this trap when a SFM is removed from the chassis.
"
::= { chAlarmMibNotifications 43 }
chAlarmRpmPrimary NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The agent generate this trap when a standby RPM become Primary RPM
after fail-over.
"
::= { chAlarmMibNotifications 44 }
chSnmpIpAclDeny NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The agent generate this trap when SNMP Agent deny a SNMP request
based on the IP ACL rules.
"
::= { chAlarmMibNotifications 45 }
chAlarmSRAMParityErrorDetect NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The agent generate this trap when a linecard detects SRAM
parity error and then tries to recover but can't recover
that section.
"
::= { chAlarmMibNotifications 47 }
chAlarmAcDcMixedPowerSupplyDetect NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The agent generate this trap when a system detects AC and
DC mixed power supply.
Applied to C-series only.
"
::= { chAlarmMibNotifications 48 }
-- ### conformance information ###
f10ChassisMibConformance OBJECT IDENTIFIER ::= { f10ChassisMib 2 }
f10ChassisMibCompliances OBJECT IDENTIFIER ::= { f10ChassisMibConformance 1 }
f10ChassisMibGroups OBJECT IDENTIFIER ::= { f10ChassisMibConformance 2 }
-- ## compliance statements
f10ChassisMibCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for Force10
product which implement the f10
Chassis MIB."
MODULE -- this module
MANDATORY-GROUPS {
f10ComponentGroup,
f10SystemGroup,
f10RpmGroup,
f10LineCardGroup,
f10ChassisNotificationGroup
}
::= { f10ChassisMibCompliances 1 }
-- ## units of conformance
f10ComponentGroup OBJECT-GROUP
OBJECTS {
chType,
chSerialNumber,
chVendorId,
chMfgDate,
chEcLevel,
chNumFanTrays,
chNumPowerSupplies,
chNumSlots,
chNumSfmSlots,
chSlot1to16,
chCountryCode,
chPartNum,
chProductRev,
chProductOrder
}
STATUS current
DESCRIPTION
"A collection of objects providing the
overall chassis information."
::= { f10ChassisMibGroups 1 }
f10SystemGroup OBJECT-GROUP
OBJECTS {
chSysPowerSupplyOperStatus,
chSysFanTrayOperStatus,
chSysCardNumber,
chSysCardType,
chSysCardSerialNumber,
chSysCardVendorId,
chSysCardMfgDate,
chSysCardEcLevel,
chSysCardUpperTemp,
chSysCardLowerTemp,
chSysCardNumProcessors,
chSysCardNumPhyPorts,
chSysCardNumLgcPorts,
chSysCardUpTime,
chSysCardAdminStatus,
chSysCardOperStatus,
chSysCardFaultStatus,
chSysCardLogStream,
chSysCardCountryCode,
chSysCardPartNum,
chSysCardProductRev,
chSysCardProdOrder,
chSysCardParityPhantomError,
chSysCardParityRecoverableError,
chSysCardParityNonrecovrableError,
chSysProcessorModule,
chSysProcessorUpTime,
chSysProcessorNvramSize,
chSysProcessorMemSize,
chSysProcessorLogStream,
chSysPortType,
chSysPortAdminStatus,
chSysPortOperStatus,
chSysPortIfIndex,
chSysXfpRecvPower,
chSysSwRuntimeImgVersion,
chSysSwRuntimeImgDate,
chSysSwCurrentBootImgVersion,
chSysSwCurrentBootImgDate,
chSysSwCurrentBootImgStatus,
chSysSwBackupBootImgVersion,
chSysSwBackupBootImgDate,
chSysSwBackupBootImgStatus,
chSysSwNextRebootImage,
chSysSfmSerialNumber,
chSysSfmVendorId,
chSysSfmMfgDate,
chSysSfmEcLevel,
chSysSfmAdminStatus,
chSysSfmOperStatus,
chSysSfmErrorStatus,
chSysSfmCountryCode,
chSysSfmPartNum,
chSysSfmProductRev,
chSysSfmProdOrder
}
STATUS current
DESCRIPTION
"A collection of objects providing the
chassis system hardware information."
::= { f10ChassisMibGroups 2 }
f10RpmGroup OBJECT-GROUP
OBJECTS {
chRpmNumRpms,
chRpmSlotNumber,
chRpmUptime,
chRpmLastSwitchDate,
chRpmCOAlarmStatus,
chRpmFlashStatus,
chRpmCpuType,
chRpmCpuUtil5Sec,
chRpmCpuUtil1Min,
chRpmCpuUtil5Min,
chRpmMemUsageUtil
}
STATUS current
DESCRIPTION
"A collection of objects providing the
Route Process Module (RPM) information."
::= { f10ChassisMibGroups 3 }
f10LineCardGroup OBJECT-GROUP
OBJECTS {
chLineCardCpuUtil5Sec,
chLineCardCpuUtil1Min,
chLineCardCpuUtil5Min,
chLineCardMemUsageUtil
}
STATUS current
DESCRIPTION
"A collection of objects providing
CPU and Memory Utilization in the Line cards."
::= { f10ChassisMibGroups 4 }
f10ChassisNotificationGroup NOTIFICATION-GROUP
NOTIFICATIONS {
chAlarmCardDown,
chAlarmCardUp,
chAlarmCardReset,
chAlarmCardOffline,
chAlarmCardMismatch,
chAlarmCardRemove,
chAlarmCardProblem,
chAlarmCutoff,
chAlarmSfmUp,
chAlarmSfmDown,
chAlarmRpmUp,
chAlarmRpmDown,
chAlarmPowersupplyDown,
chAlarmMinorTemperatureHigh,
chAlarmMajorTemperatureHigh,
chAlarmFanTrayDown,
chAlarmPowersupplyClear,
chAlarmMinorTemperatureClear,
chAlarmMajorTemperatureClear,
chAlarmFanTrayClear,
chAlarmMinorFanBadClear,
chAlarmMajorSfmDown,
chAlarmMajorSfmDownClr,
chAlarmMinorSfmDown,
chAlarmMinorSfmDownClr,
chAlarmTaskSuspend,
chAlarmTaskTerm,
chAlarmVrrpGoMaster,
chAlarmVrrpGiveupMaster,
chAlarmBgpEstb,
chAlarmBgpXsition,
chAlarmMajorPS,
chAlarmMajorPSClr,
chAlarmMinorPS,
chAlarmMinorPSClr,
chAlarmMinorFanBad,
chAlarmExdCpuThreshold,
chAlarmClrCpuThreshold,
chAlarmExdMemThreshold,
chAlarmClrMemThreshold,
chAlarmMacStationMove,
chAlarmSfmAdd,
chAlarmSfmRemove,
chAlarmRpmPrimary,
chSnmpIpAclDeny,
chAlarmSRAMParityErrorDetect,
chAlarmAcDcMixedPowerSupplyDetect
}
STATUS current
DESCRIPTION
"Notifications for Force10 Chassis mib"
::= { f10ChassisMibGroups 5 }
END
|