This repository has been archived by the owner. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathF10-CHASSIS-MIB
2560 lines (2288 loc) · 83.7 KB
/
F10-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-CHASSIS-MIB DEFINITIONS ::= BEGIN
-- Force10 Networks, Inc.
-- 1440 McCarthy Blvd
-- Milpitas, CA 95035-7438
-- This module provides authoritative definitions for Force10
-- enterprise Chassis MIB.
--
-- This module will be extended, as needed.
--
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,
Gauge32, Integer32,
TimeTicks, NOTIFICATION-TYPE
FROM SNMPv2-SMI
DateAndTime, DisplayString
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
FROM SNMPv2-CONF
f10Mgmt
FROM FORCE10-SMI
F10SystemPortType, F10SystemCardType, F10ProcessorModuleType,
F10SlotState, F10SwDate, F10MfgDate, F10ChassisMode,
F10ChassisType, F10HundredthdB, F10CardOperStatus
FROM FORCE10-TC;
f10ChassisMib MODULE-IDENTITY
LAST-UPDATED "200809021200Z" -- Sep. 2, 2008 12:00:00 GMT
ORGANIZATION
"Force10 Networks, Inc."
CONTACT-INFO
"Force10 Networks, Inc
350 Holger Way
San Jose, CA 95134
(408) 571-3500
http://www.force10networks.com"
DESCRIPTION
"Force10 Enterprise Chassis MIB. "
REVISION "200809021200Z"
DESCRIPTION
"Force10 Chassis MIB version 1.23
Import F10CardOperStatus."
REVISION "200804301200Z"
DESCRIPTION
"Force10 Chassis MIB version 1.22
Add chAlarmAcDcMixedPowerSupplyDetect notification.
"
REVISION "200804161200Z"
DESCRIPTION
"Force10 Chassis MIB version 1.21
Add the Sram Parity error counters:
- chSysCardParityPhantomError
- chSysCardParityRecoverableError
- chSysCardParityNonrecovrableError
"
REVISION "200802291200Z"
DESCRIPTION
"Force10 Chassis MIB version 1.20
Add chAlarmSRAMParityErrorDetect notification.
"
REVISION "200706281200Z"
DESCRIPTION
"Force10 Chassis MIB version 1.19
Import F10ChassisType.
Redefine XFP received power object.
"
REVISION "200705221200Z"
DESCRIPTION
"Force10 Chassis MIB version 1.18
- add new table: chLineCardUtilTable
- add new enum value, e1200i(6), to chType
- use Gauge32 to define utilization objects
- add notification group"
REVISION "0605220000Z"
DESCRIPTION
"Force10 Chassis MIB version 1.17
Add new XFP Received power to port table.
"
REVISION "0101020000Z"
DESCRIPTION
"Force10 Chassis MIB version 1.16
Add new chassis types E610.
"
REVISION "0310020000Z"
DESCRIPTION
"Force10 Chassis MIB version 1.15
"
REVISION "0310020000Z"
DESCRIPTION
"Force10 Chassis MIB version 1.14
1. Rename chSysPortOperStatus variables
a) 'cableProblem' to 'portDown'
b) 'notConfigured to 'notPresent'
"
REVISION "0307300000Z"
DESCRIPTION
"Force10 Chassis MIB version 1.13
1. Add support for E300 chassis.
2. Move all textual convention to the Textual-Convention MIB f10-tc.mib
"
REVISION "0307200000Z"
DESCRIPTION
"Force10 Chassis MIB version 1.12
Create SFM Group to add Utilization objects.
Changed some OCTET STRING to DisplayString to work around
the SNMPc browser problem.
"
REVISION "0206010000Z"
DESCRIPTION
"Force10 Chassis MIB version 1.11
Added CPU utilization support and added trap information.
Added traps descriptions that we supported.
Changed linecard name from F12PD to F12PE.
"
REVISION "0204010000Z"
DESCRIPTION
"Force10 Chassis MIB version 1.10
Added new linecards and port type Morphesus EoMpls,
Promatheus 80km & WAN, Cronus ED2 and Apollo
"
REVISION "0212250000Z"
DESCRIPTION
"Force10 Chassis MIB version 1.9
Added New Linecards, fixed Cronus EE port type
"
REVISION "0208080000Z"
DESCRIPTION
"Force10 Chassis MIB version 1.8
Added New Linecards
"
REVISION "0206160000Z"
DESCRIPTION
"Force10 Chassis MIB version 1.7
Added force10 product order number to card,
SFM, and the overall chassis.
"
REVISION "0205120000Z"
DESCRIPTION
"Force10 Chassis MIB version 1.6
Added force10 date textual convention.
Refine the descriptions of chRpmCOAlarmStatus.
"
REVISION "0205010000Z"
DESCRIPTION
"Force10 Chassis MIB version 1.5
Modify textual convention,
f10SystemPortType to add port
types.
"
REVISION "0204150000Z"
DESCRIPTION
"Force10 Chassis MIB version 1.4
Update for E600 series chassis
specification. Modify slot bitmap
description and add power supply
type. Update chassis, card and SFM
tables.
"
REVISION "0111070000Z"
DESCRIPTION
"Force10 Chassis MIB version 1.3
Modify Card Table -
to match the latest chassis manager
specification."
REVISION "0103260000Z"
DESCRIPTION
"Force10 Chassis MIB version 1.2
Modify Software Module Table -
to match the latest download manager
specification."
REVISION "0011210000Z"
DESCRIPTION
"Force10 Chassis MIB version 1.1.
Add more port types and removed
Air Filter Table."
REVISION "0010200000Z"
DESCRIPTION
"Force10 Chassis MIB version 1.0."
REVISION "0010280000Z"
DESCRIPTION
"Updates with review comments from marketing,
hardware and software groups.
Added more RPM information - 2nd draft revision."
REVISION "0010180000Z"
DESCRIPTION
"Updates with first draft review comments.
Changes to software release information."
REVISION "0010010000Z"
DESCRIPTION
"First draft revision of Force10 chassis mib."
::= { f10Mgmt 1 }
-- ### Groups ###
f10ChassisMibObject OBJECT IDENTIFIER ::={ f10ChassisMib 1 }
chObjects OBJECT IDENTIFIER ::={ f10ChassisMibObject 1 }
chSysObjects OBJECT IDENTIFIER ::={ f10ChassisMibObject 2 }
chRpmObjects OBJECT IDENTIFIER ::={ f10ChassisMibObject 3 }
chAlarmObjects OBJECT IDENTIFIER ::={ f10ChassisMibObject 4 }
chLineCardObjects OBJECT IDENTIFIER ::={ f10ChassisMibObject 5 }
-- ### Chassis Information
chType OBJECT-TYPE
SYNTAX F10ChassisType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The FORCE10 type of chassis."
::= { chObjects 1 }
chSerialNumber OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The FORCE10 chassis's serial number."
::= { chObjects 2 }
chVendorId OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The FORCE10 manufacturer's id."
::= { chObjects 3 }
chMfgDate OBJECT-TYPE
SYNTAX F10MfgDate
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The date the chassis was manufactured.
"
::= { chObjects 4 }
chEcLevel OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The EC Level of the FORCE10 chassis."
::= { chObjects 5 }
chNumFanTrays OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of fan trays
on the chassis."
::= { chObjects 6 }
chNumPowerSupplies OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of power supply
in the FORCE10 chassis"
::= { chObjects 7 }
chNumSlots OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of physical slots
in the chassis for line cards and
route process module (rpm ) cards."
::= { chObjects 8 }
chNumSfmSlots OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of switch fabric
modules (sfm) slots in the chassis."
::= { chObjects 9 }
chNumAirFilters OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The total number of air intake
filters in the chassis."
::= { chObjects 10 }
chSlot1to16 OBJECT-TYPE
SYNTAX F10SlotState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object has been obsoleted and will not
be supported by future Force10 Chassis. The
information here is for reference only.
This variable indicates the slot states.
Each slot occupies a bit. The value 1
indicates slot is in used and 0 indicates
the slot is empty.
The placement of line cards and rpm cards
in a E1200 chassis are as follows :
( physical slot numbers )
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| | | |
------------- -------------------
| | | |
line cards | | line card
| |
| + ----> RPM card
+-------> RPM card
The most significant bit is slot 1 and the
least significant bit is slot 16.
The placement of line cards and rpm cards
in a E600 chassis are as follows :
( physical slot numbers )
1 2 3 4 5 6 7 8 9
| |
-------------
| | |
line cards | |
| |
| + ----> RPM card
+-------> RPM card
The most significant bit is slot 1 and the
least significant bit is slot 9."
::= { chObjects 11 }
chCountryCode OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (2))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The FORCE10 manufacturer's y code."
::= { chObjects 12 }
chPartNum OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The FORCE10 manufacturer's part number."
::= { chObjects 13 }
chProductRev OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The FORCE10 manufacturer's product revision."
::= { chObjects 14 }
chProductOrder OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The FORCE10 product order number"
::= { chObjects 15 }
chChassisMode OBJECT-TYPE
SYNTAX F10ChassisMode
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The FORCE10 chassis mode of this chassis."
::= { chObjects 16 }
-- ### Chassis System ###
-- ### Power Supply Table
chSysPowerSupplyTable OBJECT-TYPE
SYNTAX SEQUENCE OF ChSysPowerSupplyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of power supply resident
in this chassis."
::= { chSysObjects 1 }
chSysPowerSupplyEntry OBJECT-TYPE
SYNTAX ChSysPowerSupplyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A power supply entry containing objects for a
particular power supply."
INDEX { chSysPowerSupplyIndex }
::= { chSysPowerSupplyTable 1 }
ChSysPowerSupplyEntry ::=
SEQUENCE {
chSysPowerSupplyIndex Integer32,
chSysPowerSupplyOperStatus INTEGER,
chSysPowerSupplyType INTEGER
}
chSysPowerSupplyIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The unique index of the power supply."
::= { chSysPowerSupplyEntry 1 }
chSysPowerSupplyOperStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1),
down(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of the power supply."
::= { chSysPowerSupplyEntry 2 }
chSysPowerSupplyType OBJECT-TYPE
SYNTAX INTEGER {
ac(1),
dc(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of the power supply."
::= { chSysPowerSupplyEntry 3 }
-- ## Fan Tray Table
chSysFanTrayTable OBJECT-TYPE
SYNTAX SEQUENCE OF ChSysFanTrayEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of fan tray resident in this chassis."
::= { chSysObjects 2 }
chSysFanTrayEntry OBJECT-TYPE
SYNTAX ChSysFanTrayEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A fan entry containing objects for a
particular fan tray."
INDEX { chSysFanTrayIndex }
::= { chSysFanTrayTable 1 }
ChSysFanTrayEntry ::=
SEQUENCE {
chSysFanTrayIndex Integer32,
chSysFanTrayOperStatus INTEGER
}
chSysFanTrayIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The unique index of the fan tray."
::= { chSysFanTrayEntry 1 }
chSysFanTrayOperStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1),
down(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of the fan tray."
::= { chSysFanTrayEntry 2 }
-- ## Card Table
-- The chassis is a multi-slots physical box.
-- In the chassis, there are physical slots available for
-- plug-in cards. There are two types of plug-in cards,
-- rpm cards and line cards.
-- The chassis also contains number of slots for
-- switch fabric modules.
-- The card table contains the card information of
-- each slot in the chassis. Each slot entry containing
-- the management information applicable to a particular
-- line card or route pocess module (rpm) card.
chSysCardTable OBJECT-TYPE
SYNTAX SEQUENCE OF ChSysCardEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of cards resident in the chassis.
The placement of line cards and rpm cards
in the E1200 chassis are as follows :
( physical slot numbers )
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
( Force10 card number )
0 1 2 3 4 5 6 0 1 7 8 9 10 11 12 13
| | | |
------------- -------------------
| | | |
line card | | line card
| |
| + ----> RPM card
+-------> RPM card
The placement of line cards and rpm cards
in the E600 chassis are as follows :
( physical slot numbers )
1 2 3 4 5 6 7 8 9
( Force10 card number )
0 1 2 3 4 5 6 0 1
| |
-------------
| | |
line card | |
| |
| + ----> RPM card
+-------> RPM card
The placement of line cards and rpm cards
in the E300 chassis are as follows :
( physical slot numbers )
1 2 3 4 5 6 7 8
( Force10 card number )
0 1 0 1 2 3 4 5
| |
-----------
| | |
| | line card
| |
| + ----> RPM card
+-------> RPM card
"
::= { chSysObjects 3 }
chSysCardEntry OBJECT-TYPE
SYNTAX ChSysCardEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of cards entries containing information
for line card or rpm card."
INDEX { chSysCardSlotIndex }
::= { chSysCardTable 1 }
ChSysCardEntry ::=
SEQUENCE {
chSysCardSlotIndex Integer32,
chSysCardType F10SystemCardType,
chSysCardNumber Integer32,
chSysCardSerialNumber DisplayString,
chSysCardVendorId DisplayString,
chSysCardMfgDate F10MfgDate,
chSysCardEcLevel Integer32,
chSysCardUpperTemp Gauge32,
chSysCardLowerTemp Gauge32,
chSysCardNumProcessors Integer32,
chSysCardNumPhyPorts Integer32,
chSysCardNumLgcPorts Integer32,
chSysCardUpTime TimeTicks,
chSysCardAdminStatus INTEGER,
chSysCardOperStatus F10CardOperStatus,
chSysCardFaultStatus INTEGER,
chSysCardLogStream OCTET STRING,
chSysCardCountryCode OCTET STRING,
chSysCardPartNum DisplayString,
chSysCardProductRev DisplayString,
chSysCardProdOrder DisplayString,
chSysCardParityPhantomError Gauge32,
chSysCardParityRecoverableError Gauge32,
chSysCardParityNonrecovrableError Gauge32
}
chSysCardSlotIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique index for each slot within
the chassis.
This value is the physical slot number
and the value is determined
by the chassis slot location where
the card is inserted. Valid entries
are 1 to the value of chNumSlots."
::= { chSysCardEntry 1 }
chSysCardType OBJECT-TYPE
SYNTAX F10SystemCardType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Type of card in this slot. The type
of cards are defined in F10SystemCardType."
::= { chSysCardEntry 2 }
chSysCardNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the card number assigned to the line
cards and the RPM cards in the chassis.
The line cards number are from 0 to 13 and the
RPM are from 0 to 1."
::= { chSysCardEntry 3 }
chSysCardSerialNumber OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The serial number of the card in this slot."
::= { chSysCardEntry 4 }
chSysCardVendorId OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The vendor id that manufactured the
card in this slot."
::= { chSysCardEntry 5 }
chSysCardMfgDate OBJECT-TYPE
SYNTAX F10MfgDate
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The date the card is manufactured."
::= { chSysCardEntry 6 }
chSysCardEcLevel OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The EC Level of the card."
::= { chSysCardEntry 7 }
chSysCardUpperTemp OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The temperature of the card. If
the temperature is too high,
alarm chAlarmCardTemperatureHigh
will be sent."
::= { chSysCardEntry 8 }
chSysCardLowerTemp OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This temperature field is
not used at the moment."
::= { chSysCardEntry 9 }
chSysCardNumProcessors OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Processors in the
card. The number of processors
are depended on the type of card
plugged into the slot."
::= { chSysCardEntry 10 }
chSysCardNumPhyPorts OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of physical ports
in each card. The card can have
one or more ports depending on
the type of cards.
If it is a logical card,
the value set to zero. "
::= { chSysCardEntry 11 }
chSysCardNumLgcPorts OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of logical ports
in each card. The card can have
one or more ports depending on
the type of cards.
If it is a physical card,
the value set to zero. "
::= { chSysCardEntry 12 }
chSysCardUpTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The SysUpTime for this slot.
This variable indicates the
time since the card
last reset."
::= { chSysCardEntry 13 }
chSysCardAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1),
down(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The admin status of the card.
The valid status are as followed:
'up' - card present and ready.
'down' - card is not ready."
::= { chSysCardEntry 14 }
chSysCardOperStatus OBJECT-TYPE
SYNTAX F10CardOperStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current operational state of the card."
::= { chSysCardEntry 15 }
chSysCardFaultStatus OBJECT-TYPE
SYNTAX INTEGER {
on(1),
off(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Fault status of the card.
The valid status are as followed:
'on' - the system fault light is on.
'off' - the system fault light is off."
DEFVAL {2}
::= { chSysCardEntry 16 }
chSysCardLogStream OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Reserved field. This fields should
return null."
::= { chSysCardEntry 17 }
chSysCardCountryCode OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (2))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The card manufacturer's country
code"
::= { chSysCardEntry 18 }
chSysCardPartNum OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The card part number"
::= { chSysCardEntry 19 }
chSysCardProductRev OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The card manufacturer's product
revision"
::= { chSysCardEntry 20 }
chSysCardProdOrder OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The F10 product order number"
::= { chSysCardEntry 21 }
chSysCardParityPhantomError OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counters indicating Transient Phantom
Parity Errors on this card.
Applied to Linecards only."
::= { chSysCardEntry 22 }
chSysCardParityRecoverableError OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counters indicating Transient Recoverable
Parity Errors on this card.
Applied to Linecards only."
::= { chSysCardEntry 23 }
chSysCardParityNonrecovrableError OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counters indicating Transient Non-Recoverable
Parity Errors on this card.
Applied to Linecards only."
::= { chSysCardEntry 24 }
-- ## Port Table
chSysPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF ChSysPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of ports in a slot."
::= { chSysObjects 4 }
chSysPortEntry OBJECT-TYPE
SYNTAX ChSysPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A port entry containing objects for a
particular slot."
INDEX { chSysPortSlotIndex,chSysPortIndex }
::= { chSysPortTable 1 }
ChSysPortEntry ::=
SEQUENCE {
chSysPortSlotIndex Integer32,
chSysPortIndex Integer32,
chSysPortType F10SystemPortType,
chSysPortAdminStatus INTEGER,
chSysPortOperStatus INTEGER,
chSysPortIfIndex Integer32,
chSysXfpRecvPower F10HundredthdB
}
chSysPortSlotIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique index for each slot within
the chassis. This value is determined by
the chassis slot number where the card
is inserted. Valid entries are 1
to the value of chNumSlots"
::= { chSysPortEntry 1 }
chSysPortIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique index for each slot within the card.
This value is determined by the variable
chSysSlotNumPorts. This value can also be
determined by the chSysCardType.
Valid entries are 1 to the value of
number of ports availabled"
::= { chSysPortEntry 2 }
chSysPortType OBJECT-TYPE
SYNTAX F10SystemPortType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of port in the card."
::= { chSysPortEntry 3 }
chSysPortAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1),
down(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The admin status of the card.
The port admin status is Up if
the user has configured it to be up
otherwise, the admin status is Down."
::= { chSysPortEntry 4 }
chSysPortOperStatus OBJECT-TYPE
SYNTAX INTEGER {
ready(1),
portDown(2),
portProblem(3),
cardProblem(4),
cardDown(5),
notPresent(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operational status provides further
condition of the card.
If the chSysPortAdminStatus is 'up', the
valid state is
'ready' - the card is present and
ready and the chSysPortAdminStatus
status is 'up'.
'portDown' - the port is down or not enabled.
'portProblem' - port hardware problems.
'cardProblem' - not used. Same as cardDown.
'cardDown' - the card is downed.
'notPresent' - the card is not present."
::= { chSysPortEntry 5 }
chSysPortIfIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index of ifIndex in the Interface Mib.
This index can link to the ifEntry to get
this interface/port information"
::= { chSysPortEntry 6 }
chSysXfpRecvPower OBJECT-TYPE
SYNTAX F10HundredthdB
UNITS "dB"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The power signal strength (dB) received for
interface on 10G linecard.
"
::= { chSysPortEntry 7 }
-- ## Air Filters Table
-- ## Removed from this MIB.
-- ## Processor Table
-- Each card has one or more processors.
-- The Processor table contains information on the