-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathFOUNDRY-SN-AGENT-MIB.txt
3512 lines (3061 loc) · 95.9 KB
/
FOUNDRY-SN-AGENT-MIB.txt
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
-- BigIron Router Switch Agent MIB Release 2.0.0
-- Revision 10/11/99
-- Copyright 1996 Foundry Networks, Inc.
-- All rights reserved.
-- This Foundry SNMP Management Information Base Specification
-- (Specification) embodies Foundry's confidential and
-- proprietary intellectual property. Foundry retains all
-- title and ownership in the Specification, including any
-- revisions.
-- This Specification is supplied "AS IS," and Foundry makes
-- no warranty, either express or implied, as to the use,
-- operation, condition, or performance of the Specification.
-- SECTION 1: Top Level Definitions
-- Imports
IMPORTS
TimeTicks, IpAddress, Counter, Gauge
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212
InterfaceIndex
FROM IF-MIB
snChassis, snAgentSys, snStack
FROM FOUNDRY-SN-ROOT-MIB;
-- textual conventions
DisplayString ::=
OCTET STRING
-- 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)
MacAddress ::=
OCTET STRING (SIZE(6))
-- 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.
-- Groups
snChasGen OBJECT IDENTIFIER ::= { snChassis 1 }
snChasPwr OBJECT IDENTIFIER ::= { snChassis 2 }
snChasFan OBJECT IDENTIFIER ::= { snChassis 3 }
-- SECTION 2: MIB Objects
-- General Chassis Information
snChasType OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The chassis type represents the type
of Foundry product being managed. "
::= { snChasGen 1 }
snChasSerNum OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
ACCESS read-only
STATUS mandatory
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 INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"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
------------ -------
12-31 reserved
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 INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"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))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The main board description string. (It is obsoleted for Chassis Product)"
::= { snChasGen 5 }
snChasMainPortTotal OBJECT-TYPE
SYNTAX INTEGER (1..24)
ACCESS read-only
STATUS mandatory
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))
ACCESS read-only
STATUS mandatory
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)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of ports for the expansion board.
(It is obsoleted for Chassis Product)"
::= { snChasGen 8 }
snChasStatusLeds OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
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 INTEGER
ACCESS read-only
STATUS mandatory
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 INTEGER
ACCESS read-only
STATUS mandatory
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) }
ACCESS read-write
STATUS mandatory
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
ACCESS read-only
STATUS mandatory
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
FI_MASTER_FIBER_2G 0x4
FI_MASTER_FIBER_4G 0x5
MASTER_COPPER_8G 0x6
FI_MASTER_FIBER_8G 0x7
MASTER_COPPER_12_2 0x9
MASTER_FIBER_2G 0x12
MASTER_FIBER_0G 0x14
FI_MASTER_COPPER_8G 0x1D
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_0G 0x26
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_M604E=9
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_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_LEVEL16=7,
PHY_LEVEL24=8
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 = 0x04
chassis15000 = 0x05
Turbo8 = 0x07 (stack2)
FastIron2 = 0x06 (stack1)"
::= { snChasGen 13 }
snChasExpBrdId OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
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 INTEGER
ACCESS read-only
STATUS mandatory
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) }
ACCESS read-write
STATUS mandatory
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))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"An administratively-assigned chassis identity number,
used by inventory control."
::= { snChasGen 17 }
snChasActualTemperature OBJECT-TYPE
SYNTAX INTEGER (-110..250)
ACCESS read-only
STATUS mandatory
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)
ACCESS read-write
STATUS mandatory
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)
ACCESS read-write
STATUS mandatory
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) }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Indicates whether the SNMP agent process is
permitted to generate temperature warning traps."
DEFVAL { enabled }
::= { snChasGen 21 }
-- Flash Card
snChasFlashCard OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
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 INTEGER
ACCESS read-only
STATUS mandatory
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 INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of slots of the chassis."
::= { snChasGen 24 }
snChasArchitectureType OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Architecture type."
::= { snChasGen 25 }
snChasProductType OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Product type."
::= { snChasGen 26 }
-- Power Supply Table
snChasPwrSupplyTable OBJECT-TYPE
SYNTAX SEQUENCE OF SnChasPwrSupplyEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table of each power supply information. Only installed
power supply appears in a table row."
::= { snChasPwr 1 }
snChasPwrSupplyEntry OBJECT-TYPE
SYNTAX SnChasPwrSupplyEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A row in the power supply table."
INDEX { snChasPwrSupplyIndex }
::= { snChasPwrSupplyTable 1 }
SnChasPwrSupplyEntry ::= SEQUENCE {
snChasPwrSupplyIndex
INTEGER,
snChasPwrSupplyDescription
DisplayString,
snChasPwrSupplyOperStatus
INTEGER
}
snChasPwrSupplyIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The index to power supply table."
::= { snChasPwrSupplyEntry 1 }
snChasPwrSupplyDescription OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The power supply description string."
::= { snChasPwrSupplyEntry 2 }
snChasPwrSupplyOperStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
normal(2),
failure(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The power supply operation status."
::= { snChasPwrSupplyEntry 3 }
-- Fan Table
snChasFanTable OBJECT-TYPE
SYNTAX SEQUENCE OF SnChasFanEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table of each fan information. Only installed
fan appears in a table row."
::= { snChasFan 1 }
snChasFanEntry OBJECT-TYPE
SYNTAX SnChasFanEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A row in the fan table."
INDEX { snChasFanIndex }
::= { snChasFanTable 1 }
SnChasFanEntry ::= SEQUENCE {
snChasFanIndex
INTEGER,
snChasFanDescription
DisplayString,
snChasFanOperStatus
INTEGER
}
snChasFanIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The index to fan table."
::= { snChasFanEntry 1 }
snChasFanDescription OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The fan description string."
::= { snChasFanEntry 2 }
snChasFanOperStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
normal(2),
failure(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The fan operation status."
::= { snChasFanEntry 3 }
-- Agent Groups
snAgentGbl OBJECT IDENTIFIER ::= { snAgentSys 1 }
snAgentBrd OBJECT IDENTIFIER ::= { snAgentSys 2 }
snAgentTrp OBJECT IDENTIFIER ::= { snAgentSys 3 }
snAgentBoot OBJECT IDENTIFIER ::= { snAgentSys 4 }
snAgCfgEos OBJECT IDENTIFIER ::= { snAgentSys 5 }
snAgentLog OBJECT IDENTIFIER ::= { snAgentSys 6 }
snAgentSysParaConfig OBJECT IDENTIFIER ::= { snAgentSys 7 }
snAgentConfigModule OBJECT IDENTIFIER ::= { snAgentSys 8 }
snAgentUser OBJECT IDENTIFIER ::= { snAgentSys 9 }
snAgentRedundant OBJECT IDENTIFIER ::= { snAgentSys 10 }
snAgentCpu OBJECT IDENTIFIER ::= { snAgentSys 11 }
-- SECTION 2: MIB Objects
-- Agent's Global Group
snAgReload OBJECT-TYPE
SYNTAX INTEGER {
other(1),
running(2),
reset(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Action object to reboot the agent.
The following values can only be read:
other(1).....agent in unknown or other state
running(2)...agent running
The following value can be written:
reset(3).....do a hard reset
The agent will return a
response before the action occurs."
::= { snAgentGbl 1 }
snAgEraseNVRAM OBJECT-TYPE
SYNTAX INTEGER {
normal(1),
error(2),
erase(3),
erasing(4)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Action object to erase NVRAM of the agent.
The following values can only be read:
normal(1)
error(2)... operation failed or bad flash
erasing(4)...agent is erasing NVRAM flash
The following value can be written:
erase(3).....do erase
The agent will return a response even before the erase is done.
And the read value will be erasing until erase is done.
And the erase request will be rejected until error or normal."
::= { snAgentGbl 2 }
snAgWriteNVRAM OBJECT-TYPE
SYNTAX INTEGER {
normal(1),
error(2),
write(3),
writing(4)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Action object to save all configuration info to
NVRAM of the agent.
The following values can only be read:
normal(1)
error(2)... operation failed or bad flash
writing(4)...agent is writing NVRAM flash
The following value can be written:
write(3).....do write
The agent will return a response even before the write is done.
And the read value will be writing until write is done.
And the write request will be rejected until error or normal."
::= { snAgentGbl 3 }
snAgConfigFromNVRAM OBJECT-TYPE
SYNTAX INTEGER {
normal(1),
error(2),
config(3),
configing(4)
}
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Action object to config the switch from NVRAM of the agent.
The following values can only be read:
normal(1)
error(2)... operation failed or bad flash
configing(4)...configing from NVRAM flash is in process.
The following value can be written:
config(3).....do config
The agent will return a response after config is done."
::= { snAgentGbl 4 }
-- image and config file down/up load
snAgTftpServerIp OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The tftp server address, this will be used for both download/upload
image file and config file."
::= { snAgentGbl 5 }
snAgImgFname OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Name of the image file including path currently associated
with the system. When the object is not used, the value is a
zero length string."
::= { snAgentGbl 6 }
snAgImgLoad OBJECT-TYPE
SYNTAX INTEGER {
normal(1),
flashPrepareReadFailure(2),
flashReadError(3),
flashPrepareWriteFailure(4),
flashWriteError(5),
tftpTimeoutError(6),
tftpOutOfBufferSpace(7),
tftpBusy(8),
tftpRemoteOtherErrors(9),
tftpRemoteNoFile(10),
tftpRemoteBadAccess(11),
tftpRemoteDiskFull(12),
tftpRemoteBadOperation(13),
tftpRemoteBadId(14),
tftpRemoteFileExists(15),
tftpRemoteNoUser(16),
operationError(17),
loading(18),
uploadMPPrimary(19),
downloadMPPrimary(20),
uploadMPSecondary(21),
downloadMPSecondary(22),
tftpWrongFileType(23),
downloadSPPrimary(24),
downloadSPSecondary(25)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Action object to down/up load a new image
to the agent. The following values:
Error values: from normal(1) to operationError(17) and tftpWrongFileType(23).
loading(18) .. operation is in process.
The following values are used for set :
uploadMPPrimary(19)..upload the Primary image from MP flash to tftp server.
downloadMPPrimary(20)..download the Primary image from tftp server to MP flash.
uploadMPSecondary(21)..upload the Secondary image from MP flash to tftp server.
downloadMPSecondary(22)..download the Secondary image from tftp server to MP flash.
downloadSPPrimary(24)..download the Primary image from tftp server to SP flash.
downloadSPSecondary(25)..download the Secondary image from tftp server to SP flash.
MP is the management processor, SP is the switch processor.
The image filename is defined in
snAgImgFname. The tftp server address is defined in snAgTftpServerIp.
Atomic set of snAgImgLoad, snAgImgFname and
snAgTftpServerIp is required to allow down/up load to happen.
And the write request will be rejected during loading until error
or normal."
::= { snAgentGbl 7 }
snAgCfgFname OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Name of the config file(s) including path currently associated
with the system. Some agents in special
situations may support a value which contains
multiple file names instead of a single file
name. Multiple names are specified as a list
of file names separated by semicolons (;).
When the object is not used, the value is a
zero length string."
::= { snAgentGbl 8 }
snAgCfgLoad OBJECT-TYPE
SYNTAX INTEGER {
normal(1),
flashPrepareReadFailure(2),
flashReadError(3),
flashPrepareWriteFailure(4),
flashWriteError(5),
tftpTimeoutError(6),
tftpOutOfBufferSpace(7),
tftpBusy(8),
tftpRemoteOtherErrors(9),
tftpRemoteNoFile(10),
tftpRemoteBadAccess(11),
tftpRemoteDiskFull(12),
tftpRemoteBadOperation(13),
tftpRemoteBadId(14),
tftpRemoteFileExists(15),
tftpRemoteNoUser(16),
operationError(17),
loading(18),
uploadFromFlashToServer(20),
downloadToFlashFromServer(21),
uploadFromDramToServer(22),
downloadToDramFromServer(23),
uploadFromFlashToNMS(24),
downloadToFlashFromNMS(25),
uploadFromDramToNMS(26),
downloadToDramFromNMS(27),
operationDoneWithNMS(28),
tftpWrongFileType(29),
downloadToDramFromServerOverwrite(30)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Action object to down/up load a config image
to the agent. The following values can be
read :
Error values: from normal(1) to operationError(17) and tftpWrongFileType(29).
loading(18) .. operation is in process.
The following value can be used to set:
uploadFromFlashToServer(20)..upload the config from flash
to tftp server.
downloadToFlashFromServer(21)..download the config to flash
from tftp server.
uploadFromDramToServer(22)..upload the config from DRAM
to tftp server.
downloadToDramFromServer(23)..download the config to DRAM
from tftp server.
downloadToDramFromServerOverwrite(30)..download the config to DRAM
from tftp server, clear the running-config,
and overwrite with the new config.
The following value can be used to set:
uploadFromFlashToNMS(24)..upload the config from flash to NMS.
downloadToFlashFromNMS(25)..download the config to flash from NMS.
uploadFromDramToNMS(26)..upload the config from DRAM to NMS.
downloadToDramFromNMS(27)..download the config to DRAM from NMS.
The config filename is defined in
snAgCfgFname. The tftp server address is defined in snAgTftpServerIp.
Atomic set of snAgCfgLoad, snAgCfgFname and snAgTftpServerIp is
required to allow down/up load to happen. And the write request
will be rejected during loading until error or normal.
For those NMS commands from (24) to (27), The snAgCfgEosTable MIB must
be sent along in one PDU. A seperate write memory cli or set
snAgWriteNVRAM is required to save the config to NVRAM."
::= { snAgentGbl 9 }
-- default gateway ip address
snAgDefGwayIp OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The default gateway (router) address."
::= { snAgentGbl 10 }
-- image version
snAgImgVer OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..32))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The version of the running software in the form
'major.minor.maintenance[letters]'."
::= { snAgentGbl 11 }
snAgFlashImgVer OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..32))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The version of the software image saved in local
storage such as flash memory in the form
'major.minor.maintenance[letters]'. If not
known or not available, then the value is
a zero length string."
::= { snAgentGbl 12 }
snAgGblIfIpAddr OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The interface ip address."
::= { snAgentGbl 13 }