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
|
F10-M-SERIES-CHASSIS-MIB DEFINITIONS ::= BEGIN
-- This module provides authoritative definitions for M-series modules
-- Dell Networking OS Chassis MIB.
--
-- This module will be extended, as needed.
--
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,
Gauge32, Counter32, Integer32, Unsigned32,
TimeTicks, NOTIFICATION-TYPE
FROM SNMPv2-SMI
DateAndTime, DisplayString,
MacAddress, RowStatus, TEXTUAL-CONVENTION
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
FROM SNMPv2-CONF
f10Mgmt
FROM FORCE10-SMI
chAlarmVarInteger, chAlarmVarString,
chAlarmVarSlot, chAlarmVarPort
FROM F10-CHASSIS-MIB
F10SwDate, F10ChassisType, F10ProcessorModuleType,
F10MfgDate, F10HundredthdB, F10MSeriesPortType
FROM FORCE10-TC;
f10MSerChassisMib MODULE-IDENTITY
LAST-UPDATED "201203271200Z" -- Dec 03, 2012 12:00:00 GMT
ORGANIZATION "Dell Inc."
CONTACT-INFO "http://www.force10networks.com/support"
DESCRIPTION
"Dell Networking OS M-Series Chassis MIB. "
REVISION "201211021200Z"
DESCRIPTION
"Added the new trap for notifying stack role changes."
REVISION "201212031200Z"
DESCRIPTION
"Adding new objects - chSysSwInPartitionAImgVers
and chSysSwInPartitionBImgVers"
REVISION "201203271200Z"
DESCRIPTION
"Adding new objects - Dell PPID, Revision, Service Tag,
Express Service Code."
REVISION "200710031200Z"
DESCRIPTION
"Initial version of this mib."
::= { f10Mgmt 19 }
-- ### Groups ###
f10MSerChassisObject OBJECT IDENTIFIER ::={ f10MSerChassisMib 1 }
chObjects OBJECT IDENTIFIER ::={ f10MSerChassisObject 1 }
chSysObjects OBJECT IDENTIFIER ::={ f10MSerChassisObject 2 }
chAlarmObjects OBJECT IDENTIFIER ::={ f10MSerChassisObject 4 }
-- ### Textual Convention
CodeType ::= TEXTUAL-CONVENTION
DISPLAY-HINT "x"
STATUS current
DESCRIPTION
"The code type value for a given unit,
displayed in hexadecimal."
SYNTAX Unsigned32
UnitType ::= TEXTUAL-CONVENTION
DISPLAY-HINT "x"
STATUS current
DESCRIPTION
"The unit type value for a given unit,
displayed in hexadecimal."
SYNTAX Unsigned32
-- ### Chassis Information
chNumStackUnits OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of stack units configured
on the chassis."
::= { chObjects 1 }
chNumMaxStackableUnits OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the maximum allowed Unit Number
configurable on the chassis."
::= { chObjects 2 }
chStackUnitIndexNext OBJECT-TYPE
SYNTAX Integer32 (0|1..6)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the next appropriate value to
be used for chStackUnitIndex when creating
entries in the chStackUnitTable. The value 0
indicates that no unassigned entries are available.
To obtain the chStackUnitIndexNext value for a new entry,
the manager must first issue a management protocol
retrieval operation to obtain the current value of
this object. The agent should modify the value to
reflect the next unassigned number after each
retrieval operation. After a manager retrieves a value
the agent will determine when this index value will be
made available for reuse.
Note that this object is not the unit number assigned by
the management unit.
The max number of stackable units allowed on this chassis
is found from the object chNumMaxStackableUnits."
::= { chObjects 3 }
-- ### Chassis System ###
-- ## StackUnit Table
-- The M-series chassis is a single virtual system to
-- have the stackable units as virtual slots.
-- In the chassis, there can be multiple physical units
-- stacked together.
-- The StackUnit table contains the management information
-- of each stacked unit in the chassis.
chStackUnitTable OBJECT-TYPE
SYNTAX SEQUENCE OF ChStackUnitEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of stack units configured in the chassis.
The StackUnit table contains the management
information of each stacked unit in the chassis.
"
::= { chSysObjects 1 }
chStackUnitEntry OBJECT-TYPE
SYNTAX ChStackUnitEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of units entries containing information
for each stacked unit."
INDEX { chStackUnitIndex }
::= { chStackUnitTable 1 }
ChStackUnitEntry ::=
SEQUENCE {
chStackUnitIndex Integer32,
chStackUnitNumber Integer32,
chStackUnitSID Integer32,
chStackUnitMgmtStatus INTEGER,
chStackUnitHwMgmtPreference INTEGER,
chStackUnitAdmMgmtPreference Integer32,
chStackUnitModelID DisplayString,
chStackUnitStatus INTEGER,
chStackUnitDescription DisplayString,
chStackUnitCodeVersion DisplayString,
chStackUnitCodeVersionInFlash DisplayString,
chStackUnitSerialNumber DisplayString,
chStackUnitUpTime TimeTicks,
chStackUnitTemp Gauge32,
chStackUnitType UnitType,
chStackUnitSysType F10ChassisType,
chStackUnitVendorId DisplayString,
chStackUnitMfgDate F10MfgDate,
chStackUnitMacAddress MacAddress,
chStackUnitPartNum DisplayString,
chStackUnitProductRev DisplayString,
chStackUnitProductOrder DisplayString,
chStackUnitCountryCode OCTET STRING,
chStackUnitNum10GigEtherPorts Integer32,
chStackUnitNumGigEtherPorts Integer32,
chStackUnitNumFastEtherPorts Integer32,
chStackUnitNumFanTrays Integer32,
chStackUnitNumPowerSupplies Integer32,
chStackUnitNumPluggableModules Integer32,
chStackUnitNum40GigEtherPorts Integer32,
chStackUnitRowStatus RowStatus,
chStackUnitPiecePartID DisplayString,
chStackUnitPPIDRevision DisplayString,
chStackUnitServiceTag DisplayString,
chStackUnitExpressServiceCode DisplayString
}
chStackUnitIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The unique index for this entry.
Refer to the object chStackUnitIndexNext."
::= { chStackUnitEntry 1 }
chStackUnitNumber OBJECT-TYPE
SYNTAX Integer32 (0|1..6)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The unit number associated with this unit.
The unit number can be manually assigned to stack members.
Note that the unit number assignment is based on
the following factors:
- if the unit number is requested here, but another unit
already uses that number, the unit changes its configured
unit number to the lowest unassigned unit number.
- if the unit number is 0, i.e. unassigned, then the unit sets
its configured unit number to the lowest unassigned unit number.
- if the unit number is configured and no other device uses
the unit number, then the unit starts using the configured
unit number.
- if a unit detects that the maximum number of units already
exist, the unit sets its unit number to 0, i.e. unassigned,
and stays in the Initialization state.
- The max number of stackable units allowed on this chassis
is found from the object chNumMaxStackableUnits."
::= { chStackUnitEntry 2 }
chStackUnitSID OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS deprecated
DESCRIPTION
"The unique switch type index (SID)."
::= { chStackUnitEntry 3 }
chStackUnitMgmtStatus OBJECT-TYPE
SYNTAX INTEGER {
mgmtUnit(1),
standbyUnit(2),
stackUnit(3),
unassigned(4)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates whether the unit is a Management Unit,
a Stack Unit, or unassigned.
Setting this object to mgmtUnit(1) initiates transfer of the
management functionality to the specified stack unit.
Object values stackUnit(2) and unassigned(3) cannot be set."
::= { chStackUnitEntry 4 }
chStackUnitHwMgmtPreference OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
unsassigned(1),
assigned(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"indicates whether the unit is capable of becoming a
management unit. if it is unsigned, this unit can be a management
unit."
::= { chStackUnitEntry 5 }
chStackUnitAdmMgmtPreference OBJECT-TYPE
SYNTAX Integer32 (0|1..15)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"indicates how likely this unit is to be chosen as
the management unit. A value of 0 indicates a disabled
or unassigned preference."
::= { chStackUnitEntry 6 }
chStackUnitModelID OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The plugged-in model ID for this unit."
::= { chStackUnitEntry 7 }
chStackUnitStatus OBJECT-TYPE
SYNTAX INTEGER {
ok(1),
unsupported(2),
codeMismatch(3), -- version mismatch
configMismatch(4), -- type mismatch
unitDown(5), -- hardware problem
notPresent(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of this unit."
::= { chStackUnitEntry 8 }
chStackUnitDescription OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The description of this unit."
::= { chStackUnitEntry 9 }
chStackUnitCodeVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current code version of this unit."
::= { chStackUnitEntry 10 }
chStackUnitCodeVersionInFlash OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Code version of this unit's flash."
::= { chStackUnitEntry 11 }
chStackUnitSerialNumber OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The unit's serial number."
::= { chStackUnitEntry 12 }
chStackUnitUpTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The system up time of the unit."
::= { chStackUnitEntry 13 }
chStackUnitTemp OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The temperature of the unit."
::= { chStackUnitEntry 14 }
chStackUnitType OBJECT-TYPE
SYNTAX UnitType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Unit Type identifier for this unit."
::= { chStackUnitEntry 15 }
chStackUnitSysType OBJECT-TYPE
SYNTAX F10ChassisType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Dell Networking OS system type for this unit."
::= { chStackUnitEntry 16 }
chStackUnitVendorId OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The vendor id that manufactured this unit."
::= { chStackUnitEntry 17 }
chStackUnitMfgDate OBJECT-TYPE
SYNTAX F10MfgDate
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The date the unit is manufactured."
::= { chStackUnitEntry 18 }
chStackUnitMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A 6-octet MAC Address assigned
to this unit."
::= { chStackUnitEntry 19 }
chStackUnitPartNum OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The unit part number"
::= { chStackUnitEntry 20 }
chStackUnitProductRev OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The unit manufacturer's product
revision"
::= { chStackUnitEntry 21 }
chStackUnitProductOrder OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The product order number for this unit."
::= { chStackUnitEntry 22 }
chStackUnitCountryCode OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (2))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The unit manufacturer's country
code"
::= { chStackUnitEntry 23 }
chStackUnitNum10GigEtherPorts OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of 10G Ethernet/802.3 interfaces
in this unit."
::= { chStackUnitEntry 24 }
chStackUnitNumGigEtherPorts OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of 1G Ethernet/802.3 interfaces
in this unit."
::= { chStackUnitEntry 25 }
chStackUnitNumFastEtherPorts OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of 10/100 Ethernet/802.3 interfaces
in this unit."
::= { chStackUnitEntry 26 }
chStackUnitNumFanTrays OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of fan trays
on the unit."
::= { chStackUnitEntry 27 }
chStackUnitNumPowerSupplies OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of power supplies available
to the unit."
::= { chStackUnitEntry 28 }
chStackUnitNumPluggableModules OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of pluggable modules
in the stack."
::= { chStackUnitEntry 29 }
chStackUnitNum40GigEtherPorts OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of 40G Ethernet/802.3 interfaces
in this unit."
::= { chStackUnitEntry 30 }
chStackUnitRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Creation of new instances requires the object
chStackUnitIndexNext to be retreived to create
an entry.
active(1) - This instance is active.
createAndGo(4) - Creates a new instance.
destroy(6) - Removes this instance."
::= { chStackUnitEntry 31 }
chStackUnitPiecePartID OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..24))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The unit's piece part id."
::= { chStackUnitEntry 32 }
chStackUnitPPIDRevision OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..3))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The unit's PPID revision."
::= { chStackUnitEntry 33 }
chStackUnitServiceTag OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..7))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The unit's service tag."
::= { chStackUnitEntry 34 }
chStackUnitExpressServiceCode OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..14))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The unit's express service code."
::= { chStackUnitEntry 35 }
-- ### Power Supply Table
chSysPowerSupplyTable OBJECT-TYPE
SYNTAX SEQUENCE OF ChSysPowerSupplyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of power supply resident
in the M-series chassis."
::= { chSysObjects 2 }
chSysPowerSupplyEntry OBJECT-TYPE
SYNTAX ChSysPowerSupplyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A power supply entry containing objects for a
particular power supply."
INDEX { chStackUnitNumber,
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 {
normal(1),
warning(2),
critical(3),
shutdown(4),
notPresent(5),
notFunctioning(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of the power supply."
::= { chSysPowerSupplyEntry 2 }
chSysPowerSupplyType OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
ac(2),
dc(3),
externalPowerSupply(4),
internalRedundant(5)
}
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 the M-series chassis."
::= { chSysObjects 3 }
chSysFanTrayEntry OBJECT-TYPE
SYNTAX ChSysFanTrayEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A fan entry containing objects for a
particular fan tray."
INDEX { chStackUnitNumber,
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 }
-- ## Port Table
chSysPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF ChSysPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of ports in the M-series chassis."
::= { chSysObjects 4 }
chSysPortEntry OBJECT-TYPE
SYNTAX ChSysPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A port entry containing objects for a
particular port."
INDEX { chStackUnitNumber,
chSysPortIndex }
::= { chSysPortTable 1 }
ChSysPortEntry ::=
SEQUENCE {
chSysPortIndex Integer32,
chSysPortType F10MSeriesPortType,
chSysPortAdminStatus INTEGER,
chSysPortOperStatus INTEGER,
chSysPortIfIndex Integer32,
chSysPortXfpRecvPower F10HundredthdB,
chSysPortXfpRecvTemp Integer32,
chSysPortXfpTxPower F10HundredthdB
}
chSysPortIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique index for each slot within the unit.
"
::= { chSysPortEntry 1 }
chSysPortType OBJECT-TYPE
SYNTAX F10MSeriesPortType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of port in the unit."
::= { chSysPortEntry 2 }
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 3 }
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 4 }
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 5 }
chSysPortXfpRecvPower OBJECT-TYPE
SYNTAX F10HundredthdB
UNITS "dB"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The power signal strength (dB) received for
1G/10G/40G Ethernet/802.3 interface.
"
::= { chSysPortEntry 6 }
chSysPortXfpRecvTemp OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The temperature value received for the optics."
::= { chSysPortEntry 7 }
chSysPortXfpTxPower OBJECT-TYPE
SYNTAX F10HundredthdB
UNITS "dB"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The power signal strength (dB) Transmitted for
1G/10G/40G Ethernet/802.3 interface.
"
::= { chSysPortEntry 8 }
-- ## Stack Port Table
chSysStackPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF ChSysStackPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of stack ports in the M-series chassis."
::= { chSysObjects 5 }
chSysStackPortEntry OBJECT-TYPE
SYNTAX ChSysStackPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A stack port entry containing objects for a
particular stack port."
INDEX { chStackUnitNumber,
chSysStackPortIndex }
::= { chSysStackPortTable 1 }
ChSysStackPortEntry ::=
SEQUENCE {
chSysStackPortIndex Integer32,
chSysStackPortConfiguredMode INTEGER,
chSysStackPortRunningMode INTEGER,
chSysStackPortLinkStatus INTEGER,
chSysStackPortLinkSpeed Gauge32,
chSysStackPortRxDataRate Counter32,
chSysStackPortRxErrorRate Counter32,
chSysStackPortRxTotalErrors Counter32,
chSysStackPortTxDataRate Counter32,
chSysStackPortTxErrorRate Counter32,
chSysStackPortTxTotalErrors Counter32
}
chSysStackPortIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index for each stack port within the unit.
1 - stack port A,
2 - stack port B
"
::= { chSysStackPortEntry 1 }
chSysStackPortConfiguredMode OBJECT-TYPE
SYNTAX INTEGER {
stack(1),
ethernet(2),
unknown(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Configured mode of the Stack Port. Changes to this
value happen only after a reset of the unit."
::= { chSysStackPortEntry 2 }
chSysStackPortRunningMode OBJECT-TYPE
SYNTAX INTEGER {
stack(1),
ethernet(2),
unknown(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Operational mode of the Stack Port."
::= { chSysStackPortEntry 3 }
chSysStackPortLinkStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1),
down(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Link status of the Stack Port. Ports in ethernet
mode will return a status of down(2)."
::= { chSysStackPortEntry 4 }
chSysStackPortLinkSpeed OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Speed of the Stack Port measured in Gb/s. Ports
in ethernet mode will return a speed of 0."
::= { chSysStackPortEntry 5 }
chSysStackPortRxDataRate OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Received Data rate on the stacking port.
Measured in Mb/s.
Ports in ethernet mode will return 0."
::= { chSysStackPortEntry 6 }
chSysStackPortRxErrorRate OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Received error rate on the stack port.
Measured in Errors per Second.
Ports in ethernet mode will return 0."
::= { chSysStackPortEntry 7 }
chSysStackPortRxTotalErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Received number of errors since boot.
The counter may wrap. Ports in ethernet mode
will return 0."
::= { chSysStackPortEntry 8 }
chSysStackPortTxDataRate OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Transmitted Data rate on the stacking port.
Measured in Mb/s.
Ports in ethernet mode will return 0."
::= { chSysStackPortEntry 9 }
chSysStackPortTxErrorRate OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Transmitted error rate on the stack port.
Measured in Errors per Second.
Ports in ethernet mode will return 0."
::= { chSysStackPortEntry 10 }
chSysStackPortTxTotalErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Transmitted number of errors since boot.
The counter may wrap. Ports in ethernet mode
will return 0."
::= { chSysStackPortEntry 11 }
-- ## Processor Table
-- Each stack unit has a single processor.
-- 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 the M-series chassis."
::= { chSysObjects 6 }
chSysProcessorEntry OBJECT-TYPE
SYNTAX ChSysProcessorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of Processor entries."
INDEX { chStackUnitNumber }
::= { chSysProcessorTable 1 }
ChSysProcessorEntry ::=
SEQUENCE {
chSysProcessorModule F10ProcessorModuleType,
chSysProcessorUpTime TimeTicks,
chSysProcessorNvramSize Integer32,
chSysProcessorMemSize Integer32
}
chSysProcessorModule OBJECT-TYPE
SYNTAX F10ProcessorModuleType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of module running on the Processor."
::= { chSysProcessorEntry 1 }
chSysProcessorUpTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The SysUpTime for this Processor."
::= { chSysProcessorEntry 2 }
chSysProcessorNvramSize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total Non-volatile RAM in Kbytes."
::= { chSysProcessorEntry 3 }
chSysProcessorMemSize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The size of the RAM in Mb."
::= { chSysProcessorEntry 4 }
-- ## 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 { chStackUnitNumber }
::= { chSysSwModuleTable 1 }
ChSysSwModuleEntry ::=
SEQUENCE {
chSysSwRuntimeImgVersion DisplayString,
chSysSwRuntimeImgDate F10SwDate,
chSysSwCurrentBootImgVersion DisplayString,
chSysSwCurrentBootImgDate DateAndTime,
chSysSwCurrentBootImgStatus INTEGER,
chSysSwBackupBootImgVersion DisplayString,
chSysSwBackupBootImgDate DateAndTime,
chSysSwBackupBootImgStatus INTEGER,
chSysSwNextRebootImage INTEGER,
chSysSwCurrentBootImage INTEGER,
chSysSwInPartitionAImgVers DisplayString,
chSysSwInPartitionBImgVers DisplayString
}
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.2' indicate major version of 1 and
minor release of 2."
::= { chSysSwModuleEntry 1 }
chSysSwRuntimeImgDate OBJECT-TYPE
SYNTAX F10SwDate
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The release date of this software
module."
::= { chSysSwModuleEntry 2 }
chSysSwCurrentBootImgVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This provides the uboot image version
that is currently running and it is in
the format as follow:
<major version>.<minor version>.<minor
version>......
'1.2' indicate major version of 1 and
minor release of 2."
::= { chSysSwModuleEntry 3 }
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 4 }
chSysSwCurrentBootImgStatus OBJECT-TYPE
SYNTAX INTEGER {
ok(1),
failed(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of current boot image."
::= { chSysSwModuleEntry 5 }
chSysSwBackupBootImgVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This provides the uboot image version
that would be the backup image and it is in
the format as follow:
<major version>.<minor version>.<minor
version>......
'1.2' indicate major version of 1 and
minor release of 2."
::= { chSysSwModuleEntry 6 }
chSysSwBackupBootImgDate OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The backup boot image released date."
::= { chSysSwModuleEntry 7 }
chSysSwBackupBootImgStatus OBJECT-TYPE
SYNTAX INTEGER {
ok(1),
failed(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of the backup boot image."
::= { chSysSwModuleEntry 8 }
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 9 }
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 10 }
chSysSwInPartitionAImgVers OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This provides the Dell Networking OS system image version
that is stored in partition A: and The version
string has Major and Minor release numbers. It
also denotes if the release is Maintenance,
Technical, Patch, Beta, or Generally Available"
::= { chSysSwModuleEntry 11 }
chSysSwInPartitionBImgVers OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This provides the Dell Networking OS system image version
that is stored in partition B: and The version
string has Major and Minor release numbers. It
also denotes if the release is Maintenance,
Technical, Patch, Beta, or Generally Available"
::= { chSysSwModuleEntry 12 }
-- ## Stack Unit CPU and Memory Utilization
chStackUnitUtilTable OBJECT-TYPE
SYNTAX SEQUENCE OF ChStackUnitUtilEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table listing the cpu and memory utilization
in the stack unit."
::= { chSysObjects 8 }
chStackUnitUtilEntry OBJECT-TYPE
SYNTAX ChStackUnitUtilEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row in each processor cpu and mmory utilization"
INDEX { chStackUnitNumber }
::= { chStackUnitUtilTable 1 }
ChStackUnitUtilEntry ::=
SEQUENCE {
chStackUnitCpuType F10ProcessorModuleType,
chStackUnitCpuUtil5Sec Gauge32,
chStackUnitCpuUtil1Min Gauge32,
chStackUnitCpuUtil5Min Gauge32,
chStackUnitMemUsageUtil Gauge32,
chStackUnitFlashUsageUtil Gauge32
}
chStackUnitCpuType OBJECT-TYPE
SYNTAX F10ProcessorModuleType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of module running on the Processor."
::= { chStackUnitUtilEntry 1 }
chStackUnitCpuUtil5Sec OBJECT-TYPE
SYNTAX Gauge32(0..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CPU utilization in percentage for last 5 seconds."
::= { chStackUnitUtilEntry 2 }
chStackUnitCpuUtil1Min OBJECT-TYPE
SYNTAX Gauge32(0..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CPU utilization in percentage for last 1 minute."
::= { chStackUnitUtilEntry 3 }
chStackUnitCpuUtil5Min OBJECT-TYPE
SYNTAX Gauge32(0..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CPU utilization in percentage for last 5 minutes."
::= { chStackUnitUtilEntry 4 }
chStackUnitMemUsageUtil OBJECT-TYPE
SYNTAX Gauge32(0..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total memory usage in percentage."
::= { chStackUnitUtilEntry 5 }
chStackUnitFlashUsageUtil OBJECT-TYPE
SYNTAX Gauge32(0..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total flash usage in percentage."
::= { chStackUnitUtilEntry 6 }
-- ## Software Cores Table
chSysSwCoresTable OBJECT-TYPE
SYNTAX SEQUENCE OF ChSysCoresEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing information about the software
cores that have been generated as a result of
system failures."
::= { chSysObjects 9 }
chSysCoresEntry OBJECT-TYPE
SYNTAX ChSysCoresEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row in the software core table representing
information about a core that has been generated."
INDEX { chStackUnitNumber,
chSysCoresInstance }
::= { chSysSwCoresTable 1 }
ChSysCoresEntry ::=
SEQUENCE {
chSysCoresInstance INTEGER,
chSysCoresFileName DisplayString,
chSysCoresTimeCreated F10SwDate,
chSysCoresStackUnitNumber Integer32,
chSysCoresProcess DisplayString
}
chSysCoresInstance OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique index assigned to the cores stored on
this stack unit."
::= { chSysCoresEntry 1 }
chSysCoresFileName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the core file including the path."
::= { chSysCoresEntry 2 }
chSysCoresTimeCreated OBJECT-TYPE
SYNTAX F10SwDate
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time at which the core file was created."
::= { chSysCoresEntry 3 }
chSysCoresStackUnitNumber OBJECT-TYPE
SYNTAX Integer32 (1..12)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The stack unit member which generated the core."
::= { chSysCoresEntry 4 }
chSysCoresProcess OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the process which generated the core."
::= { chSysCoresEntry 5 }
--
-- ## Notifications
--
chAlarmMibNotifications OBJECT IDENTIFIER ::= { chAlarmObjects 0 }
--
-- TRAPS
--
chAlarmStackUnitDown NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The driver/agent generate this trap when a
stack unit operational status is down."
::= { chAlarmMibNotifications 1 }
chAlarmStackUnitUp NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The driver/agent generate this trap when a
stack unit operational status is up."
::= { chAlarmMibNotifications 2 }
chAlarmStackUnitReset NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The driver/agent generate this trap when a
stack unit is reset."
::= { chAlarmMibNotifications 3 }
chAlarmStackUnitOffline NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The driver/agent generate this trap when a
stack unit is set to offline."
::= { chAlarmMibNotifications 4 }
chAlarmStackUnitCodeMismatch NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The driver/agent generate this trap when a
stack unit is not the same code as a management
stack."
::= { chAlarmMibNotifications 5 }
chAlarmStackPortLinkUp NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The driver/agent generate this trap when a
stack port is connected to annother stack member."
::= { chAlarmMibNotifications 6 }
chAlarmStackPortLinkDown NOTIFICATION-TYPE
OBJECTS { chAlarmVarInteger,
chAlarmVarString,
chAlarmVarSlot,
chAlarmVarPort
}
STATUS current
DESCRIPTION
"The driver/agent generate this trap when a
stack port is disconnected from annother stack member."
::= { chAlarmMibNotifications 7 }
chAlarmStackUnitRoleChanged NOTIFICATION-TYPE
OBJECTS { chStackUnitMgmtStatus,
chAlarmVarString
}
STATUS current
DESCRIPTION
"The driver/agent generate this trap when a stack unit role is changed."
::= { chAlarmMibNotifications 8 }
-- ### conformance information ###
f10mSeriesMibConformance OBJECT IDENTIFIER ::= { f10MSerChassisMib 2 }
f10mSeriesMibCompliances OBJECT IDENTIFIER ::= { f10mSeriesMibConformance 1 }
f10mSeriesMibGroups OBJECT IDENTIFIER ::= { f10mSeriesMibConformance 2 }
-- ## compliance statements
f10mSeriesMibCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for Dell
product which implement the Dell Networking OS
M-Series Chassis MIB."
MODULE -- this module
MANDATORY-GROUPS {
f10mSeriesComponentGroup,
f10mSeriesSystemGroup,
f10mSeriesNotificationGroup
}
::= { f10mSeriesMibCompliances 1 }
-- ## units of conformance
f10mSeriesComponentGroup OBJECT-GROUP
OBJECTS {
chNumStackUnits,
chNumMaxStackableUnits,
chStackUnitIndexNext
}
STATUS current
DESCRIPTION
"A collection of objects providing the
overall M-series chassis information."
::= { f10mSeriesMibGroups 1 }
f10mSeriesSystemGroup OBJECT-GROUP
OBJECTS {
chStackUnitNumber,
chStackUnitSID,
chStackUnitMgmtStatus,
chStackUnitHwMgmtPreference,
chStackUnitAdmMgmtPreference,
chStackUnitModelID,
chStackUnitStatus,
chStackUnitDescription,
chStackUnitCodeVersion,
chStackUnitCodeVersionInFlash,
chStackUnitSerialNumber,
chStackUnitUpTime,
chStackUnitTemp,
chStackUnitType,
chStackUnitSysType,
chStackUnitVendorId,
chStackUnitMfgDate,
chStackUnitMacAddress,
chStackUnitPartNum,
chStackUnitProductRev,
chStackUnitProductOrder,
chStackUnitCountryCode,
chStackUnitNum10GigEtherPorts,
chStackUnitNumGigEtherPorts,
chStackUnitNumFastEtherPorts,
chStackUnitNumFanTrays,
chStackUnitNumPowerSupplies,
chStackUnitNumPluggableModules,
chStackUnitRowStatus,
chStackUnitPiecePartID,
chStackUnitPPIDRevision,
chStackUnitServiceTag,
chStackUnitExpressServiceCode,
chSysPowerSupplyIndex,
chSysPowerSupplyOperStatus,
chSysPowerSupplyType,
chSysFanTrayIndex,
chSysFanTrayOperStatus,
chSysPortIndex,
chSysPortType,
chSysPortAdminStatus ,
chSysPortOperStatus,
chSysPortIfIndex,
chSysPortXfpRecvPower,
chSysPortXfpRecvTemp,
chSysPortXfpTxPower,
chSysStackPortIndex,
chSysStackPortConfiguredMode,
chSysStackPortRunningMode,
chSysStackPortLinkStatus,
chSysStackPortLinkSpeed,
chSysStackPortRxDataRate,
chSysStackPortRxErrorRate,
chSysStackPortRxTotalErrors,
chSysStackPortTxDataRate,
chSysStackPortTxErrorRate,
chSysStackPortTxTotalErrors,
chSysProcessorModule,
chSysProcessorUpTime,
chSysProcessorNvramSize,
chSysProcessorMemSize,
chSysSwRuntimeImgVersion,
chSysSwRuntimeImgDate,
chSysSwCurrentBootImgVersion,
chSysSwCurrentBootImgDate,
chSysSwCurrentBootImgStatus,
chSysSwBackupBootImgVersion,
chSysSwBackupBootImgDate,
chSysSwBackupBootImgStatus,
chSysSwNextRebootImage,
chSysSwCurrentBootImage,
chSysSwInPartitionAImgVers,
chSysSwInPartitionBImgVers,
chStackUnitCpuType,
chStackUnitCpuUtil5Sec,
chStackUnitCpuUtil1Min,
chStackUnitCpuUtil5Min,
chStackUnitMemUsageUtil,
chStackUnitFlashUsageUtil,
chSysCoresInstance,
chSysCoresFileName,
chSysCoresTimeCreated,
chSysCoresStackUnitNumber,
chSysCoresProcess
}
STATUS current
DESCRIPTION
"A collection of objects providing the
chassis system hardware information."
::= { f10mSeriesMibGroups 2 }
f10mSeriesNotificationGroup NOTIFICATION-GROUP
NOTIFICATIONS {
chAlarmStackUnitDown,
chAlarmStackUnitUp,
chAlarmStackUnitReset,
chAlarmStackUnitOffline,
chAlarmStackUnitCodeMismatch,
chAlarmStackPortLinkUp,
chAlarmStackPortLinkDown,
chAlarmStackUnitRoleChanged
}
STATUS current
DESCRIPTION
"Notifications for Dell Networking OS M-Series Chassis mib"
::= { f10mSeriesMibGroups 3 }
END
|