forked from taishin/vendor_mibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFOUNDRY-SN-AGENT.mib
executable file
·6337 lines (5632 loc) · 170 KB
/
FOUNDRY-SN-AGENT.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
FOUNDRY-SN-AGENT-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,TimeTicks, IpAddress, Counter32, Gauge32,Unsigned32,Integer32
FROM SNMPv2-SMI
TEXTUAL-CONVENTION, RowStatus, TruthValue, TimeStamp
FROM SNMPv2-TC
InterfaceIndex
FROM IF-MIB
InetAddressType, InetAddress
FROM INET-ADDRESS-MIB -- [RFC 4001]
CounterBasedGauge64
FROM HCNUM-TC
snChassis, snAgentSys, snStack
FROM FOUNDRY-SN-ROOT-MIB;
snAgent MODULE-IDENTITY
LAST-UPDATED "201006020000Z" -- 04 June 2010
ORGANIZATION "Brocade Communications Systems, Inc."
CONTACT-INFO
"Technical Support Center
130 Holger Way,
San Jose, CA 95134
Email: ipsupport@brocade.com
Phone: 1-800-752-8061
URL: www.brocade.com"
DESCRIPTION
"Copyright 1996-2010 Brocade Communications Systems, Inc.
All rights reserved.
This Brocade Communications Systems SNMP Management Information Base Specification
embodies Brocade Communications Systems' confidential and proprietary
intellectual property. Brocade Communications Systems retains all
title and ownership in the Specification, including any revisions.
This Specification is supplied AS IS, and Brocade Communications Systems makes
no warranty, either express or implied, as to the use,
operation, condition, or performance of the specification, and any unintended
consequence it may on the user environment."
REVISION "201006020000Z" -- 04 June 2010
DESCRIPTION
"Changed the ORGANIZATION, CONTACT-INFO and DESCRIPTION fields."
REVISION "200909300000Z" -- September 30, 2009
DESCRIPTION
"convert from SMIv1 to SMIv2"
::= { iso(1) org(3) dod(6) internet(1) private(4) enterprises(1) 1991 4}
-- textual conventions
MacAddress ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"
This data type is used to model media addresses. For many
types of media, this will be in a binary representation.
For example, an ethernet address would be represented as
a string of 6 octets.
"
SYNTAX OCTET STRING (SIZE(6))
DisplayString ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This data type is used to model textual information taken
from the NVT ASCII character set. By convention, objects
with this syntax are declared as having
SIZE (0..255)"
SYNTAX OCTET STRING
BrcdImageType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Image types supported by XMR/MLX and CES/CER"
SYNTAX INTEGER {
unknown(1),
managementModuleBoot(2),
managementModuleMonitor(3),
managementModuleApplication(4),
interfaceModuleBoot(5),
interfaceModuleMonitor(6),
interfaceModuleApplication(7),
mgmtAndIntfModuleCombinedApp(8),
fpgaMBridge(9),
fpgaMBridge32(10),
fpgaSBridge(11),
fpgaHBridge(12),
fpgaBundled(13),
fpgaPbifOc(14),
fpgaStatsOc(15),
fpgaXppOc(16),
fpgaPbifMrj(17),
fpgaStatsMrj(18),
fpgaXppMrj(19),
fpgaPbifSp2(20),
fpgaXgmacSp2(21),
fpgaXppSp2(22),
fpgaPbif8x10(23),
fpgaXpp8x10(24),
fpgaXpp2x100(25),
fpgaPbifMetro(26)
}
-- Groups
snChasGen OBJECT IDENTIFIER ::= { snChassis 1 }
snChasPwr OBJECT IDENTIFIER ::= { snChassis 2 }
snChasFan OBJECT IDENTIFIER ::= { snChassis 3 }
snChasUnit OBJECT IDENTIFIER ::= { snChassis 4 }
-- SECTION 2: MIB Objects
-- General Chassis Information
snChasType OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The chassis type represents the type
of Foundry product being managed. "
::= { snChasGen 1 }
snChasSerNum OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The serial number of the chassis. If the
serial number is unknown or unavailable then
the value should be a zero length string."
::= { snChasGen 2 }
-- Power Supply Status
snChasPwrSupplyStatus OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"This object is being deprecated, please use snChasPwrSupplyTable instead.
A bit array that contains the value of the
Chassis Power Supplies. This is a packed bit string;
the 2 power supplies status are encoded into 4 bits
(a nibble).
There are multiple power supplies per chassis in this release.
The following shows the meaning of each bit:
(bit 0 is the least significant bit).
bit position meaning
------------ -------
20-31 reserved
19 Power Supply 8 DC (0=bad, 1=good).
18 Power Supply 7 DC (0=bad, 1=good).
17 Power Supply 8 present status (0=present, 1=not-present).
16 Power Supply 7 present status (0=present, 1=not-present).
15 Power Supply 6 DC (0=bad, 1=good).
14 Power Supply 5 DC (0=bad, 1=good).
13 Power Supply 6 present status (0=present, 1=not-present).
12 Power Supply 5 present status (0=present, 1=not-present).
11 Power Supply 4 DC (0=bad, 1=good).
10 Power Supply 3 DC (0=bad, 1=good).
9 Power Supply 4 present status (0=present, 1=not-present).
8 Power Supply 3 present status (0=present, 1=not-present).
4-7 reserved
3 Power Supply 2 DC (0=bad, 1=good).
2 Power Supply 1 DC (0=bad, 1=good).
1 Power Supply 2 present status (0=present, 1=not-present).
0 Power Supply 1 present status (0=present, 1=not-present)."
::= { snChasGen 3 }
-- Fan Status
snChasFanStatus OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"This object is being deprecated, please use snChasFanTable instead.
A bit array that contains the value of the
fan status. This is a packed bit string. The
status of each fan is encoded into one bit.
bit value meaning
--------- -------
0 fan failure.
1 fan good.
There are two fans per VLAN Switch chassis in this release.
The following shows the meaning of each bit:
(bit 0 is the least significant bit).
bit position meaning
------------ -------
6-31 reserved
5 fan6 status
4 fan5 status
3 fan4 status
2 fan3 status
1 fan2 status
0 fan1 status"
::= { snChasGen 4 }
snChasMainBrdDescription OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The main board description string. (It is obsoleted for Chassis Product)"
::= { snChasGen 5 }
snChasMainPortTotal OBJECT-TYPE
SYNTAX INTEGER (1..24)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of ports for the main board. (It is obsoleted for Chassis Product)"
::= { snChasGen 6 }
snChasExpBrdDescription OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The expansion board description string. Expansion
board are those boards attaching on the main board.
(It is obsoleted for Chassis Product)"
::= { snChasGen 7 }
snChasExpPortTotal OBJECT-TYPE
SYNTAX INTEGER (1..24)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of ports for the expansion board.
(It is obsoleted for Chassis Product)"
::= { snChasGen 8 }
snChasStatusLeds OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A bit array that contains the value of the
front panel status LEDs. This is a bit-map;
each LED is encoded into 1 bit for each switch
port. The maximum number of ports in one chassis
is 24 that means 24 Ports Status LEDs. The expansion port
number always begins from the last main port number.
The following shows the meaning of each bit for each
switch port:
bit value meaning
-------- ---------
0 off (Link off)
1 on (Link on)
The bitmap of LEDs are as following:
(Port1) (Port4) (Port8)
Bit (Bit0) (Bit3) (Bit7)
Byte 1: LED1 LED2 LED3 LED4 LED5 LED6 LED7 LED8
Byte 2: LED9 LED10 LED11 LED12 LED13 LED14 LED15 LED16
Byte 3: LED17 LED18 LED19 LED20 LED21 LED22 LED23 LED24
--------"
::= { snChasGen 9 }
snChasTrafficLeds OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A bit array that contains the value of the
front panel traffic LEDs. This is a packed bit string;
each LED is encoded into 1 bit for each switch
port. The maximum number of ports in one chassis
is 24 that means 24 Ports Traffic LEDs. The expansion port
number always begins from the last main port number.
The following shows the meaning of each bit for each
switch port:
bit value meaning
-------- ---------
0 off (no traffic)
1 on (traffic)
The bitmap of LEDs are as following:
(Port1) (Port4) (Port8)
Bit (Bit0) (Bit3) (Bit7)
Byte 1: LED1 LED2 LED3 LED4 LED5 LED6 LED7 LED8
Byte 2: LED9 LED10 LED11 LED12 LED13 LED14 LED15 LED16
Byte 3: LED17 LED18 LED19 LED20 LED21 LED22 LED23 LED24
--------"
::= { snChasGen 10 }
snChasMediaLeds OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A bit array that contains the value of the
front panel media LEDs. This is a packed bit string;
each LED is encoded into 1 bit for each switch port.
The maximum number of ports in one chassis is 24
that means 24 Ports Media LEDs. The expansion port
number always begins from the last main port number.
The following shows the meaning of each bit for each
switch port:
bit value meaning
--------- -------
0 half duplex
1 full duplex
The bitmap of LEDs are as following:
(Port1) (Port4) (Port8)
Bit (Bit0) (Bit3) (Bit7)
Byte 1: LED1 LED2 LED3 LED4 LED5 LED6 LED7 LED8
Byte 2: LED9 LED10 LED11 LED12 LED13 LED14 LED15 LED16
Byte 3: LED17 LED18 LED19 LED20 LED21 LED22 LED23 LED24
---------"
::= { snChasGen 11 }
snChasEnablePwrSupplyTrap OBJECT-TYPE
SYNTAX INTEGER { disabled(0), enabled(1) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether the SNMP agent process is
permitted to generate power supply failure traps."
DEFVAL { enabled }
::= { snChasGen 12 }
snChasMainBrdId OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The main board identifier, which can uniquely identify a board
type. It is an encoded octet string with the following meaning:
octet 0 - octet string format version, which identifies the
format of this string.
If format version octet has the value 1, the octets after the
version octet have the following meaning:
octet 1 - product type, FIWG=0x57, FIBB=0x42, FIMLS=0x4D
NI=0x4E, TI=0x54, TIRT=0x52
octet 2 - board type, POWERPC=1, ALPHA=2
The length of the octet string is 27.
If format version octet has the value 2, the octets after the
version octet have the following meaning:
octet 1 - product type:
BI_WG 0x57
BI_BB 0x42
BI_NI 0x4E
NI_M4 0x4D
BI_SLB 0x53
octet 2 - module type:
MASTER_FIBER_8G 0x0
MASTER_FIBER_4G 0x1
MASTER_COPPER_16 0x2
SLAVE_FIBER_4G 0x3
FI_MASTER_FIBER_2G 0x4
FI_MASTER_FIBER_4G 0x5
MASTER_COPPER_8G 0x6
FI_MASTER_FIBER_8G 0x7
SLAVE_FIBER_8G 0x8
MASTER_COPPER_12_2 0x9
SLAVE_COPPER_24 0xA
FI_SLAVE_COPPER_24 0xB
SLAVE_100FX_8 0xD
SLAVE_100FX_16 0xC
SLAVE_COPPER_8G 0xE
SLAVE_COPPER_16_2 0xF
STACK_FIBER_8G 0x10
STACK_COPPER_8G 0x11
MASTER_FIBER_2G 0x12
SLAVE_100FX_24 0x13
MASTER_FIBER_0G 0x14
POS_622M 0x15
POS_155M 0x16
SLAVE_FIBER_2G 0x17
SLAVE_COPPER_2G 0x18
FI_SLAVE_FIBER_2G 0x19
FI_SLAVE_FIBER_4G 0x1A
FI_SLAVE_FIBER_8G 0x1B
FI_SLAVE_COPPER_8G 0x1C
FI_MASTER_COPPER_8G 0x1D
POS_155M2P 0x1E
FI_MASTER_COPPER_4G 0x1F
FI_MASTER_COPPER_2G 0x20
MASTER_COPPER_4G 0x21
MASTER_COPPER_2G 0x22
MASTER_M4_8G 0x23
MASTER_M4_4G 0x24
MASTER_M4_2G 0x25
MASTER_M4_0G 0x26
MASTER_M5_0G 0x27
POS_2488M 0x28
SLAVE_M5_0G 0x29
POS_N2488M 0x2A
STACK_IPC_48_2 0x2B
SLAVE_NPA_FIBER_4G 0x2C
ATM_2PORT 0x2D
ATM_4PORT 0x2E
SLAVE_FIBER_10G 0x2F
STACK_FES_48_2 0x30
STACK_FES_24_2 0x31
STACK_FES_96_4 0x32
STACK_FES_12G 0x33
STACK_FESX_24G 0x34
STACK_FESX_24_2_G 0x35
STACK_FESX_24_1_G 0x36
STACK_FESX_48G 0x37
STACK_FESX_48_2_G 0x38
STACK_FESX_48_1_G 0x39
SUPERX_FI_MGMT 0x40
SUPERX_FI_2P10G 0x41
SUPERX_FI_24GC 0x42
SUPERX_FI_24GF 0x43
SUPERX_FI_2P10G_WAN 0x44
SUPERX_FI_MGMT_II 0x4a
SLAVE_JC_48E 0xC3
SLAVE_JC_48T 0xC4
MASTER_JC_M4_8G 0xC5
SLAVE_JC_8G 0xC6
SLAVE_JC_B16GF 0xC8
MASTER_JC_B2404 0xC9
SLAVE_JC_B16GC 0xCA
The length of the octet string is 28.
Both format version 1 and 2:
octet 3 - processor type, PVR_M603=3, PVR_M604=4, PVR_M603E=6,
PVR_M603EV=7, PVR_M750=8, PVR_M604E=9, PVR_M8245=81
octet 4 to
octet 5 - processor speed in MHz
octet 6 - MAC type:
MAC_NONE=0
MAC_SEEQ_10_100=1,
MAC_DEC_10_100=2,
MAC_3COM_10_100=3,
MAC_X10GMAC_10000=4,
MAC_SEEQ_1000=5,
MAC_GMAC_1000=6,
MAC_VLSI_1000=7
octet 7 - PHY type, PHY_NONE=0, PHY_QSI=1, PHY_BROADCOM=2,
PHY_ICS=3, PHY_NATIONAL=4, PHY_LEVEL1=6,
PHY_BROADCOM_10_100=7, PHY_LEVEL24=8,
PHY_BROADCOM_10000=9 (for 10G),
PHY_3COM_10_100=9 (for others)
octet 8 - port type, COPPER=0, FIBER=1
octet 9 - fiber port type, NONFIBER=0, SX_FIBER=1,
LX_FIBER=2, LHX_FIBER=3, LX_SX_FIBER=4,
LHB_FIBER=5
octet 10 to
octet 13 - DRAM size in KBytes
octet 14 to
octet 17 - boot flash size in KBytes
octet 18 to
octet 21 - code flash size in KBytes
octet 22 to
octet 27 - serial number.
Format version 1 only:
octet 28 - chassis backplane type.
chassis4000 = 0x00
chassis8000 = 0x02
chassis15000 = 0x01
chassisFISX = 0x04
Turbo8 = 0x07 (stack2)
FastIron2 = 0x06 (stack1)"
::= { snChasGen 13 }
snChasExpBrdId OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The expansion board identifier. Expansion board are those
boards attaching on the main board. It is an encoded octet
string with the following meaning:
octet 0 - octet string format version, which identifies
the format of this string.
If format version octet has the value 1, the octets after
the version octet have the following meaning:
octet 1 - expansion board type, HUNDRED_MEG_1PORT=1,
HUNDRED_MEG_2PORT=2, HUNDRED_MEG_1PORT_COPPER=3,
HUNDRED_MEG_2PORT_COPPER=4, HUNDRED_MEG_2PORT_LX=5,
GIGA_1PORT=8, GIGA_2PORT=9
octet 2 - fiber port type, NONFIBER=0, SX_FIBER=1,
LX_FIBER=2, LHX_FIBER=3, LX_SX_FIBER=4
(It is obsoleted for Chassis Product)"
::= { snChasGen 14 }
snChasSpeedLeds OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A bit array that contains the value of the
front panel media LEDs. This is a packed bit string;
each LED is encoded into 1 bit for each switch port.
The maximum number of ports in one chassis is 24
that means 24 Ports Speed LEDs. The expansion port
number always begins from the last main port number.
The following shows the meaning of each bit for each
switch port:
bit value meaning
--------- -------
0 10 MBit
1 100 MBit
The bitmap of LEDs are as following:
(Port1) (Port4) (Port8)
Bit (Bit0) (Bit3) (Bit7)
Byte 1: LED1 LED2 LED3 LED4 LED5 LED6 LED7 LED8
Byte 2: LED9 LED10 LED11 LED12 LED13 LED14 LED15 LED16
Byte 3: LED17 LED18 LED19 LED20 LED21 LED22 LED23 LED24
---------"
::= { snChasGen 15 }
snChasEnableFanTrap OBJECT-TYPE
SYNTAX INTEGER { disabled(0), enabled(1) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether the SNMP agent process is
permitted to generate fan failure traps."
DEFVAL { enabled }
::= { snChasGen 16 }
snChasIdNumber OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"An administratively-assigned chassis identity number,
used by inventory control."
::= { snChasGen 17 }
snChasActualTemperature OBJECT-TYPE
SYNTAX INTEGER (-110..250)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Temperature of the chassis. Each unit is 0.5 degrees Celcius.
Only management module built with temperature sensor hardware
is applicable. For those non-applicable management module, it
returns no-such-name."
::= { snChasGen 18 }
snChasWarningTemperature OBJECT-TYPE
SYNTAX INTEGER (0..250)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Actual temperature higher than this threshold value will trigger
the switch to send a temperature warning trap. Each unit is 0.5
degrees Celcius. Only management module built with temperature
sensor hardware is applicable. For those non-applicable management
module, it returns no-such-name."
::= { snChasGen 19 }
snChasShutdownTemperature OBJECT-TYPE
SYNTAX INTEGER (0..250)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Actual temperature higher than this threshold value will shutdown
a partial of the switch hardware to cool down the system. Each unit
is 0.5 degrees Celcius. Only management module built with temperature
sensor hardware is applicable. For those non-applicable management
module, it returns no-such-name."
::= { snChasGen 20 }
snChasEnableTempWarnTrap OBJECT-TYPE
SYNTAX INTEGER { disabled(0), enabled(1) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether the SNMP agent process is
permitted to generate temperature warning traps."
DEFVAL { enabled }
::= { snChasGen 21 }
-- Flash Card
snChasFlashCard OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A bit array that contains the value of the
flash card status. This is a packed bit string. The
status of each flash card is encoded into one bit.
bit value meaning
--------- -------
0 flash card absent.
1 flash card present.
There are up to two flash cards in this release.
This object is valid if M4 management module is present.
The following shows the meaning of each bit:
(bit 0 is the least significant bit).
bit position meaning
------------ -------
2-31 reserved
1 flash card 2 status
0 flash card 1 status"
::= { snChasGen 22 }
snChasFlashCardLeds OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A bit array that contains the value of the
flash card LEDs. This is a packed bit string;
each LED is encoded into 1 bit for each flash card.
bit value meaning
-------- ---------
0 off
1 on
"
::= { snChasGen 23 }
snChasNumSlots OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of slots of the chassis."
::= { snChasGen 24 }
snChasArchitectureType OBJECT-TYPE
SYNTAX INTEGER {
stackable(1), -- old stackable
bigIron(2),
terathon(3), -- MG-8, NI-40G, IMR
fifthGen(4) -- XMR, MLX, RX
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Architecture type."
::= { snChasGen 25 }
snChasProductType OBJECT-TYPE
SYNTAX INTEGER {
invalid(0),
mg8(1),
ni40G(2),
imr(3),
biRx800(4),
niXmr16000(5),
biRx400(6),
niXmr8000(7),
biRx200(8),
niXmr4000(9),
niMlx16(10),
niMlx8(11),
niMlx4(12),
niMlx32(13),
niXmr32000(14),
biRx32(15),
niCES2000Series(16),
niCER2000Series(17),
brMlxE4(18),
brMlxE8(19),
brMlxE16(20),
brMlxE32(21),
biNI2(50),
biBB(66),
biM4(77),
biNI(78),
biSLB(83),
biWG(87)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Product type."
::= { snChasGen 26 }
snChasSystemMode OBJECT-TYPE
SYNTAX INTEGER {
xmr(1),
mlx(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"System Mode. This object is only applicable to XMR/MLX/MLXe products.
For example, if snChasProductType is niMlx4/niMlx8/niMlx16/niMlx32 then the
this object returns mlx(2). If snChasProductType is niXmr4000/niXmr8000
niXmr160000/niXmr32000 this object returns xmr(1). If snChasProductType
is brMlxE4/brMlxE8/brMlxE16/brMlxE32 this object
returns either xmr(1) or mlx(2) depending on the mode of the system.
This object is not supported for the other products."
::= { snChasGen 27 }
snChasFactoryPartNumber OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Factory Part number assigned by the manufacturer."
::= { snChasGen 28 }
snChasFactorySerialNumber OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Factory serial number assigned by the manufacturer."
::= { snChasGen 29 }
-- Power Supply Table
snChasPwrSupplyTable OBJECT-TYPE
SYNTAX SEQUENCE OF SnChasPwrSupplyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of each power supply information. Only installed
power supply appears in a table row."
::= { snChasPwr 1 }
snChasPwrSupplyEntry OBJECT-TYPE
SYNTAX SnChasPwrSupplyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row in the power supply table."
INDEX { snChasPwrSupplyIndex }
::= { snChasPwrSupplyTable 1 }
SnChasPwrSupplyEntry ::= SEQUENCE {
snChasPwrSupplyIndex
Integer32,
snChasPwrSupplyDescription
DisplayString,
snChasPwrSupplyOperStatus
INTEGER
}
snChasPwrSupplyIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index to power supply table."
::= { snChasPwrSupplyEntry 1 }
snChasPwrSupplyDescription OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The power supply description string."
::= { snChasPwrSupplyEntry 2 }
snChasPwrSupplyOperStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
normal(2),
failure(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The power supply operation status."
::= { snChasPwrSupplyEntry 3 }
-- Stacking Power Supply Table
snChasPwrSupply2Table OBJECT-TYPE
SYNTAX SEQUENCE OF SnChasPwrSupply2Entry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of each power supply information for each unit. Only installed
power supply appears in a table row."
::= { snChasPwr 2 }
snChasPwrSupply2Entry OBJECT-TYPE
SYNTAX SnChasPwrSupply2Entry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row in the power supply table."
INDEX { snChasPwrSupply2Unit, snChasPwrSupply2Index }
::= { snChasPwrSupply2Table 1 }
SnChasPwrSupply2Entry ::= SEQUENCE {
snChasPwrSupply2Unit
Integer32,
snChasPwrSupply2Index
Integer32 ,
snChasPwrSupply2Description
DisplayString,
snChasPwrSupply2OperStatus
INTEGER
}
snChasPwrSupply2Unit OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index to power supply table."
::= { snChasPwrSupply2Entry 1 }
snChasPwrSupply2Index OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index to power supply table."
::= { snChasPwrSupply2Entry 2}
snChasPwrSupply2Description OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The power supply description string."
::= { snChasPwrSupply2Entry 3 }
snChasPwrSupply2OperStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
normal(2),
failure(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The power supply operation status."
::= { snChasPwrSupply2Entry 4 }
-- Fan Table
snChasFanTable OBJECT-TYPE
SYNTAX SEQUENCE OF SnChasFanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of each fan information. Only installed
fan appears in a table row."
::= { snChasFan 1 }
snChasFanEntry OBJECT-TYPE
SYNTAX SnChasFanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row in the fan table."
INDEX { snChasFanIndex }
::= { snChasFanTable 1 }
SnChasFanEntry ::= SEQUENCE {
snChasFanIndex
Integer32,
snChasFanDescription
DisplayString,
snChasFanOperStatus
INTEGER
}
snChasFanIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index to fan table."
::= { snChasFanEntry 1 }
snChasFanDescription OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The fan description string."
::= { snChasFanEntry 2 }
snChasFanOperStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
normal(2),
failure(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The fan operation status."
::= { snChasFanEntry 3 }
-- Stacking Fan Table
snChasFan2Table OBJECT-TYPE
SYNTAX SEQUENCE OF SnChasFan2Entry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of each fan information for each unit. Only installed
fan appears in a table row."
::= { snChasFan 2 }
snChasFan2Entry OBJECT-TYPE
SYNTAX SnChasFan2Entry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row in the fan table."
INDEX { snChasFan2Unit, snChasFan2Index }
::= { snChasFan2Table 1 }
SnChasFan2Entry ::= SEQUENCE {
snChasFan2Unit
Integer32,
snChasFan2Index
Integer32,
snChasFan2Description
DisplayString,
snChasFan2OperStatus
INTEGER
}
snChasFan2Unit OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index to fan table."
::= { snChasFan2Entry 1 }
snChasFan2Index OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index to fan table."
::= { snChasFan2Entry 2 }
snChasFan2Description OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The fan description string."
::= { snChasFan2Entry 3 }