-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathS5-AGENT-MIB
2895 lines (2547 loc) · 99.5 KB
/
S5-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
S5-AGENT-MIB DEFINITIONS ::= BEGIN
IMPORTS
IpAddress, TimeTicks, OBJECT-TYPE, Integer32, Counter32, MODULE-IDENTITY
FROM SNMPv2-SMI
DisplayString, DateAndTime, TruthValue, MacAddress
FROM SNMPv2-TC
s5Agent
FROM S5-ROOT-MIB
TimeIntervalSec, IpxAddress
FROM S5-TCS-MIB
InterfaceIndex
FROM IF-MIB
PortList, VlanId
FROM Q-BRIDGE-MIB;
s5AgentMib MODULE-IDENTITY
LAST-UPDATED "200705110000Z"
ORGANIZATION "Nortel Networks"
CONTACT-INFO "Nortel Networks"
DESCRIPTION
"S5000 Agent MIB
Copyright 1995 - 2007 Nortel Networks, Inc.
All rights reserved.
This Bay Networks SNMP Management Information Base Specification
(Specification) embodies Bay Networks' confidential and
proprietary intellectual property. Bay Networks retains all
title and ownership in the Specification, including any
revisions.
This Specification is supplied 'AS IS,' and Bay Networks makes
no warranty, either express or implied, as to the use,
operation, condition, or performance of the Specification."
REVISION "200705110000Z" -- 11 May 2007
DESCRIPTION "Version 184: Add objects for timezone acronyms."
REVISION "200705030000Z" -- 03 May 2007
DESCRIPTION "Version 183: Fix typos in s5AgAsciiConfigScriptTable."
REVISION "200703050000Z" -- 05 Mar 2007
DESCRIPTION "Version 182: Expanded range of s5AgAsciiConfigScriptSource."
REVISION "200702270000Z" -- 27 Feb 2007
DESCRIPTION "Version 181: Added s5AgAsciiConfigScriptLastStatusChange."
REVISION "200702160000Z" -- 16 Feb 2007
DESCRIPTION "Version 180: Added s5AgentAsciiConfig group."
REVISION "200701080000Z" -- 08 Jan 2007
DESCRIPTION "Version 179: Added s5AgDaylightSavingsEndMinutes,
s5AgDaylightSavingsEndYear,
s5AgDaylightSavingsStartMinutes,
s5AgDaylightSavingsStartYear,
s5AgDaylightSavingsRecurring.
Also added enumerations for DHCP to
s5AgInfoBootMode."
REVISION "200611070000Z" -- 07 Nov 2006
DESCRIPTION "Version 178: Added s5AgSysVlanConfigControl."
REVISION "200609190000Z" -- 19 Sep 2006
DESCRIPTION "Version 177: Added objects for flushing MAC address table."
REVISION "200608280000Z" -- 28 Aug 2006
DESCRIPTION "Version 176: Added s5AgSysAutosaveToNvramEnabled."
REVISION "200608140000Z" -- 14 Aug 2006
DESCRIPTION "Version 175: Added object for global flow control."
REVISION "200608070000Z" -- 07 Aug 2006
DESCRIPTION "Version 174: Clarified descriptions."
REVISION "200604050000Z" -- 05 Apr 2006
DESCRIPTION "Version 173: Added copyConfigToNvram enumeration to s5AgInfoFileAction."
REVISION "200603220000Z" -- 07 Mar 2006
DESCRIPTION "Version 172: Add s5AgSysSpanningTreeAdminCompatibility and
s5AgSysSpanningTreeOperCompatibility."
REVISION "200603070000Z" -- 07 Mar 2006
DESCRIPTION "Version 171: Add support for upload/downloading license files."
REVISION "200602140000Z" -- 14 Feb 2006
DESCRIPTION "Version 170: Allow more lines in banner table."
REVISION "200510110000Z" -- 11 Oct 2005
DESCRIPTION "Version 169: Added s5AgSysSpanningTreePortMode."
REVISION "200509300000Z" -- 09 Sep 2005
DESCRIPTION "Version 168: Add default(3) to s5AgSysAutoUnitReplacementEnabled."
REVISION "200505130000Z" -- 13 May 2005
DESCRIPTION "Version 167: Expand range of s5AgSysUsbTargetUnit."
REVISION "200505110000Z" -- 11 May 2005
DESCRIPTION "Version 166: Fix support for USB flash dongles."
REVISION "200505040000Z" -- 04 May 2005
DESCRIPTION "Version 165: Fleshed out support for USB flash dongles."
REVISION "200504220000Z" -- 22 Apr 2005
DESCRIPTION "Version 164: Added s5AgSysSpanningTreePathCostCalculationMode."
REVISION "200503240000Z" -- 24 Mar 2005
DESCRIPTION "Version 163: Added dnldImgFromUsb, upldImgToUsb,
dnldFwFromUsb, upldFwToUsb."
REVISION "200503220000Z" -- 22 Mar 2005
DESCRIPTION "Version 162: Added dnldImgNoReset and dnldFwNoReset."
REVISION "200412090000Z" -- 09 Dec 2004
DESCRIPTION "Version 161: Added s5AgSysAsciiConfigManualUpload."
REVISION "200411090000Z" -- 09 Nov 2004
DESCRIPTION "Version 160: Added s5AgentBootConfig group."
REVISION "200409300000Z" -- 30 Sept 2004
DESCRIPTION "Version 159: Added new SNTP objects:
s5AgSntpTimeZone
s5AgSntpSyncRetryInterval
Added Daylight Savings group."
REVISION "200406180000Z" -- 18 June 2004
DESCRIPTION "Version 158: Added 'disabled(3)' option to s5AgBannerControl"
REVISION "200305290000Z" -- 29 May 2003
DESCRIPTION "v153: Conversion to SMIv2, Added s5AgentSsl group"
::= { s5Agent 8 }
-- Agent Groups
s5AgentHw OBJECT IDENTIFIER ::= { s5Agent 1 }
s5AgentInfo OBJECT IDENTIFIER ::= { s5Agent 2 }
s5AgentMgmt OBJECT IDENTIFIER ::= { s5Agent 3 }
s5AgentSystem OBJECT IDENTIFIER ::= { s5Agent 4 }
s5AgentBanner OBJECT IDENTIFIER ::= { s5Agent 5 }
s5AgentSntp OBJECT IDENTIFIER ::= { s5Agent 6 }
s5AgentSsl OBJECT IDENTIFIER ::= { s5Agent 7 }
-- PLACEHOLDER for MODULE-IDENTITY
-- s5AgentMib OBJECT IDENTIFIER ::= { s5Agent 8 }
s5AgentDaylightSavings OBJECT IDENTIFIER ::= { s5Agent 9 }
s5AgentBootConfig OBJECT IDENTIFIER ::= { s5Agent 10 }
s5AgentAsciiConfig OBJECT IDENTIFIER ::= { s5Agent 11 }
-- SECTION 2: MIB Objects
-- Hardware Information
s5AgMyGrpIndx OBJECT-TYPE
SYNTAX INTEGER (1..32767)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index of the group containing
the agent."
::= { s5AgentHw 1 }
s5AgMyComIndx OBJECT-TYPE
SYNTAX INTEGER (1..32767)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index of the component containing
the agent."
::= { s5AgentHw 2 }
-- Global Information
s5AgentGbl OBJECT IDENTIFIER ::= { s5AgentInfo 1 }
s5AgInfoReBoot OBJECT-TYPE
SYNTAX INTEGER {
other(1),
running(2),
restart(3),
reboot(4),
reset(5),
download(6),
downloadAndRestart(7),
downloadAndReboot(8),
downloadAndReset(9)
}
MAX-ACCESS read-write
STATUS current
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 values can be written:
restart(3)...restart agent (i.e., jump to
beginning of agent code)
reboot(4)....start boot sequence for agent
(i.e., jump to beginning of
boot firmware)
reset(5).....do a hardware reset
download(6)..............activate download of
a new agent
downloadAndRestart(7)....activate download of
a new agent and restart
downloadAndReboot(8).....activate download of
a new agent and reboot
downloadAndReset(9)......activate download of
a new agent and reset
If s5AgInfoScheduleBootTime is set in the same PDU as
s5AgInfoReBoot, the action specified occurs when the
scheduled time reaches zero; otherwise, the action
occurs immediately. The agent does best efforts to
return a response before the action occurs.
If any of the combined download actions are
requested, neither action occurs until the
expiry of s5AgInfoScheduleBootTime, if set."
::= { s5AgentGbl 1 }
s5AgInfoWriteCfg OBJECT-TYPE
SYNTAX INTEGER {
other(1),
valid(2),
write(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Action object to cause current configuration
settings to be written to local nonvolatile
storage. The following values can only be read:
other(1)...some unknown or other state
valid(2)...contents valid
The following value can be written:
write(3)...write configuration settings to
local storage (such as nonvol)
If the write operation write fails, then the
agent will return error 'genErr' on the SET."
::= { s5AgentGbl 2 }
s5AgInfoMgmtProtocolNxtBoot OBJECT-TYPE
SYNTAX INTEGER {
other(1),
ipOnly(2),
ipxOnly(3),
ipAndIpx(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The transport protocol(s) to use after
the next boot of the agent. The following
value is read-only:
other(1)....unknown or some other protocol
The following value is read-write:
ipOnly(2).....only IP
ipxOnly(3)....only IPX
ipAndIpx(4)...IP and IPX."
::= { s5AgentGbl 3 }
s5AgInfoMgmtProtocolCur OBJECT-TYPE
SYNTAX INTEGER {
other(1),
ipOnly(2) ,
ipxOnly(3),
ipAndIpx(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The current transport protocol(s) that are
being supported by the agent. The following
value is read-only:
other(1)....unknown or some other protocol
The following value is read-write:
ipOnly(2).....only IP
ipxOnly(3)....only IPX
ipAndIpx(4)...IP and IPX.
When the IP protocol stack is not enabled,
the agent will not respond to PING or SNMP
requests over IP.
When the IPX protocol stack is not enabled,
the agent will not respond to diagnostic SAP or
SNMP requests over IPX.
It is suggested that NMS not disable the transport
they are using."
::= { s5AgentGbl 4 }
s5AgInfoBootMode OBJECT-TYPE
SYNTAX INTEGER {
other(1),
local(2),
net(3),
netWhenNeeded(4),
netOrLastAddress(5),
dhcp(6),
dhcpWhenNeeded(7),
dhcpOrLastAddress(8)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The source for initial protocol configuration
information at next boot. For IP, a setting of
net(3), netWhenNeeded(4), or netOrLastAddress(5)
means that BOOTP will be used to get the
agent's IP address(es), load server address, and
configuration file name.
For IPX, a setting of net(3),
netWhenNeeded(4), or netOrLastAddress(5) means SAP
will be used to get the agent's Novell
network number(s), and the configuation filename
will be loaded from local storage (note - the load
server address is not needed in a Novell network).
The following value is read-only:
other(1).....not applicable or some other case
The following values are read-write:
local(2)
Don't use the network.
net(3)
Try using the network and if that
fails then use protocol configuration
information from local storage.
netWhenNeeded(4)
Use protocol configuration information
from local storage if available,
otherwise, try using the network.
netOrLastAddress(5)
Similar to netWhenNeeded, except that if
using the network fails, the last set
of protocol configuration information
that was obtained using the network
will be used if it is available.
Note: The load server address is not configurable
and is not available in this MIB object on a
Novell network."
::= { s5AgentGbl 5 }
s5AgInfoCfgLoadMode OBJECT-TYPE
SYNTAX INTEGER {
other(1),
local(2),
net(3),
locAsBk(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The source from which to load configuration
information at next boot. The following value
is read-only:
other(1)...not applicable or some other case
The following values are read-write:
local(2).....get from local storage
net(3).......load from the network
locAsBk(4)...try using network and if it fails
then use local information.
When local(2) is specified, the configuration
information is loaded from local storage.
If the local configuration is not valid
(checks for ip = 0.0.0.0), then BOOTP is used
for the IP stack. (In IPX only mode, the IP
address could be 0.0.0.0 and IPX does not rely
on the IP address. The agent checks the IPX
address, and if the network number of the IPX
address is equal to 0 the agent uses SAP).
When net(3) is specified, the configuration
information will be downloaded from the network
only. The configuration information will never
be loaded from local storage, even if downloading
fails and the local configuration information exists.
When locAsBk(4) is specified, a download of the
configuration information will be tried over the
network. If the network download fails then the
configuration information will be loaded from
local storage."
::= { s5AgentGbl 6 }
s5AgInfoImgLoadMode OBJECT-TYPE
SYNTAX INTEGER {
other(1),
local(2),
net(3),
locAsBk(4),
netIfNewer(5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The source from which to load the agent image
at next boot. The following value is read-only:
other(1)...not applicable or some other case
The following values are read-write:
local(2)........get from local storage
net(3)..........load from the network
locAsBk(4)......try using network and if it fails
then use local information.
netIfNewer(5)...try loading image over the net.
If can load image, and it is newer
than the local image, then use it.
Otherwise, use local image.
If the local image is not valid, the setting will
be net(3) and cannot be changed to local(2),
or locAsBk(4) until a valid image file is loaded
(i.e., error 'badValue' will be returned on SETS with
value other than net(3)). When the local image is
not valid and the network download of the image fails,
the entire boot process will be repeated.
When local(2) is specified, the image will be loaded
from local storage.
When net(3) is specified, the image will be downloaded
from the network only. The image file will never be
loaded from local storage, even if downloading fails
and the local image exists.
When locAsBk(4) is specified, a download of the image
will be tried over the network. If the network
download fails then the image is loaded from local
storage.
When netIfNewer(5) is specified, a download of the
image will be tried over the network. If successful,
it will then be compared to the image stored in local
storage. The most recent version of the two will be
used. If the local image is not valid, the network
will always be used. If the network download fails
then the image is loaded from the local storage."
::= { s5AgentGbl 7 }
s5AgInfoImgSaveMode OBJECT-TYPE
SYNTAX INTEGER {
notAvail(1),
writeIfDiff(2),
writeIfNewer(3),
noWrite(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates what to do with the image (when
loaded from the network) on the next boot.
The following value can only be read:
notAvail(1)...the save operation is not
available
The following values can be written (and
read) if the device supports this capability:
writeIfDiff(2)....save image to local storage
at next boot if image is
different from saved contents
writeIfNewer(3)...save image to local storage
at next boot if image is
newer than saved contents.
noWrite(4)........do not save image to local
storage at next boot, even if
image is newer or different."
::= { s5AgentGbl 8 }
s5AgInfoImgSaveStatus OBJECT-TYPE
SYNTAX INTEGER {
notAvail(1),
noSave(2),
saved(3),
saveFailed(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates what happened to the image file
on the last boot. The following values
are returned:
notAvail(1).....the save operation is not
available
noSave(2).......image not saved since image was
not asked to be saved, or image
was not loaded from the network
saved(3)........image saved
saveFailed(4)...tried to save image, but failed"
::= { s5AgentGbl 9 }
s5AgInfoVer OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The version of the agent in the form
'major.minor.maintenance[letters]'. This
is an alias for the value of the object
s5ChasStoreCntntVer for the RAM of the
module containing the agent."
::= { s5AgentGbl 10 }
s5AgInfoLocStorVer OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The version of the agent 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. This is an alias for
the value of the object s5ChasStoreCntntVer
for the local storage of the module containing
the agent."
::= { s5AgentGbl 11 }
s5AgInfoNxtBootDfltGwAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IP address of the default gateway (router)
for the agent to use after the next boot. (NOTE:
the current default router is the value of object
s5AgInfoCurDfltGwAddr (or ipRouteNextHop.0.0.0.0).)
If not used, then this object has the value
of 0.0.0.0."
::= { s5AgentGbl 12 }
s5AgInfoCurDfltGwAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IP address of the current default gateway
(router). (NOTE: this is an alias for the object
ipRouteNextHop in the row of the table
ipRouteTable which has object ipRouteDest with
a value of 0.0.0.0.)
If not used, then this object has the value
of 0.0.0.0."
::= { s5AgentGbl 13 }
s5AgInfoDramUsage OBJECT-TYPE
SYNTAX INTEGER (-1..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An indication of the percentage of DRAM currently
in use by this agent. If this information is not
available the agent shall return -1, otherwise the
percentage of DRAM in use is returned as an integer
between 0 and 100. The percentage is defined as the
DRAM currently used by this agent divided by the
total DRAM available to this agent."
::= { s5AgentGbl 14 }
s5AgInfoLoadProtocolNxtBoot OBJECT-TYPE
SYNTAX INTEGER {
other(1),
ipOnly(2),
ipxOnly(3),
auto(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The transport protocol(s) over which the
agent is to use to load the configuration
information and the agent image at the
next boot of the agent. The following
value is read-only:
other(1)....unknown or some other protocol
The following values are read-write:
ipOnly(2)....use load protocol over IP
ipxOnly(3)...use load protocol over IPX
auto(4)......try using the IP load function
and if that fails then use IPX
load function. If the IPX
load function also fails, repeat
the same process until one or
the other protocol succeeds."
::= { s5AgentGbl 15 }
s5AgInfoLoadProtocolLast OBJECT-TYPE
SYNTAX INTEGER {
reserved(1),
ip(2),
ipx(3),
local(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The transport protocol over which the agent image
and configuration information were last loaded. The
following values are read-only:
reserved(1)...reserved
ip(2).........gotten from the network using
a load protocol over IP
ipx(3)........gotten from the network using
a load protocol over IPX
local(4)......loaded from local storage."
::= { s5AgentGbl 16 }
s5AgInfoSlotScope OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains information about all
the slots an agent can manage. The value is encoded
in an octet string. One byte has information about 8
slots. If a bit is set then agent can manage the
corresponding slot. Byte 1 will have information about
slots 1-8, byte 2 will have information about
slots 9-16, and so on. For example an agent that
can manage slots 2-7 in a 14 slot chassis should have
the value :
8d:00 (0111 1110 0000 0000)
If an agent returns a string of size 0, then it can
manage all slots in chassis."
::= { s5AgentGbl 17 }
s5AgInfoImgType OBJECT-TYPE
SYNTAX INTEGER {
other(1),
typeA(2),
typeB(3),
typeC(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the type of agent image. This object is meant
to distinguish between agents having the same version
number running on the same hardware, but with dissimilar
functionality. Following are examples of possible values
for various enumerations.
other(1) ....... A unique agent eg., 5310A, 5dn310 etc
typeA(2) ....... fusion basic agent.
typeB(2) ....... fusion advanced agent."
::= { s5AgentGbl 18 }
s5AgInfoScheduleBootTime OBJECT-TYPE
SYNTAX INTEGER (0..10080)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The time, measured in minutes, remaining until the
action(s) set by s5AgInfoReBoot will be performed.
This value must be set in the same set request as
the value of s5AgInfoReBoot; otherwise, a badValue
error is returned.
If this value has been set, the number returned will
count down to zero, and the time remaining in minutes
will be rounded up to the next whole minute.
Actions set via s5AgInfoReBoot can be scheduled for
up to seven days in advance.
7 * 24 * 60 equals the maximum settable value of
10080. If this attribute has not been set, a value of
zero should be returned."
::= { s5AgentGbl 19 }
s5AgInfoScheduleBootCancel OBJECT-TYPE
SYNTAX INTEGER {
other(1),
cancel(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Cancel a scheduled s5AgInfoReboot action.
The following value is read-only:
other(1)...not applicable or some other case
This is always the value that return when
read.
The following values are read-write:
cancel(2)...cancel a scheduled boot.
Setting this attribute to cancel(2) sets s5AgInfoReBoot
to running(2) and s5AgInfoScheduleBootTime to zero."
::= { s5AgentGbl 20 }
s5AgInfoNumBootBanks OBJECT-TYPE
SYNTAX INTEGER (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of local storage locations (or flash
memory banks) available on this device for
operational code images.
Devices without local image capability or not
supporting this attribute shall return a value of 0."
::= { s5AgentGbl 21 }
s5AgInfoNextBootBank OBJECT-TYPE
SYNTAX INTEGER (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The source of the image to be loaded upon the
next boot of the device.
If a value is set larger than s5AgInfoNumBootBanks,
a badValue error should be returned.
Devices without local image capability or not
supporting this attribute shall return a value of 0."
::= { s5AgentGbl 22 }
s5AgInfoDstLoadBank OBJECT-TYPE
SYNTAX INTEGER (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The local storage bank where the next system image
image is downloaded to.
Devices without local image capability or not
supporting this attribute shall return a value of 0."
::= { s5AgentGbl 23 }
s5AgInfoFileAction OBJECT-TYPE
SYNTAX INTEGER {
other(1),
dnldConfig(2),
dnldImg(3),
upldConfig(4),
upldImg(5),
dnldFw(6),
upldFw(7),
dnldImgIfNewer(8),
dnldImgToDram(9),
dnldImgNoReset(10),
dnldFwNoReset(11),
dnldImgFromUsb(12),
upldImgToUsb(13),
dnldFwFromUsb(14),
upldFwToUsb(15),
dnldConfigFromUsb(16),
upldConfigToUsb(17),
dnldLicense(18),
upldLicense(19),
dnldLicenseFromUsb(20),
upldLicenseToUsb(21),
copyConfigToNvram(22)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is used to copy a config file or an image file.
Typically, the copy is to/from a TFTP server, though other
types of sources/destinations are possible.
In read operation, if no action taken since the boot up, it will
return other(1). Otherwise it will return the latest action such
as dnldConfig(2), dnldImg(3), upldConfig(4) and upldImg(5).
In write operation, the values that can be written are:
dnldConfig(2) ........... download a config file to a device.
The new config file will not take effect
until the next boot cycle of the device.
dnldImg(3) .............. download an image to a device.
upldConfig(4) ........... upload a config file to a server from
a device. The config file contains the
current MIB object values of the device.
upldImg(5) .............. upload a image from a device to a server
dnldFw(6) ............... download firmware to a device
upldFw(7) ............... upload firware from a device to a server
dnldImgIfNewer(8) ....... download an image to a device if the image
version is newer than the image stored in
local NV storage
dnldImgToDram(9) ........ download an image to a device, but do not
save it to NVRAM, just keep it in DRAM
dnldImgNoReset(10) ...... download an image to a device, but do not
reset the device after the download
dnldFwNoReset(11) ....... download firmware to a device, but do not
reset the device after the download
dnldImgFromUsb(12) ...... download image from USB port
upldImgToUsb(13) ........ upload image to USB port
dnldFwFromUsb(14) ....... download firmware from USB port
upldFwToUsb(15) ......... upload firmware to USB port
dnldConfigFromUsb(16) ... download binary config from USB port
upldConfigToUsb(17) ..... upload binary config to USB port
dnldLicense(18) ......... download license file from TFTP server
upldLicense(19) ......... upload license file to TFTP server
dnldLicenseFromUsb(20) .. download license file from USB port
upldLicenseToUsb(21) .... upload license file to USB port
copyConfigToNvram(22) ... copy the current running configuration
into NVRAM"
::= {s5AgentGbl 24}
s5AgInfoFileStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
inProgress (2),
success (3),
fail (4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is used to get the status of the latest action as
shown by s5AgInfoFileAction. The values that can be read are:
other(1) ......... if no action taken since the boot up
inProgress (2) ... the operation is in progress
success (3) ...... the operation succeeds.
fail (4) ......... the operation is failed."
::= {s5AgentGbl 25}
s5AgInfoStackBootpMACUsage OBJECT-TYPE
SYNTAX INTEGER {
other(1),
useBaseUnitMACAddress (2),
useStackMACAddress (3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is used to get/set which MAC address is used
by a stackable system when performing BOOTP requests during
bootup. A value of useBaseUnitMACAddress(2) indicates that
the MAC address of the base unit of the stack will be used.
A value of useStackMACAddress(3) indicates that the MAC
address of the stack will be used."
::= {s5AgentGbl 26}
-- Agent's Interface Information Table
s5AgMyIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF S5AgMyIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that provides additional information
about the agent's interfaces. The number of
entries in the table is determined by the
number of interfaces on the agent."
::= { s5AgentInfo 2 }
s5AgMyIfEntry OBJECT-TYPE
SYNTAX S5AgMyIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row in the table of additional information
about the agent's interfaces. Entries can not
be created or deleted via SNMP requests."
INDEX { s5AgMyIfIndx }
::= { s5AgMyIfTable 1 }
S5AgMyIfEntry ::= SEQUENCE {
s5AgMyIfIndx InterfaceIndex,
s5AgMyIfNxtBootIpAddr IpAddress,
s5AgMyIfNxtBootNetMask IpAddress,
s5AgMyIfCfgFname DisplayString,
s5AgMyIfLdSvrAddr IpAddress,
s5AgMyIfImgFname DisplayString,
s5AgMyIfValidFlag INTEGER,
s5AgMyIfNxtBootIpxAddr IpxAddress,
s5AgMyIfBootRouterAddr IpAddress,
s5AgMyIfMacAddr MacAddress
}
s5AgMyIfIndx OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index of the interface. This has the same
value as ifIndex for the interface."
::= { s5AgMyIfEntry 1 }
s5AgMyIfNxtBootIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"For the next boot, the IP address of the
the interface. If not used, then the
value is 0.0.0.0. (NOTE: the current IP
address for the interface is found in table
ipAddrTable and in table s5AgOthIfTable.)"
::= { s5AgMyIfEntry 2 }
s5AgMyIfNxtBootNetMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"For the next boot, the subnet mask for
the interface. If not used, then the
value is 0.0.0.0. (NOTE: the current subnet
mask for the interface is found in table
ipAddrTable.)"
::= { s5AgMyIfEntry 3 }
s5AgMyIfCfgFname OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Name of the configuration file currently
associated with the interface. When not
used, the value is a zero length string."
::= { s5AgMyIfEntry 4 }
s5AgMyIfLdSvrAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IP address of the load server for the
configuration file and/or the image file.
If not used, then the value is 0.0.0.0"
::= { s5AgMyIfEntry 5 }
s5AgMyIfImgFname OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..128))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Name of the image file(s) currently associated
with the interface. 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."
::= { s5AgMyIfEntry 6 }
s5AgMyIfValidFlag OBJECT-TYPE
SYNTAX INTEGER {
valid(1),
invalid(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates if the configuration and/or image
file(s) were downloaded from this interface and
if the file names have not been changed. The
following values can be read:
valid(1).....configuration and/or image file(s)
downloaded from this interface
are currently in use
invalid(2)...cfg and/or image files downloaded
from this interface are not
in use (this may also mean that
there are no files downloaded from
this interface)."
::= { s5AgMyIfEntry 7 }
s5AgMyIfNxtBootIpxAddr OBJECT-TYPE
SYNTAX IpxAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"For the next boot, the IPX address of the
the interface. If the IPX protocol is not used,
then the value is 00000000:000000000000.