-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathF10-S-SERIES-CHASSIS-MIB
1450 lines (1284 loc) · 48 KB
/
F10-S-SERIES-CHASSIS-MIB
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
F10-S-SERIES-CHASSIS-MIB DEFINITIONS ::= BEGIN
-- Force10 Networks, Inc.
-- 390 Holger Way
-- San Jose, CA 95134
-- This module provides authoritative definitions for S-series
-- Force10 enterprise 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, F10SSeriesPortType
FROM FORCE10-TC;
f10SSerChassisMib MODULE-IDENTITY
LAST-UPDATED "200710031200Z" -- Oct 3, 2007 12:00:00 GMT
ORGANIZATION
"Force10 Networks, Inc."
CONTACT-INFO
"Force10 Networks, Inc.
350 Holger Way
San Jose, CA 95134 USA
Phone: +1 (408) 571 3500
Fax: +1 (408) 571 3550
Email: [email protected]"
DESCRIPTION
"Force10 S-Series Enterprise Chassis MIB. "
REVISION "200710031200Z"
DESCRIPTION
"Initial version of this mib."
::= { f10Mgmt 10 }
-- ### Groups ###
f10SSerChassisObject OBJECT IDENTIFIER ::={ f10SSerChassisMib 1 }
chObjects OBJECT IDENTIFIER ::={ f10SSerChassisObject 1 }
chSysObjects OBJECT IDENTIFIER ::={ f10SSerChassisObject 2 }
chAlarmObjects OBJECT IDENTIFIER ::={ f10SSerChassisObject 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..8)
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."
::= { chObjects 3 }
-- ### Chassis System ###
-- ## SwitchType Table
-- The S-series chassis has a list of supported switch
-- types to configure a unit.
-- The switchType table contains the information of
-- supported switch types.
chSwitchTypeTable OBJECT-TYPE
SYNTAX SEQUENCE OF ChSwitchTypeEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"A list of supported switch types.
"
::= { chSysObjects 1 }
chSwitchTypeEntry OBJECT-TYPE
SYNTAX ChSwitchTypeEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"A list of supported switch types entries."
INDEX { chSwitchTypeSID }
::= { chSwitchTypeTable 1 }
ChSwitchTypeEntry ::=
SEQUENCE {
chSwitchTypeSID Integer32,
chSwitchTypeModelID DisplayString,
chSwitchTypeCodeType CodeType,
chSwitchTypeMgmtPreference Integer32
}
chSwitchTypeSID OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The unique switch type index (SID)."
::= { chSwitchTypeEntry 1 }
chSwitchTypeModelID OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The pre-configured model ID for this swich type."
::= { chSwitchTypeEntry 2 }
chSwitchTypeCodeType OBJECT-TYPE
SYNTAX CodeType
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The code type of this switch type."
::= { chSwitchTypeEntry 3 }
chSwitchTypeMgmtPreference OBJECT-TYPE
SYNTAX Integer32 (0|1..15)
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"indicates the default prefernce value for
the management unit. A value of 0 indicates a disabled
or unassigned preference."
::= { chSwitchTypeEntry 4 }
-- ## StackUnit Table
-- The S-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 2 }
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,
chStackUnitRowStatus RowStatus
}
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..8)
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 assignement 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."
::= { chStackUnitEntry 2 }
chStackUnitSID OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS deprecated
DESCRIPTION
"The index of the chSwitchTypeTable which this unit
is associated with."
::= { 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 Force10 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 supply
in 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 }
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 30 }
-- ### 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 S-series chassis."
::= { chSysObjects 3 }
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 {
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 the S-series chassis."
::= { chSysObjects 4 }
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 S-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 { chStackUnitNumber,
chSysPortIndex }
::= { chSysPortTable 1 }
ChSysPortEntry ::=
SEQUENCE {
chSysPortIndex Integer32,
chSysPortType F10SSeriesPortType,
chSysPortAdminStatus INTEGER,
chSysPortOperStatus INTEGER,
chSysPortIfIndex Integer32,
chSysPortXfpRecvPower 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 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 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
10G Ethernet/802.3 interface.
This object is applied to 10Gig port only.
"
::= { chSysPortEntry 6 }
-- ## Stack Port Table
chSysStackPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF ChSysStackPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of stack ports in the S-series chassis."
::= { chSysObjects 6 }
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 S-series chassis."
::= { chSysObjects 7 }
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 8 }