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
|
F10-Z-SERIES-CHASSIS-MIB DEFINITIONS ::= BEGIN
-- This module provides authoritative definitions for Z-series
-- Dell Networking OS Chassis MIB.
--
-- This module will be extended, as needed.
--
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,
Gauge32, Integer32, TimeTicks
FROM SNMPv2-SMI
DisplayString, MacAddress
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
f10Mgmt
FROM FORCE10-SMI
F10SwDate, F10ChassisType, F10ProcessorModuleType,
F10MfgDate, F10HundredthdB, F10SSeriesPortType,
F10CardOperStatus
FROM FORCE10-TC;
f10ZSerChassisMib MODULE-IDENTITY
LAST-UPDATED "201404161200Z" -- Apr 16, 2014 12:00:00 GMT
ORGANIZATION "Dell Inc."
CONTACT-INFO "http://www.force10networks.com/support"
DESCRIPTION
"Dell Networking OS Z-Series Chassis MIB."
REVISION "201404161200Z"
DESCRIPTION
"Updated Contact info and Description."
REVISION "201310101200Z"
DESCRIPTION
"Initial version of this mib."
::= { f10Mgmt 25 }
-- ### Groups ###
f10ZSerChassisObject OBJECT IDENTIFIER ::={ f10ZSerChassisMib 1 }
chObjects OBJECT IDENTIFIER ::={ f10ZSerChassisObject 1 }
chSysObjects OBJECT IDENTIFIER ::={ f10ZSerChassisObject 2 }
-- ### Chassis Information
chType OBJECT-TYPE
SYNTAX F10ChassisType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of chassis."
::= { chObjects 1 }
chSwVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current FTOS image version running in the system.
The version string will be in following format
major_ver.minor_ver(maintenance_ver.patch_ver)"
::= { chObjects 2 }
chMacAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A 6-octet MAC Address assigned to this Chassis."
::= { chObjects 3 }
chSerialNumber OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..14))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The chassis's serial number."
::= { chObjects 4 }
chPartNum OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..11))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The chassis manufacturer's part number."
::= { chObjects 5 }
chProductRev OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..3))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The chassis manufacturer's product revision."
::= { chObjects 6 }
chVendorId OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..3))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The chassis manufacturer vendor's id."
::= { chObjects 7 }
chMfgDate OBJECT-TYPE
SYNTAX F10MfgDate
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The date the chassis was manufactured."
::= { chObjects 8 }
chCountryCode OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..2))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The chassis manufacturer's country code."
::= { chObjects 9 }
chPiecePartID OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..24))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The chassis's piece part ID."
::= { chObjects 10 }
chPPIDRevision OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..3))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The chassis's piece part ID revision."
::= { chObjects 11 }
chServiceTag OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..7))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The chassis's service tag."
::= { chObjects 12 }
chExpressServiceCode OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..14))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The chassis's express service code."
::= { chObjects 13 }
chNum10GigEtherPorts OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of 10G Ethernet/802.3 interfaces
in the chassis."
::= { chObjects 14 }
chNum40GigEtherPorts OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of 40G Ethernet/802.3 interfaces
in the chassis."
::= { chObjects 15 }
chNumLineCards OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of line cards currently supported in the chassis."
::= { chObjects 16 }
chNumFanTrays OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Fan trays in the chassis."
::= { chObjects 17 }
chNumPowerSupplies OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Power supplies in the chassis."
::= { chObjects 18 }
-- ### Chassis System ###
-- ## Processor Table
chSysProcessorTable OBJECT-TYPE
SYNTAX SEQUENCE OF ChSysProcessorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of Processors resident in the chassis.
The card table contains the Processor information
of each Processor in the chassis."
::= { chSysObjects 1 }
chSysProcessorEntry OBJECT-TYPE
SYNTAX ChSysProcessorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of Processor's entries containing information
for Processors in the system."
INDEX { chSysProcessorIndex }
::= { chSysProcessorTable 1 }
ChSysProcessorEntry ::=
SEQUENCE {
chSysProcessorIndex Integer32,
chSysProcessorType F10ProcessorModuleType,
chSysProcessorUpTime TimeTicks,
chSysProcessorMemSize Integer32
}
chSysProcessorIndex OBJECT-TYPE
SYNTAX Integer32 (1..5)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A unique index for each Processor within the
chassis. The valid entries are 1 to the value
of number of processors.
In Z9500, Index 1 - Control Processor
Index 2 - Routing Processor
Index 3 - LineCard Processor 0
Index 4 - LineCard Processor 1
Index 5 - LineCard Processor 2"
::= { chSysProcessorEntry 1 }
chSysProcessorType OBJECT-TYPE
SYNTAX F10ProcessorModuleType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of module running on the Processor."
::= { chSysProcessorEntry 2 }
chSysProcessorUpTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The SysUpTime for this Processor."
::= { 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 2 }
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 { chSysProcessorIndex }
::= { chSysSwModuleTable 1 }
ChSysSwModuleEntry ::=
SEQUENCE {
chSysSwModuleRuntimeImgVersion DisplayString,
chSysSwModuleRuntimeImgDate F10SwDate,
chSysSwModuleBootFlashImgVersion DisplayString,
chSysSwModuleBootSelectorImgVersion DisplayString,
chSysSwModuleNextRebootImage INTEGER,
chSysSwModuleCurrentBootImage INTEGER,
chSysSwModuleInPartitionAImgVers DisplayString,
chSysSwModuleInPartitionBImgVers DisplayString
}
chSysSwModuleRuntimeImgVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current FTOS image version running in the system.
The version string will be in following format
major_ver.minor_ver(maintenance_ver.patch_ver)"
::= { chSysSwModuleEntry 1 }
chSysSwModuleRuntimeImgDate OBJECT-TYPE
SYNTAX F10SwDate (SIZE (0..10))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The release date of this software module."
::= { chSysSwModuleEntry 2 }
chSysSwModuleBootFlashImgVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This provides the Grub image version that is currently
running in the processor."
::= { chSysSwModuleEntry 3 }
chSysSwModuleBootSelectorImgVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This provides the BIOS image version that is currently
running in the processor."
::= { chSysSwModuleEntry 4 }
chSysSwModuleNextRebootImage OBJECT-TYPE
SYNTAX INTEGER {
partitionA(1),
partitionB(2),
networkBoot(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The image selection, when the chassis is rebooted.
partitionA - Image stored in bootflash partition A:
partitionB - Image stored in bootflash partition B:
networkBoot - will be booted via network."
::= { chSysSwModuleEntry 5 }
chSysSwModuleCurrentBootImage OBJECT-TYPE
SYNTAX INTEGER {
partitionA(1),
partitionB(2),
networkBoot(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current image is booted from.
partitionA - Image stored in bootflash partition A:
partitionB - Image stored in bootflash partition B:
networkBoot - Booted via network."
::= { chSysSwModuleEntry 6 }
chSysSwModuleInPartitionAImgVers OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This provides the FTOS 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 7 }
chSysSwModuleInPartitionBImgVers OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This provides the FTOS 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 8 }
-- ## Processor and Memory Utilization Table
chSysCpuUtilTable OBJECT-TYPE
SYNTAX SEQUENCE OF ChSysCpuUtilEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table listing the processor and memory utilization of
of each CPU in the system."
::= { chSysObjects 3 }
chSysCpuUtilEntry OBJECT-TYPE
SYNTAX ChSysCpuUtilEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Processor and Memory Utilization entry for a
particular CPU."
INDEX { chSysProcessorIndex }
::= { chSysCpuUtilTable 1 }
ChSysCpuUtilEntry ::=
SEQUENCE {
chSysCpuUtil5Sec Gauge32,
chSysCpuUtil1Min Gauge32,
chSysCpuUtil5Min Gauge32,
chSysCpuUtilMemUsage Gauge32,
chSysCpuUtilFlashUsage Gauge32
}
chSysCpuUtil5Sec OBJECT-TYPE
SYNTAX Gauge32(0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CPU utilization in percentage for last 5 seconds."
::= { chSysCpuUtilEntry 1 }
chSysCpuUtil1Min OBJECT-TYPE
SYNTAX Gauge32(0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CPU utilization in percentage for last 1 minute."
::= { chSysCpuUtilEntry 2 }
chSysCpuUtil5Min OBJECT-TYPE
SYNTAX Gauge32(0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CPU utilization in percentage for last 5 minutes."
::= { chSysCpuUtilEntry 3 }
chSysCpuUtilMemUsage OBJECT-TYPE
SYNTAX Gauge32(0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total Memory usage in percentage."
::= { chSysCpuUtilEntry 4 }
chSysCpuUtilFlashUsage OBJECT-TYPE
SYNTAX Gauge32(0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total Flash usage in percentage."
::= { chSysCpuUtilEntry 5 }
-- ## Linecard Table
chSysLineCardTable OBJECT-TYPE
SYNTAX SEQUENCE OF ChSysLineCardEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of line cards resident in the chassis.
This table contains the information on each linecard
in the chassis."
::= { chSysObjects 4 }
chSysLineCardEntry OBJECT-TYPE
SYNTAX ChSysLineCardEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry for each line card in the chassis."
INDEX { chSysLineCardIndex }
::= { chSysLineCardTable 1 }
ChSysLineCardEntry ::=
SEQUENCE {
chSysLineCardIndex Integer32,
chSysLineCardType INTEGER,
chSysLineCardDescription DisplayString,
chSysLineCardStatus F10CardOperStatus,
chSysLineCardTemp Integer32,
chSysLineCardNum10GigEtherPorts Integer32,
chSysLineCardNum40GigEtherPorts Integer32
}
chSysLineCardIndex OBJECT-TYPE
SYNTAX Integer32 (1..3)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A unique index for each line card in the chassis."
::= { chSysLineCardEntry 1 }
chSysLineCardType OBJECT-TYPE
SYNTAX INTEGER {
z9500LC36(1),
z9500LC48(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Line card's type. In Z9500, there is 36 40G port line card and
48 40G port line card.
z9500LC36 - 36 (40G) port LC
z9500LC48 - 48 (40G) port LC."
::= { chSysLineCardEntry 2 }
chSysLineCardDescription OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..40))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A short description of the line card."
::= { chSysLineCardEntry 3 }
chSysLineCardStatus OBJECT-TYPE
SYNTAX F10CardOperStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current operational state of the line card."
::= { chSysLineCardEntry 4 }
chSysLineCardTemp OBJECT-TYPE
SYNTAX Integer32
UNITS "degrees Centigrade"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Temperature of the Line card."
::= { chSysLineCardEntry 5 }
chSysLineCardNum10GigEtherPorts OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of 10G Ethernet/802.3 interfaces
in the line card."
::= { chSysLineCardEntry 6 }
chSysLineCardNum40GigEtherPorts OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of 40G Ethernet/802.3 interfaces
in the line card."
::= { chSysLineCardEntry 7 }
-- ## Port Table
chSysPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF ChSysPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of ports in the Z-series chassis."
::= { chSysObjects 5 }
chSysPortEntry OBJECT-TYPE
SYNTAX ChSysPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A port entry containing objects for a
particular port."
INDEX { chSysLineCardIndex,
chSysPortIndex }
::= { chSysPortTable 1 }
ChSysPortEntry ::=
SEQUENCE {
chSysPortIndex Integer32,
chSysPortType F10SSeriesPortType,
chSysPortAdminStatus INTEGER,
chSysPortOperStatus INTEGER,
chSysPortIfIndex Integer32,
chSysPortXfpRxPower F10HundredthdB,
chSysPortXfpRxTemp Integer32,
chSysPortXfpTxPower F10HundredthdB
}
chSysPortIndex OBJECT-TYPE
SYNTAX Integer32 (1..192)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A unique index for each port within the Line Card.
Line card 0 will have index from 1 to 144
Line card 1 will have index from 1 to 192
Line card 2 will have index from 1 to 192."
::= { chSysPortEntry 1 }
chSysPortType OBJECT-TYPE
SYNTAX F10SSeriesPortType
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 port.
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 port.
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 }
chSysPortXfpRxPower 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 }
chSysPortXfpRxTemp OBJECT-TYPE
SYNTAX Integer32
UNITS "degrees Centigrade"
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 }
-- ## 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 Z-series chassis."
::= { chSysObjects 6 }
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,
chSysPowerSupplyPiecePartID DisplayString,
chSysPowerSupplyPPIDRevision DisplayString,
chSysPowerSupplyServiceTag DisplayString,
chSysPowerSupplyExpressServiceCode DisplayString,
chSysPowerSupplyUsage Integer32
}
chSysPowerSupplyIndex OBJECT-TYPE
SYNTAX Integer32 (1..4)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The unique index of the power supply."
::= { chSysPowerSupplyEntry 1 }
chSysPowerSupplyOperStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1),
down(2),
absent(3)
}
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 }
chSysPowerSupplyPiecePartID OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..24))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The power supply's piece part id."
::= { chSysPowerSupplyEntry 4 }
chSysPowerSupplyPPIDRevision OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..3))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The power supply's PPID revision."
::= { chSysPowerSupplyEntry 5 }
chSysPowerSupplyServiceTag OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..7))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The power supply's service tag."
::= { chSysPowerSupplyEntry 6 }
chSysPowerSupplyExpressServiceCode OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..14))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The power supply's express service code."
::= { chSysPowerSupplyEntry 7 }
chSysPowerSupplyUsage OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Power usage of this Power Supply in Watts."
::= { chSysPowerSupplyEntry 8 }
-- ## 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 Z-series chassis."
::= { chSysObjects 7 }
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,
chSysFanTrayPiecePartID DisplayString,
chSysFanTrayPPIDRevision DisplayString,
chSysFanTrayServiceTag DisplayString,
chSysFanTrayExpressServiceCode DisplayString
}
chSysFanTrayIndex OBJECT-TYPE
SYNTAX Integer32 (1..5)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The unique index of the fan tray."
::= { chSysFanTrayEntry 1 }
chSysFanTrayOperStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1),
down(2),
absent(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of the fan tray."
::= { chSysFanTrayEntry 2 }
chSysFanTrayPiecePartID OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..24))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The fan tray's piece part id."
::= { chSysFanTrayEntry 3 }
chSysFanTrayPPIDRevision OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..3))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The fan tray's PPID revision."
::= { chSysFanTrayEntry 4 }
chSysFanTrayServiceTag OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..7))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The fan tray's service tag."
::= { chSysFanTrayEntry 5 }
chSysFanTrayExpressServiceCode OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..14))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The fan tray's express service code."
::= { chSysFanTrayEntry 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 8 }
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 { chSysProcessorIndex,
chSysCoresInstance }
::= { chSysSwCoresTable 1 }
ChSysCoresEntry ::=
SEQUENCE {
chSysCoresInstance INTEGER,
chSysCoresFileName DisplayString,
chSysCoresTimeCreated F10SwDate,
chSysCoresProcessorName DisplayString,
chSysCoresProcess DisplayString
}
chSysCoresInstance OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The instance of the core for the process which
which generated the core since the same process
may have generated multiple cores."
::= { chSysCoresEntry 1 }
chSysCoresFileName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the core file including the core."
::= { 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 }
chSysCoresProcessorName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The processor 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 }
-- ### conformance information ###
f10ZSeriesChassisMibConformance OBJECT IDENTIFIER ::= { f10ZSerChassisMib 2 }
f10ZSeriesChassisMibCompliances OBJECT IDENTIFIER ::= { f10ZSeriesChassisMibConformance 1 }
f10ZSeriesChassisMibGroups OBJECT IDENTIFIER ::= { f10ZSeriesChassisMibConformance 2 }
-- ## compliance statements
f10ZSeriesChassisMibCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for Dell Networking
product which implement the Z-Series
Chassis MIB."
MODULE -- this module
MANDATORY-GROUPS {
f10ZSeriesComponentGroup,
f10ZSeriesSystemGroup
}
::= { f10ZSeriesChassisMibCompliances 1 }
-- ## units of conformance
f10ZSeriesComponentGroup OBJECT-GROUP
OBJECTS {
chType,
chSwVersion,
chMacAddr,
chSerialNumber,
chPartNum,
chProductRev,
chVendorId,
chMfgDate,
chCountryCode,
chPiecePartID,
chPPIDRevision,
chServiceTag,
chExpressServiceCode,
chNum10GigEtherPorts,
chNum40GigEtherPorts,
chNumLineCards,
chNumFanTrays,
chNumPowerSupplies
}
STATUS current
DESCRIPTION
"A collection of objects providing the
overall Z-series chassis information."
::= { f10ZSeriesChassisMibGroups 1 }
f10ZSeriesSystemGroup OBJECT-GROUP
OBJECTS {
chSysProcessorType,
chSysProcessorUpTime,
chSysProcessorMemSize,
chSysSwModuleRuntimeImgVersion,
chSysSwModuleRuntimeImgDate,
chSysSwModuleBootFlashImgVersion,
chSysSwModuleBootSelectorImgVersion,
chSysSwModuleNextRebootImage,
chSysSwModuleCurrentBootImage,
chSysSwModuleInPartitionAImgVers,
chSysSwModuleInPartitionBImgVers,
chSysCpuUtil5Sec,
chSysCpuUtil1Min,
chSysCpuUtil5Min,
chSysCpuUtilMemUsage,
chSysCpuUtilFlashUsage,
chSysLineCardType,
chSysLineCardDescription,
chSysLineCardStatus,
chSysLineCardTemp,
chSysLineCardNum10GigEtherPorts,
chSysLineCardNum40GigEtherPorts,
chSysPortType,
chSysPortAdminStatus,
chSysPortOperStatus,
chSysPortIfIndex,
chSysPortXfpRxPower,
chSysPortXfpRxTemp,
chSysPortXfpTxPower,
chSysPowerSupplyOperStatus,
chSysPowerSupplyType,
chSysPowerSupplyPiecePartID,
chSysPowerSupplyPPIDRevision,
chSysPowerSupplyServiceTag,
chSysPowerSupplyExpressServiceCode,
chSysPowerSupplyUsage,
chSysFanTrayOperStatus,
chSysFanTrayPiecePartID,
chSysFanTrayPPIDRevision,
chSysFanTrayServiceTag,
chSysFanTrayExpressServiceCode,
chSysCoresInstance,
chSysCoresFileName,
chSysCoresTimeCreated,
chSysCoresProcessorName,
chSysCoresProcess
}
STATUS current
DESCRIPTION
"A collection of objects providing the
chassis system hardware information."
::= { f10ZSeriesChassisMibGroups 2 }
END
|