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 pathBLADETYPE4-NETWORK-MIB
23994 lines (21152 loc) · 663 KB
/
BLADETYPE4-NETWORK-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
-- ----------------------------------------------------------------------------
-- File Main Owner:
-- File Peer Owner:
-- File Description: Main entry point to build private MIBs.
--
--
-- { COPYRIGHT / HISTORY
--
--
--
-- PORTING HISTORY
--
-- } COPYRIGHT / HISTORY (end)
--
-- ----------------------------------------------------------------------------
-- { INSERT: hpRoot
-- ----------------------------------------------------------------------------
BLADETYPE4-NETWORK-MIB DEFINITIONS ::= BEGIN
IMPORTS
OBJECT-TYPE, Integer32, Unsigned32, Counter32, Gauge32,
Counter64, TimeTicks, IpAddress
FROM SNMPv2-SMI
DisplayString, PhysAddress, MacAddress
FROM SNMPv2-TC
BridgeId
FROM BRIDGE-MIB
sysName, sysLocation, sysContact, ifIndex
FROM RFC1213-MIB
enterprises
FROM RFC1155-SMI
hpSwitchBladeType4-Products,
hpSwitchBladeType4-Mgmt
FROM HP-SWITCH-PL-MIB;
-- SysObjId for GbE2c Interconnect Switch (1.3.6.1.4.1.11.2.3.7.11.33.4.1.1)
hpProLiant-GbE2c-InterconnectSwitch OBJECT IDENTIFIER
::= { hpSwitchBladeType4-Products 1 }
-------------------------------------------------------------------------------
-- HP Platform Common Private MIBs
-------------------------------------------------------------------------------
agent OBJECT IDENTIFIER
::= { hpSwitchBladeType4-Mgmt 1 }
-- ----------------------------------------------------------------------------
-- { INSERT: bt2Switch
-- ----------------------------------------------------------------------------
agentConfig OBJECT IDENTIFIER ::= { agent 1 }
agentStats OBJECT IDENTIFIER ::= { agent 2 }
agentInfo OBJECT IDENTIFIER ::= { agent 3 }
agentOper OBJECT IDENTIFIER ::= { agent 4 }
agSystem OBJECT IDENTIFIER ::= { agentConfig 1 }
agPortConfig OBJECT IDENTIFIER ::= { agentConfig 2 }
agRadiusConfig OBJECT IDENTIFIER ::= { agentConfig 3 }
agNTP OBJECT IDENTIFIER ::= { agentConfig 4 }
agSyslog OBJECT IDENTIFIER ::= { agentConfig 5 }
agTransfer OBJECT IDENTIFIER ::= { agentConfig 7 }
agApply OBJECT IDENTIFIER ::= { agentConfig 8 }
agTacacsConfig OBJECT IDENTIFIER ::= { agentConfig 10 }
agMgmtNetConfig OBJECT IDENTIFIER ::= { agentConfig 11 }
agAccess OBJECT IDENTIFIER ::= { agentConfig 12 }
agSSHConfig OBJECT IDENTIFIER ::= { agentConfig 13 }
pktStats OBJECT IDENTIFIER ::= { agentStats 1 }
mpCpuStats OBJECT IDENTIFIER ::= { agentStats 2 }
portStats OBJECT IDENTIFIER ::= { agentStats 3 }
agClearStats OBJECT IDENTIFIER ::= { agentStats 7 }
ntpStats OBJECT IDENTIFIER ::= { agentStats 9 }
aclStats OBJECT IDENTIFIER ::= { agentStats 12 }
hardware OBJECT IDENTIFIER ::= { agentInfo 1 }
portInfo OBJECT IDENTIFIER ::= { agentInfo 2 }
agDiff OBJECT IDENTIFIER ::= { agentInfo 4 }
agCfgDump OBJECT IDENTIFIER ::= { agentInfo 5 }
geaportInfo OBJECT IDENTIFIER ::= { agentInfo 7 }
ufdInfo OBJECT IDENTIFIER ::= { agentInfo 8 }
sfpInfo OBJECT IDENTIFIER ::= { agentInfo 9 }
agNTPOper OBJECT IDENTIFIER ::= { agentOper 2 }
-- There are two configuration blocks for Bladetype2 switches.
-- The "current_config" reflects the configuration parameters that the
-- switch is operating on and it is read-only. The objects with "CurCfg"
-- in the name are reflect to this configuration block.
--
-- The "new_config" accepts user configurations on set. The objects with
-- "NewCfg" in the name are reflect to this configuration block.
--
-- The newly set configurations will not take effect until a "apply"
-- command has been issued (See agApplyConfiguration object defined in
-- BLADETYPE2-SWITCH-MIB).
--
-- The newly set configurations will not be saved through next restarting
-- of the switch unless a "save" command has been issued (See
-- agSaveConfiguration object defined in BLADETYPE2-SWITCH-MIB).
-- Hardware Information
hwPartNumber OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The hardware part number of the Bladetype2 Switch."
::= { hardware 1 }
hwRevision OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The hardware revision. If the revision is not
available, a zero length string should be returned."
::= { hardware 2 }
hwSerialNumber OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The switch serial number."
::= { hardware 5 }
-- Port operation table
agPortOperTable OBJECT-TYPE
SYNTAX SEQUENCE OF AgPortOperTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of port operations."
::= { agentOper 1 }
agPortOperTableEntry OBJECT-TYPE
SYNTAX AgPortOperTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row in the port operations table."
INDEX { portOperIdx }
::= { agPortOperTable 1 }
AgPortOperTableEntry ::=
SEQUENCE {
portOperIdx Integer32,
portOperState INTEGER
,portOperRmon INTEGER
}
portOperIdx OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The port index."
::= { agPortOperTableEntry 1 }
portOperState OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable/Disable port."
::= { agPortOperTableEntry 2 }
portOperRmon OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable/Disable RMON for port."
::= { agPortOperTableEntry 3 }
--portOperDot1x OBJECT IDENTIFIER ::= { agPortOperTableEntry 4 }
portOperDot1xTable OBJECT-TYPE
SYNTAX SEQUENCE OF PortOperDot1xTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of port operations."
::= { agentOper 3 }
portOperDot1xTableEntry OBJECT-TYPE
SYNTAX PortOperDot1xTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row in the port 802.1x operation table."
INDEX { portOperDot1xIndx }
::= { portOperDot1xTable 1 }
PortOperDot1xTableEntry ::= SEQUENCE {
portOperDot1xIndx Integer32,
portOperDot1xReset INTEGER,
portOperDot1xReauth INTEGER
}
portOperDot1xIndx OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The port index."
::= { portOperDot1xTableEntry 1 }
portOperDot1xReset OBJECT-TYPE
SYNTAX INTEGER {
no(1),
yes(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Reinitialize 802.1x access control on port."
::= { portOperDot1xTableEntry 2 }
portOperDot1xReauth OBJECT-TYPE
SYNTAX INTEGER {
no(1),
yes(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Initiate reauthentication on port."
::= { portOperDot1xTableEntry 3 }
-- NTP operation
ntpOperSendReq OBJECT-TYPE
SYNTAX INTEGER {
no(1),
yes(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Allows the user to send requests to the NTP server."
::= { agNTPOper 1 }
-- Port information table
portInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF PortInfoTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of port information."
::= { portInfo 1 }
portInfoTableEntry OBJECT-TYPE
SYNTAX PortInfoTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row in the port information table."
INDEX { portInfoIndx }
::= { portInfoTable 1 }
PortInfoTableEntry ::= SEQUENCE {
portInfoIndx Integer32,
portInfoSpeed INTEGER,
portInfoMode INTEGER,
portInfoFlowCtrl INTEGER,
portInfoLink INTEGER,
portInfoPhyIfDescr DisplayString,
portInfoPhyIfType INTEGER,
portInfoPhyIfMtu Integer32,
portInfoPhyIfPhysAddress PhysAddress,
portInfoPhyIfOperStatus INTEGER,
portInfoPhyIfLastChange TimeTicks
,portInfoMedia INTEGER
}
portInfoIndx OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The port index."
::= { portInfoTableEntry 1 }
portInfoSpeed OBJECT-TYPE
SYNTAX INTEGER {
mbs10(2),
mbs100(3),
mbs1000(4),
any(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current operational speed of the port."
::= { portInfoTableEntry 2 }
portInfoMode OBJECT-TYPE
SYNTAX INTEGER {
full-duplex(2),
half-duplex(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current operational mode of the port."
::= { portInfoTableEntry 3 }
portInfoFlowCtrl OBJECT-TYPE
SYNTAX INTEGER {
transmit(2),
receive(3),
both(4),
none(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current operational flow control of the port."
::= { portInfoTableEntry 4 }
portInfoLink OBJECT-TYPE
SYNTAX INTEGER {
up(1),
down(2),
disabled(3),
inoperative(4) -- unrecognized PCI device
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current operational link status of the port."
::= { portInfoTableEntry 5 }
portInfoPhyIfDescr OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A textual string containing information about the
interface. This string should include the name of
the manufacturer, the product name and the version
of the hardware interface."
::= { portInfoTableEntry 6 }
portInfoPhyIfType OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
regular1822(2),
hdh1822(3),
ddn-x25(4),
rfc877-x25(5),
ethernet-csmacd(6),
iso88023-csmacd(7),
iso88024-tokenBus(8),
iso88025-tokenRing(9),
iso88026-man(10),
starLan(11),
proteon-10Mbit(12),
proteon-80Mbit(13),
hyperchannel(14),
fddi(15),
lapb(16),
sdlc(17),
ds1(18), -- T-1
e1(19), -- european equiv. of T-1
basicISDN(20),
primaryISDN(21), -- proprietary serial
propPointToPointSerial(22),
ppp(23),
softwareLoopback(24),
eon(25), -- CLNP over IP [11]
ethernet-3Mbit(26),
nsip(27), -- XNS over IP
slip(28), -- generic SLIP
ultra(29), -- ULTRA technologies
ds3(30), -- T-3
sip(31), -- SMDS
frame-relay(32)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of interface, distinguished according to
the physical/link protocol(s) immediately `below'
the network layer in the protocol stack."
::= { portInfoTableEntry 7 }
portInfoPhyIfMtu OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The size of the largest datagram which can be
sent/received on the interface, specified in
octets. For interfaces that are used for
transmitting network datagrams, this is the size
of the largest network datagram that can be sent
on the interface."
::= { portInfoTableEntry 8 }
portInfoPhyIfPhysAddress OBJECT-TYPE
SYNTAX PhysAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The interface's address at the protocol layer
immediately `below' the network layer in the
protocol stack. For interfaces which do not have
such an address (e.g., a serial line), this object
should contain an octet string of zero length."
::= { portInfoTableEntry 9 }
portInfoPhyIfOperStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1), -- ready to pass packets
down(2),
testing(3) -- in some test mode
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current operational state of the interface.
The testing(3) state indicates that no operational
packets can be passed."
::= { portInfoTableEntry 10 }
portInfoPhyIfLastChange OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime at the time the interface
entered its current operational state. If the
current state was entered prior to the last re-
initialization of the local network management
subsystem, then this object contains a zero
value."
::= { portInfoTableEntry 11 }
portInfoMedia OBJECT-TYPE
SYNTAX INTEGER {
auto(0),
copper(1),
fiber(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The switch port media."
::= { portInfoTableEntry 12 }
-- Agent System Group
-- This group of objects take effect on the 'SET' request.
-- There is no need to 'apply' or 'save'.
agApplyConfiguration OBJECT-TYPE
SYNTAX INTEGER {
other(1),
apply(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is an action object to apply the changes made to configuration
of the switch. By setting the value to apply(2), all the changes
made since the last apply are written to the new_config block.
other(1) is returned when this object ie read. "
::= { agSystem 2 }
agSavePending OBJECT-TYPE
SYNTAX INTEGER {
saveNeeded(1),
noSaveNeeded(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object, when read, gives the user information
whether an save action is needed and that the configuration
has been applied but not saved to the flash."
::= { agSystem 3 }
agSaveConfiguration OBJECT-TYPE
SYNTAX INTEGER {
ok(1),
saveActive(2),
notSaveActive(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is an action object to write current configuration to
nonvolatile storage.
When issued with the saveActive, the active configuration
in flash is saved to backup in flash and then the new
configuration is saved to the active configuration in flash.
When issued with notSaveActive, the active configuration
is NOT saved to the flash and the active configuration is
overwritten with the new configuration.
ok(1) is returned always when read."
::= { agSystem 4 }
agRevert OBJECT-TYPE
SYNTAX INTEGER {
other(1),
revert(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is an action object to revert the unapplied changes
made to the switch. By setting the value to revert(2),
all the unapplied changes will be reverted. This action
will copy the current_config to the new_config block.
other(1) is returned when this object is read. "
::= { agSystem 5 }
agRevertApply OBJECT-TYPE
SYNTAX INTEGER {
other(1),
revertApply(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is an action object to revert the unsaved changes
made to the switch. By setting the value to revertApply(2),
all the unsaved as well as unapplied changes will be
reverted.
other(1) is returned when this object is read. "
::= { agSystem 6 }
agReset OBJECT-TYPE
SYNTAX INTEGER {
other(1),
coldReset(2),
warmReset(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is an action object to reboot the switch.
other(1) is returned always when read.
The following values are writable:
coldReset(2)...
warmReset(3)..."
::= { agSystem 7 }
agConfigForNxtReset OBJECT-TYPE
SYNTAX INTEGER {
active(2),
backup(3),
default(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The configuration information to be loaded from at next reset.
The following values are writable:
active(2)...active configuration block
backup(3)...backup configuration block
default(4)..default configuration block"
::= { agSystem 8 }
agImageForNxtReset OBJECT-TYPE
SYNTAX INTEGER {
image1(2),
image2(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The software image to be booted from at next reset.
The following values are writable:
image1(2)...image 1
image2(3)...image 2"
::= { agSystem 9 }
agSoftwareVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The version of the software image that is currently running on the
system in the form of 'major.minor.maintenance.bugfix'. A zero
length string is returned if version is not available."
::= { agSystem 10 }
agBootVer OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The version of the boot code in the form of 'major.minor.bugfix'.
A zero length string is returned if version is not available."
::= { agSystem 11 }
agImage1Ver OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The version of the software image stored in image 1 storage in the
form of 'major.minor.bugfix'. A zero length string is returned if
version is not available or there is no valid software image."
::= { agSystem 12 }
agImage2Ver OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The version of the software image stored in image 2 storage in the
form of 'major.minor.bugfix'. A zero length string is returned if
version is not available or there is no valid software image."
::= { agSystem 13 }
agRtcDate OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..16))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The date on the real time clock in the form of 'mm/dd/yy'.
A zero length string is returned if date is not available."
::= { agSystem 14 }
agRtcTime OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..16))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The time on the real time clock in the form of 'hh:mm:ss'.
A zero length string is returned if time is not available."
::= { agSystem 15 }
agLastSetErrorReason OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The error reason of the last SET failure."
::= { agSystem 16 }
agCurCfgHttpServerPort OBJECT-TYPE
SYNTAX INTEGER (1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The TCP port number that the HTTP server is listening to
in the current_configuration block."
::= { agSystem 17 }
agNewCfgHttpServerPort OBJECT-TYPE
SYNTAX INTEGER (1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The TCP port number that the HTTP server is listening to
in the new_configuration block."
::= { agSystem 18 }
agCurCfgLoginBanner OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..79))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The user defined login banner."
::= { agSystem 19 }
agNewCfgLoginBanner OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..79))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The user defined login banner."
::= { agSystem 20 }
agCurCfgConsole OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Enable or disable console output of syslog messages."
::= { agSystem 23 }
agNewCfgConsole OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable console output of syslog messages."
::= { agSystem 24 }
agCurCfgBootp OBJECT-TYPE
SYNTAX INTEGER {
enabled(2),
disabled(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Enable or disable the use of BootP, as currently configured in the
current_configuration block."
::= { agSystem 29 }
agNewCfgBootp OBJECT-TYPE
SYNTAX INTEGER {
enabled(2),
disabled(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable the use of BootP, in the new_configuration block."
::= { agSystem 30 }
agSlotNumber OBJECT-TYPE
SYNTAX INTEGER (1..10)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Identifies the slot in which this switch is installed. If the
agent implementing this MIB is not a blade in a chassis this
value has no meaning."
::= { agSystem 31 }
agCurCfgSnmpTimeout OBJECT-TYPE
SYNTAX INTEGER (1..30)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Once SNMP operations like agApplyConfig, agDiffState and
agDumpState, which use the state machine are done the resources
used by these operations need to be freed by setting the state
back to 'idle' so others can issue the commands via SNMP.
agSnmpTimeout indicates the number of minutes before the resources
are freed and the state set back to 'idle' if this operation is not
performed by the user."
::= { agSystem 32 }
agNewCfgSnmpTimeout OBJECT-TYPE
SYNTAX INTEGER (1..30)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Once SNMP operations like agApplyConfig, agDiffState and
agDumpState, which use the state machine are done the resources
used by these operations need to be freed by setting the state
back to 'idle' so others can issue the commands via SNMP.
agSnmpTimeout indicates the number of minutes before the resources
are freed and the state set back to 'idle' if this operation is not
performed by the user."
::= { agSystem 33 }
agCurCfgTelnetServerPort OBJECT-TYPE
SYNTAX INTEGER (1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The TCP port number that the telnet server listens for telnet
sessions."
::= { agSystem 34 }
agNewCfgTelnetServerPort OBJECT-TYPE
SYNTAX INTEGER (1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The TCP port number that the telnet server listens for telnet
sessions."
::= { agSystem 35 }
agClearFlashDump OBJECT-TYPE
SYNTAX INTEGER {
ok(1),
clear(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is an action object to clear the FLASH dump.
ok(1) is returned when this object is read. "
::= { agSystem 36 }
agRackId OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..127))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The rack unique identifier."
::= { agSystem 37 }
agChassis OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..127))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Chassis serial number."
::= { agSystem 38 }
agCurCfgTftpServerPort OBJECT-TYPE
SYNTAX INTEGER (1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The TCP port number that the TFTP server is listening to
in the current_configuration block."
::= { agSystem 39 }
agNewCfgTftpServerPort OBJECT-TYPE
SYNTAX INTEGER (1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The TCP port number that the TFTP server is listening to
in the new_configuration block."
::= { agSystem 40 }
agCurCfgHttpsServerPort OBJECT-TYPE
SYNTAX INTEGER (1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The TCP port number that the HTTPS server is listening to
in the current_configuration block."
::= { agSystem 49 }
agNewCfgHttpsServerPort OBJECT-TYPE
SYNTAX INTEGER (1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The TCP port number that the HTTPS server is listening to
in the new_configuration block."
::= { agSystem 50 }
agCurDaylightSavings OBJECT-TYPE
SYNTAX INTEGER {
none(0),
africa-Algeria(1),
africa-Angola(2),
africa-Benin(3),
africa-Botswana(4),
africa-Burkina-Faso(5),
africa-Burundi(6),
africa-Cameroon(7),
africa-Central-African-Rep(8),
africa-Chad(9),
africa-Congo-WestDemRepCongo(10),
africa-Congo-EastDemRepCongo(11),
africa-Congo-Rep(12),
africa-Cote-dIvoire(13),
africa-Djibouti(14),
africa-Egypt(15),
africa-Equatorial-Guinea(16),
africa-Eritrea(17),
africa-Ethiopia(18),
africa-Gabon(19),
africa-Gambia(20),
africa-Ghana(21),
africa-Guinea(22),
africa-Guinea-Bissau(23),
africa-Kenya(24),
africa-Lesotho(25),
africa-Liberia(26),
africa-Libya(27),
africa-Malawi(28),
africa-Mali-SouthWestMali(29),
africa-Mali-NorthEastMali(30),
africa-Mauritania(31),
africa-Morocco(32),
africa-Mozambique(33),
africa-Namibia(34),
africa-Niger(35),
africa-Nigeria(36),
africa-Rwanda(37),
africa-SaoTome-And-Principe(38),
africa-Senegal(39),
africa-SierraLeone(40),
africa-Somalia(41),
africa-SouthAfrica(42),
africa-Spain-Mainland(43),
africa-Spain-CeutaMelilla(44),
africa-Spain-CanaryIslands(45),
africa-Sudan(46),
africa-Swaziland(47),
africa-Tanzania(48),
africa-Togo(49),
africa-Tunisia(50),
africa-Uganda(51),
africa-Western-Sahara(52),
africa-Zambia(53),
africa-Zimbabwe(54),
americas-Anguilla(55),
americas-Antigua-Barbuda(56),
americas-Argentina-EArgentina(57),
americas-Argentina-MostLocations(58),
americas-Argentina-Jujuy(59),
americas-Argentina-Catamarca(60),
americas-Argentina-Mendoza(61),
americas-Aruba(62),
americas-Bahamas(63),
americas-Barbados(64),
americas-Belize(65),
americas-Bolivia(66),
americas-Brazil-AtlanticIslands(67),
americas-Brazil-AmapaEPara(68),
americas-Brazil-NEBrazil(69),
americas-Brazil-Pernambuco(70),
americas-Brazil-Tocantins(71),
americas-Brazil-AlagoasSergipe(72),
americas-Brazil-SSEBrazil(73),
americas-Brazil-MatoGrossoDoSul(74),
americas-Brazil-WParaRondonia(75),
americas-Brazil-Roraima(76),
americas-Brazil-EAmazonas(77),
americas-Brazil-WAmazonas(78),
americas-Brazil-Acre(79),
americas-Canada-NewfoundlandIsland(80),
americas-Canada-AtlanTime-NovaScotia(81),
americas-Canada-AtlanTime-ELabrador(82),
americas-Canada-EastTime-OntarioMostlocation(83),
americas-Canada-EastTime-ThunderBay(84),
americas-Canada-EastStdTime-PangnirtungNunavut(85),
americas-Canada-EastStdTime-EastNunavut(86),
americas-Canada-EastStdTime-CenNunavut(87),
americas-Canada-CenTime-ManitobaWestOntario(88),
americas-Canada-CenTime-RainyRiver(89),
americas-Canada-CenTime-WestNunavut(90),
americas-Canada-CenStdTime-SaskatchewanMostlocation(91),
americas-Canada-CenStdTime-SaskatchewanMidwest(92),
americas-Canada-MountTime-AlbertaEastBritishColumbia(93),
americas-Canada-MountTime-CentralNorthwestTerritories(94),
americas-Canada-MountTime-WestNorthwestTerritories(95),
americas-Canada-MountStdTime-EastBritishColumbia(96),
americas-Canada-PacificTime-WestBritishColumbia(97),
americas-Canada-PacificTime-SouthYukon(98),
americas-Canada-PacificTime-NorthYukon(99),
americas-CaymanIslands(100),
americas-Chile-MostLocation(101),
americas-Chile-EasterIsland(102),
americas-Colombia(103),
americas-CostaRica(104),
americas-Cuba(105),
americas-Dominica(106),
americas-DominicanRepublic (107),
americas-Ecuador(108),
americas-ElSalvado(109),
americas-FrenchGuiana(110),
americas-Greenland-MostLocation(111),
americas-Greenland-EastCoastNorthScoresbysund(112),
americas-Greenland-ScoresbysundIttoqqortoormiit(113),
americas-Greenland-ThulePituffik(114),
americas-Grenada(115),
americas-Guadeloupe(116),
americas-Guatemala(117),
americas-Guyana(118),
americas-Haiti(119),