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
|
F10-C-SERIES-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
FROM SNMPv2-SMI
DateAndTime, DisplayString, MacAddress
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
f10Mgmt
FROM FORCE10-SMI
F10CSeriesPortType, F10CSeriesCardType,
F10ProcessorModuleType, F10SwDate,
F10MfgDate, F10ChassisMode, F10CardOperStatus,
F10ChassisType, F10HundredthdB
FROM FORCE10-TC;
f10CSerChassisMib 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 C-Series Enterprise Chassis MIB. "
REVISION "200809021200Z"
DESCRIPTION
"Import F10CardOperStatus."
REVISION "200706281200Z"
DESCRIPTION
"Import F10ChassisType.
Redefine XFP received power object.
"
REVISION "200705221200Z"
DESCRIPTION
"The following changes have been made:
- add new table: chLineCardUtilTable.
- use gauge32 to define utilization objects.
- add module conformance."
REVISION "0605010000Z"
DESCRIPTION
"First draft revision of Force10 c-series chassis mib."
::= { f10Mgmt 8 }
-- ### Groups ###
f10CSerChassisObject OBJECT IDENTIFIER ::={ f10CSerChassisMib 1 }
chObjects OBJECT IDENTIFIER ::={ f10CSerChassisObject 1 }
chSysObjects OBJECT IDENTIFIER ::={ f10CSerChassisObject 2 }
chRpmObjects OBJECT IDENTIFIER ::={ f10CSerChassisObject 3 }
chAlarmObjects OBJECT IDENTIFIER ::={ f10CSerChassisObject 4 }
chLineCardObjects OBJECT IDENTIFIER ::={ f10CSerChassisObject 5 }
-- ### Chassis Information
chType OBJECT-TYPE
SYNTAX F10ChassisType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of chassis."
::= { chObjects 1 }
chChassisMode OBJECT-TYPE
SYNTAX F10ChassisMode
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The chassis mode of this chassis."
::= { chObjects 2 }
chSwVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current FTOS system images software version."
::= { chObjects 3 }
chMacAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A 6-octet MAC Address assigned
to this chassis.
"
::= { chObjects 4 }
chSerialNumber OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The chassis's serial number."
::= { chObjects 5 }
chPartNum OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The chassis manufacturer's part number."
::= { chObjects 6 }
chProductRev OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The chassis manufacturer's product revision."
::= { chObjects 7 }
chVendorId OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The chassis manufacturer vendor's id."
::= { chObjects 8 }
chDateCode OBJECT-TYPE
SYNTAX F10MfgDate
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The date the chassis was manufactured.
"
::= { chObjects 9 }
chCountryCode OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (2))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The chassis manufacturer's country code"
::= { chObjects 10 }
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 11 }
chNumLinecards OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of line cards
in the chassis.
"
::= { chObjects 12 }
chNumFanTrays OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of fan trays
on the chassis."
::= { chObjects 13 }
chNumPowerSupplies OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of power supply
in the chassis."
::= { chObjects 14 }
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 15 }
-- ### Chassis System ###
-- ## 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 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 process 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 card table contains the card information of
each slot in the chassis.
"
::= { chSysObjects 1 }
chSysCardEntry OBJECT-TYPE
SYNTAX ChSysCardEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of cards entries containing information
for line card.
The placement of line cards and rpm cards
in the C300 chassis are as follows :
( physical slot numbers )
1 2 3 4 5 6 7 8 9 10
( Force10 card number )
0 1 2 3 0 1 4 5 6 7
| | | |
---------- ----------
| | | |
line card | | line card
| |
| + ----> RPM card
+-------> RPM card
The placement of line cards and rpm cards
in the C150 chassis are as follows :
( physical slot numbers )
1 2 3 4 5 6
( Force10 card number )
0 1 0 1 2 3
| | | |
---- ----
| | | |
line card | | line card
| |
| + ----> RPM card
+-------> RPM card
"
INDEX { chSysCardSlotIndex }
::= { chSysCardTable 1 }
ChSysCardEntry ::=
SEQUENCE {
chSysCardSlotIndex Integer32,
chSysCardType F10CSeriesCardType,
chSysCardNumber Integer32,
chSysCardNumPorts Integer32,
chSysCardTemp Gauge32,
chSysCardUpTime TimeTicks,
chSysCardAdminStatus INTEGER,
chSysCardOperStatus F10CardOperStatus,
chSysCardBootFlashA DisplayString,
chSysCardBootFlashB DisplayString,
chSysCardSerialNumber DisplayString,
chSysCardPartNum DisplayString,
chSysCardProductRev DisplayString,
chSysCardVendorId DisplayString,
chSysCardDateCode F10MfgDate,
chSysCardCountryCode OCTET STRING
}
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 F10CSeriesCardType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Type of card in this slot. The type
of cards are defined in F10CSeriesCardType."
::= { 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 6.
"
::= { chSysCardEntry 3 }
chSysCardNumPorts 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 4 }
chSysCardTemp OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The temperature of the card.
"
::= { chSysCardEntry 5 }
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 6 }
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 7 }
chSysCardOperStatus OBJECT-TYPE
SYNTAX F10CardOperStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current operational state of the card."
::= { chSysCardEntry 8 }
chSysCardBootFlashA OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The software version of the boot flash.
The card is booted with this boot image A.
"
::= { chSysCardEntry 9 }
chSysCardBootFlashB OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The software version of the boot flash.
The card is booted with this boot image B.
"
::= { chSysCardEntry 10 }
chSysCardSerialNumber OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The serial number of the card in this slot."
::= { chSysCardEntry 11 }
chSysCardPartNum OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The card part number"
::= { chSysCardEntry 12 }
chSysCardProductRev OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The card manufacturer's product
revision"
::= { chSysCardEntry 13 }
chSysCardVendorId OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The vendor id that manufactured the
card in this slot."
::= { chSysCardEntry 14 }
chSysCardDateCode OBJECT-TYPE
SYNTAX F10MfgDate
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The date the card is manufactured."
::= { chSysCardEntry 15 }
chSysCardCountryCode OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (2))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The card manufacturer's country
code"
::= { chSysCardEntry 16 }
-- ## Port Table
chSysPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF ChSysPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of ports in a slot."
::= { chSysObjects 2 }
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 F10CSeriesPortType,
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 F10CSeriesPortType
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 }
-- ## 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 3 }
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
}
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 }
-- ## 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 4 }
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
"Fill this in later"
::= { 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 }
-- ### 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 5 }
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 6 }
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 }
-- ## 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 7 }
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,
chSysSfmAdminStatus INTEGER,
chSysSfmOperStatus INTEGER,
chSysSfmErrorStatus INTEGER
}
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 }
chSysSfmAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1),
down(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The admin status of
each SFM."
::= { chSysSfmEntry 2 }
chSysSfmOperStatus OBJECT-TYPE
SYNTAX INTEGER {
active(1),
absent(2),
standby(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
'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."
::= { chSysSfmEntry 3 }
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 4 }
-- ## 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 }
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 5 }
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 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 }
-- ## 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 }
-- ### conformance information ###
f10CSerChassisMibConformance OBJECT IDENTIFIER ::= { f10CSerChassisMib 2 }
f10CSerChassisMibCompliances OBJECT IDENTIFIER ::= { f10CSerChassisMibConformance 1 }
f10CSerChassisMibGroups OBJECT IDENTIFIER ::= { f10CSerChassisMibConformance 2 }
-- ## compliance statements
f10CSerChassisMibCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for Force10
product which implement the C-Series
Chassis MIB."
MODULE -- this module
MANDATORY-GROUPS {
f10CSerComponentGroup,
f10CSerSystemGroup,
f10CSerRpmGroup,
f10CSerLineCardGroup
}
::= { f10CSerChassisMibCompliances 1 }
-- ## units of conformance
f10CSerComponentGroup OBJECT-GROUP
OBJECTS {
chType,
chChassisMode,
chSwVersion,
chMacAddr,
chSerialNumber,
chPartNum,
chProductRev,
chVendorId,
chDateCode,
chCountryCode,
chNumSlots,
chNumLinecards,
chNumFanTrays,
chNumPowerSupplies,
chNumSfmSlots
}
STATUS current
DESCRIPTION
"A collection of objects providing the
overall chassis information."
::= { f10CSerChassisMibGroups 1 }
f10CSerSystemGroup OBJECT-GROUP
OBJECTS {
chSysCardType,
chSysCardNumber,
chSysCardNumPorts,
chSysCardTemp,
chSysCardUpTime,
chSysCardAdminStatus,
chSysCardOperStatus,
chSysCardBootFlashA,
chSysCardBootFlashB,
chSysCardSerialNumber,
chSysCardPartNum,
chSysCardProductRev,
chSysCardVendorId,
chSysCardDateCode,
chSysCardCountryCode,
chSysPortType,
chSysPortAdminStatus,
chSysPortOperStatus,
chSysPortIfIndex,
chSysXfpRecvPower,
chSysProcessorModule,
chSysProcessorUpTime,
chSysProcessorNvramSize,
chSysProcessorMemSize,
chSysSwRuntimeImgVersion,
chSysSwRuntimeImgDate,
chSysSwCurrentBootImgVersion,
chSysSwCurrentBootImgDate,
chSysSwCurrentBootImgStatus,
chSysSwBackupBootImgVersion,
chSysSwBackupBootImgDate,
chSysSwBackupBootImgStatus,
chSysSwNextRebootImage,
chSysSwCurrentBootImage,
chSysPowerSupplyOperStatus,
chSysPowerSupplyType,
chSysFanTrayOperStatus,
chSysSfmAdminStatus,
chSysSfmOperStatus,
chSysSfmErrorStatus
}
STATUS current
DESCRIPTION
"A collection of objects providing the
chassis system hardware information."
::= { f10CSerChassisMibGroups 2 }
f10CSerRpmGroup OBJECT-GROUP
OBJECTS {
chRpmNumRpms,
chRpmSlotNumber,
chRpmUptime,
chRpmLastSwitchDate,
chRpmMajorAlarmStatus,
chRpmMinorAlarmStatus,
chRpmCpuType,
chRpmCpuUtil5Sec,
chRpmCpuUtil1Min,
chRpmCpuUtil5Min,
chRpmMemUsageUtil
}
STATUS current
DESCRIPTION
"A collection of objects providing the
Route Process Module (RPM) information."
::= { f10CSerChassisMibGroups 3 }
f10CSerLineCardGroup OBJECT-GROUP
OBJECTS {
chLineCardCpuUtil5Sec,
chLineCardCpuUtil1Min,
chLineCardCpuUtil5Min,
chLineCardMemUsageUtil
}
STATUS current
DESCRIPTION
"A collection of objects providing
CPU and Memory Utilization in the Line cards."
::= { f10CSerChassisMibGroups 4 }
END
|