-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCONFIG-MIB
2842 lines (2532 loc) · 119 KB
/
CONFIG-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
-- HP Enterprise Switch Configuration MIB
CONFIG-MIB DEFINITIONS ::= BEGIN
IMPORTS
IpAddress
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212
TRAP-TYPE
FROM RFC-1215
dot1dStpPortState, dot1dStpPortDesignatedBridge,
dot1dStpPortDesignatedPort
FROM BRIDGE-MIB -- RFC-1493
DisplayString, RowStatus, MacAddress, TimeStamp
FROM SNMPv2-TC
HpSwitchPortType, ConfigStatus
FROM HP-ICF-TC
hpSwitch
FROM HP-ICF-OID
InetAddressType, InetAddress
FROM INET-ADDRESS-MIB;
-- type.
Timeout ::= INTEGER -- a STP timer in units of 1/100 seconds
-- Icf Switch Specific
hpConfig OBJECT IDENTIFIER ::= { hpSwitch 7 }
VlanID ::= INTEGER (1..65535)
-- ###########################################################
-- the hpConfig Group
-- This group contains switch configuration related variables.
-- ###########################################################
hpSwitchConfig OBJECT IDENTIFIER ::= { hpConfig 1 }
hpSwitchSystemConfig OBJECT IDENTIFIER ::= { hpSwitchConfig 1 }
hpSwitchAutoReboot OBJECT-TYPE
SYNTAX INTEGER {
yes(1),
no(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "If the value of this variable was set to yes(1),
booting will conditionally enable all application
modules-the spanning tree, IP and IPX etc.. Otherwise
every application module must be manually enabled
through Network Control Language Interpreter's ENABLE
command."
::= { hpSwitchSystemConfig 1 }
hpSwitchTimeZone OBJECT-TYPE
SYNTAX INTEGER (-720..840)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The number of minutes to the east of Greenwich Mean
Time(GMT). For a location west of GMT, use a negative
integer."
::= { hpSwitchSystemConfig 2 }
hpSwitchDaylightTimeRule OBJECT-TYPE
SYNTAX INTEGER {
none(1),
alaska(2),
canadaAndContinentalUS(3),
middleEuropeAndPortugal(4),
southernHemisphere(5),
westernEurop(6),
userDefined(7)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "The daylight savings time rule for use by the
Internet's RFC 868 Time protocol."
::= { hpSwitchSystemConfig 3 }
hpSwitchDaylightBeginningMonth OBJECT-TYPE
SYNTAX INTEGER (1..12)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The month that daylight saving time starts if
DaylightTimeRule is set to userDefined."
::= { hpSwitchSystemConfig 4 }
hpSwitchDaylightBeginningDay OBJECT-TYPE
SYNTAX INTEGER (1..31)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The day of the month that daylight saving time
starts if DaylightTimeRule is set to userDefined."
::= { hpSwitchSystemConfig 5 }
hpSwitchDaylightEndingMonth OBJECT-TYPE
SYNTAX INTEGER (1..12)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The month that daylight saving time ends if
DaylightTimeRule is set to userDefined."
::= { hpSwitchSystemConfig 6 }
hpSwitchDaylightEndingDay OBJECT-TYPE
SYNTAX INTEGER (1..31)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The day of the month that daylight saving time emds
if DaylightTimeRule is set to userDefined."
::= { hpSwitchSystemConfig 7 }
hpSwitchSystemConfigStatus OBJECT-TYPE
SYNTAX ConfigStatus
ACCESS read-only
STATUS mandatory
DESCRIPTION "The configuration status of this group of objects.
If one or more variables in this group were
reconfigurated since last reboot and required reboot
to take effect, the value of this variable will be
set to notInService."
::= { hpSwitchSystemConfig 8 }
hpSwitchSystemPortLEDMode OBJECT-TYPE
SYNTAX INTEGER {
link-activity(1),
link-only(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "The mode of the port LED can be either link/activity
(link for 3 seconds then activity thereafter) or
link-only."
::= { hpSwitchSystemConfig 9 }
hpSwitchControlUnknownIPMulticast OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "When enabled along with IGMP, any IP Multicast packets
that are not already controlled by IGMP will be
restricted to ports that have detected a multicast
router or ports configured to always forward IP
multicast. When set to disabled or when IGMP is
disabled, the unknown IP Multicast packets will be
flooded out all ports in the VLAN"
::= { hpSwitchSystemConfig 10 }
hpSwitchIgmpDelayedGroupFlushTimer OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION "This feature is disabled by default, which is indicated
by a timer value of 0 seconds. When IGMP is enabled and
the value of the Delayed Group Flush Timer is not zero,
traffic filters for any previously-joined IGMP groups
which no longer have active members will persist for
the number of seconds indicated by the timer. This has
the effect of dropping any additional unjoined traffic
for an empty group until the Delayed Group Flush Timer
expires, at which time the traffic filter is then
removed."
::= { hpSwitchSystemConfig 11 }
hpSwitchMaxFrameSize OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION "This is the value of the global jumbos max-frame-size
supported by the switch. The default value for this is
set to 9216, in order to make it compatible with
previous versions of software. This configuration does
not take a reboot to take effect."
::= { hpSwitchSystemConfig 12 }
hpSwitchIpMTU OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION "This is the value of the global jumbos IP MTU or L3 MTU
supported by the switch. The default value for this is
set to 9198, in order to make it compatible with
previous versions of software. This configuration does
not take a reboot to take effect."
::= { hpSwitchSystemConfig 13 }
hpSwitchConsoleConfig OBJECT IDENTIFIER ::= { hpSwitchConfig 2 }
hpSwitchTelnetAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
ACCESS read-write
STATUS obsolete
DESCRIPTION "The status of the console telnet operation."
::= { hpSwitchConsoleConfig 1 }
hpSwitchTerminalType OBJECT-TYPE
SYNTAX INTEGER {
vt100(2),
ansi(4)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Terminal type of the console device."
::= { hpSwitchConsoleConfig 2 }
hpSwitchConsoleRefRate OBJECT-TYPE
SYNTAX INTEGER {
refRate1(1),
refRate3(3),
refRate5(5),
refRate10(10),
refRate20(20),
refRate30(30),
refRate45(45),
refRate(60)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "The rate, in second per cycle, at which the display
of various switch measurements."
::= { hpSwitchConsoleConfig 3 }
hpSwitchDisplayedEvent OBJECT-TYPE
SYNTAX INTEGER {
none(1),
major(2),
notInfo(3),
all(4),
debug(5)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "The type of event messages are automatically
displayed on the console."
::= { hpSwitchConsoleConfig 4 }
hpSwitchConsoleConfigStatus OBJECT-TYPE
SYNTAX ConfigStatus
ACCESS read-only
STATUS mandatory
DESCRIPTION "The configuration status of this group of objects.
If one or more variables in this group were
reconfigurated since last reboot and required reboot
to take effect, the value of this variable will be
set to notInService."
::= { hpSwitchConsoleConfig 5 }
hpSwitchPortConfig OBJECT IDENTIFIER ::= { hpSwitchConfig 3 }
hpSwitchPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpSwitchPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A table that contains information about the current
port status in this device."
::= { hpSwitchPortConfig 1 }
hpSwitchPortEntry OBJECT-TYPE
SYNTAX HpSwitchPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Information about a specific port status in this
device."
INDEX { hpSwitchPortIndex }
::= { hpSwitchPortTable 1 }
HpSwitchPortEntry ::=
SEQUENCE {
hpSwitchPortIndex INTEGER,
hpSwitchPortType HpSwitchPortType,
hpSwitchPortDescr DisplayString,
hpSwitchPortAdminStatus INTEGER,
hpSwitchPortEtherMode INTEGER,
hpSwitchPortVgMode INTEGER,
hpSwitchPortLinkbeat INTEGER,
hpSwitchPortTrunkGroup INTEGER,
hpSwitchPortBcastLimit INTEGER,
hpSwitchPortFastEtherMode INTEGER,
hpSwitchPortFlowControl INTEGER,
-- hpSwitchPortBcastPktLimit INTEGER,
hpSwitchPortTrunkType INTEGER,
hpSwitchPortTrunkLACPStatus INTEGER,
hpSwitchPortMDIXStatus INTEGER,
hpSwitchPortAutoMDIX INTEGER
}
hpSwitchPortIndex OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION "The ifIndex value which uniquely identifies a row in
the Interfaces Table."
::= { hpSwitchPortEntry 1 }
hpSwitchPortType OBJECT-TYPE
SYNTAX HpSwitchPortType
ACCESS read-only
STATUS mandatory
DESCRIPTION "The type of port."
::= { hpSwitchPortEntry 2 }
hpSwitchPortDescr OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION "A textual string containing information about the
interface."
::= { hpSwitchPortEntry 3 }
hpSwitchPortAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
ACCESS read-write
STATUS obsolete
DESCRIPTION "The desired state of the interface. This variable is
similar to the ifAdminStatus but instead of keeping
the operational status, this variable maintain the
desired state in the configuration data base."
::= { hpSwitchPortEntry 4 }
hpSwitchPortEtherMode OBJECT-TYPE
SYNTAX INTEGER {
half-duplex(1),
full-duplex(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "The type of transmission on this port. This
variable is valid only if the hpSwitchPortType
was Ethernet."
::= { hpSwitchPortEntry 5 }
hpSwitchPortVgMode OBJECT-TYPE
SYNTAX INTEGER {
master(1),
endNode(2),
autoDetect(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "The type of transmission on this port. This variable
is valid only if the hpSwitchPortType was VG."
::= { hpSwitchPortEntry 6 }
hpSwitchPortLinkbeat OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "The linkbeat status of this port."
::= { hpSwitchPortEntry 7 }
hpSwitchPortTrunkGroup OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The trunk group this port belong to."
::= { hpSwitchPortEntry 8 }
hpSwitchPortBcastLimit OBJECT-TYPE
SYNTAX INTEGER (0..99)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The percentage of network bandwidth consumed by
broadcast traffic through this port. If the value of
this variable is 0, there will be no broadcast limit."
::= { hpSwitchPortEntry 9 }
hpSwitchPortFastEtherMode OBJECT-TYPE
SYNTAX INTEGER {
half-duplex-10Mbits(1),
half-duplex-100Mbits(2),
full-duplex-10Mbits(3),
full-duplex-100Mbits(4),
auto-neg(5),
full-duplex-1000Mbits(6),
auto-10Mbits(7),
auto-100Mbits(8),
auto-1000Mbits(9),
full-duplex-10Gbits(10),
auto-10-100Mbits(11)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "The type of transmission on this port. This variable
is valid only if the hpSwitchPortType was Fast
Ethernet."
::= { hpSwitchPortEntry 10 }
hpSwitchPortFlowControl OBJECT-TYPE
SYNTAX INTEGER {
disable(1),
enable(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "The Flow Control of this port."
::= { hpSwitchPortEntry 11}
-- hpSwitchPortBcastPktLimit OBJECT-TYPE
-- SYNTAX INTEGER (0..1500000)
-- ACCESS read-write
-- STATUS mandatory
-- DESCRIPTION "Network bandwidth in packets per second consumed
-- by broadcast traffic through this port. If the value
-- of this variable is 0, there will be no broadcast
-- limit."
-- ::= { hpSwitchPortEntry 12 }
hpSwitchPortTrunkType OBJECT-TYPE
SYNTAX INTEGER {
trunk(1),
fecAuto(2),
saTrunk(3),
lacpTrk(4),
none(5)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Used in conjunction with hpSwitchPortTrunkGroup to
determine what type of trunk and which group it
belongs to. If hpSwitchPortTrunkGroup is set to 0,
trunking is disabled on the port and this variable
becomes a 'don't care'"
::= { hpSwitchPortEntry 13 }
hpSwitchPortTrunkLACPStatus OBJECT-TYPE
SYNTAX INTEGER {
disabled(1),
active(2),
passive(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Used in conjunction with hpSwitchPortTrunkType.
When the trunk is a LACP trunk, this variable defines
its administrative status"
::= { hpSwitchPortEntry 14 }
hpSwitchPortMDIXStatus OBJECT-TYPE
SYNTAX INTEGER {
not-applicable(1),
mdi(2),
mdix(3),
automdix(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "Shows the MDI/MDIX setting for an RJ-45 port.
Returns a value of 'not-applicable' for all
ports except RJ-45 ports."
::= { hpSwitchPortEntry 15 }
hpSwitchPortAutoMDIX OBJECT-TYPE
SYNTAX INTEGER {
not-applicable(1),
mdi(2),
mdix(3),
automdix(4)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "Sets the MDI/MDIX value for an RJ-45 port.
Negates need for crossover cables. 'automdix',
'mdi', or 'mdix' may be set when the port
configuration is set to any auto-negotiation mode,
for example 'auto' or 'auto-100', or to any of the
fixed-configuration modes, for example '100-full'.
The MDI/MDIX value is maintained across port
configuration mode changes."
::= { hpSwitchPortEntry 16 }
hpSwitchPortConfigStatus OBJECT-TYPE
SYNTAX ConfigStatus
ACCESS read-only
STATUS mandatory
DESCRIPTION "The configuration status of this group of objects. If
one or more variables in this group were
reconfigured since last reboot and required reboot to
take effect, the value of this variable will be set to
notInService."
::= { hpSwitchPortConfig 2 }
hpSwitchIpxConfig OBJECT IDENTIFIER ::= { hpSwitchConfig 4 }
hpSwitchIpxConfigStatus OBJECT-TYPE
SYNTAX ConfigStatus
ACCESS read-only
STATUS mandatory
DESCRIPTION "The status of the IPX configuration table."
::= { hpSwitchIpxConfig 2 }
hpSwitchIpConfig OBJECT IDENTIFIER ::= { hpSwitchConfig 5 }
hpSwitchIpTimepAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
manual(1),
disable(2),
dhcp(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "The operational status of the Time protocol."
::= { hpSwitchIpConfig 1 }
hpSwitchIpTimepServerAddr OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS deprecated
DESCRIPTION "### deprecated ### The IP address of the Time server."
::= { hpSwitchIpConfig 2 }
hpSwitchIpTimepPollInterval OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The client poll interval of the Time server in
minutes."
::= { hpSwitchIpConfig 3 }
hpSwitchIpConfigStatus OBJECT-TYPE
SYNTAX ConfigStatus
ACCESS read-only
STATUS obsolete
DESCRIPTION "The configuration status of the Timep and IP
related objects."
::= { hpSwitchIpConfig 5 }
hpSwitchIpTftpMode OBJECT-TYPE
SYNTAX INTEGER {
secure(1),
unsecure(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "The operational mode of the Tftp protocol."
::= { hpSwitchIpConfig 6 }
hpSwitchIpTimepInetServerAddrType OBJECT-TYPE
SYNTAX InetAddressType
ACCESS read-write
STATUS mandatory
DESCRIPTION "The IP address type of the Time server."
::= { hpSwitchIpConfig 7 }
hpSwitchIpTimepInetServerAddr OBJECT-TYPE
SYNTAX InetAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION "The IP address (of the Time server)to which this entry's
addressing information pertains.
hpSwitchIpTimepInetServerAddr is always interpreted within
the context of hpSwitchIpTimepInetServerAddrType."
::= { hpSwitchIpConfig 8 }
hpSwitchSerialLinkConfig OBJECT IDENTIFIER ::= { hpSwitchConfig 6 }
hpSwitchSLinkBaudRate OBJECT-TYPE
SYNTAX INTEGER {
speedSense(1),
baudRate300(2),
baudRate600(3),
baudRate1200(4),
baudRate2400(5),
baudRate4800(6),
baudRate9600(7),
baudRate19200(8),
baudRate38400(9),
baudRate57600(10),
baudRate115200(11)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "The rate of data transfer between the console and
the node. baudRate1 is speed sense."
::= { hpSwitchSerialLinkConfig 1 }
hpSwitchSLinkFlowCtrl OBJECT-TYPE
SYNTAX INTEGER {
none(1),
xonXoff(2),
robustXonXoff(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "The flow-control mechanism between the console and
the switch."
::= { hpSwitchSerialLinkConfig 2 }
hpSwitchSLinkConnInactTime OBJECT-TYPE
SYNTAX INTEGER (0..120)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The number of minutes to wait after no character was
input to log out the console. Valid values are 0 (not
to log out of the console for inactivity) through 120
(two hours)."
::= { hpSwitchSerialLinkConfig 3 }
hpSwitchSLinkModemConnTime OBJECT-TYPE
SYNTAX INTEGER (0..300)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The number of seconds to wait for data mode and
clear to send and receiver ready signals after
asserting request to send and terminal ready signals.
Valid values are 0 (switch will wait forever for the
modem) through 300 (5 minutes)."
::= { hpSwitchSerialLinkConfig 4 }
hpSwitchSLinkModemLostRecvTime OBJECT-TYPE
SYNTAX INTEGER (0..5000)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The number of milliseconds the receiver ready signal
is allowed to drop before the switch will disconnect
the modem. Valid values are 0 (the switch will wait
forever) through 5000 (5 seconds)."
::= { hpSwitchSerialLinkConfig 5 }
hpSwitchSLinkModemDisConnTime OBJECT-TYPE
SYNTAX INTEGER (0..60)
ACCESS read-write
STATUS mandatory
DESCRIPTION "The number of seconds to wait after the modem is
disconnected before allowing the modem to be
reconnected. Valid values are 0 (allow a connection
as soon as possible, the default) through 60 (1
minute)."
::= { hpSwitchSerialLinkConfig 6 }
hpSwitchSLinkParity OBJECT-TYPE
SYNTAX INTEGER {
parityNone(1),
parityOdd(2),
parityEven(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "The type of parity to use between the console and
the node."
::= { hpSwitchSerialLinkConfig 7 }
hpSwitchSLinkCharBits OBJECT-TYPE
SYNTAX INTEGER {
char8Bits(1),
char7Bits(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "The number of bits per character to use between
the console and the node."
::= { hpSwitchSerialLinkConfig 8 }
hpSwitchSLinkStopBits OBJECT-TYPE
SYNTAX INTEGER {
stop1Bits(1),
stop1andHalfBits(2),
stop2Bits(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION "The number of stop bots to use when communicating
between the console and the node."
::= { hpSwitchSerialLinkConfig 9 }
hpSwitchSLinkConfigStatus OBJECT-TYPE
SYNTAX ConfigStatus
ACCESS read-only
STATUS mandatory
DESCRIPTION "The configuration status of this group of objects.
If one or more variables in this group were
reconfigured since last reboot and required reboot
to take effect, the value of this variable will be
set to notInService."
::= { hpSwitchSerialLinkConfig 10 }
hpSwitchFilterConfig OBJECT IDENTIFIER ::= { hpSwitchConfig 8 }
-- A sample of the traffic filter
-- type MacAddr ProType SrcPort PortMask
-- unicast MAC address X port # Bit Mask of ports
-- multicast MAC address X X Bit Mask of ports
-- port X X port # Bit Mask of ports
-- level 3 X protocol X Bit Mask of ports
hpSwitchFilterConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpSwitchFilterConfigEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A table that contains information about the
traffic filter configuration in this device."
::= { hpSwitchFilterConfig 1 }
hpSwitchFilterConfigEntry OBJECT-TYPE
SYNTAX HpSwitchFilterConfigEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Information about a traffic filter configuration
in this device."
INDEX { hpSwitchFilterIndex }
::= { hpSwitchFilterConfigTable 1 }
HpSwitchFilterConfigEntry ::=
SEQUENCE {
hpSwitchFilterIndex INTEGER,
hpSwitchFilterType INTEGER,
hpSwitchFilterSrcPort INTEGER,
hpSwitchFilterMacAddr MacAddress,
hpSwitchFilterProtocolType INTEGER,
hpSwitchFilterPortMask OCTET STRING,
hpSwitchFilterEntryStatus RowStatus
}
hpSwitchFilterIndex OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION "An index that uniquely identifies a traffic filter
for which this entry contains information."
::= { hpSwitchFilterConfigEntry 1 }
hpSwitchFilterType OBJECT-TYPE
SYNTAX INTEGER {
multicast(1),
level-3(2),
port(3),
unicast(4)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "The type of filter."
::= { hpSwitchFilterConfigEntry 2 }
hpSwitchFilterSrcPort OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION "This variable is required when a port filter or
unicast filter was configurated. It will be ignored
otherwise."
::= { hpSwitchFilterConfigEntry 3 }
hpSwitchFilterMacAddr OBJECT-TYPE
SYNTAX MacAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION "This variable is valid only if a unicast or
multicast filter was defined. It will be ignored
otherwise."
::= { hpSwitchFilterConfigEntry 4 }
hpSwitchFilterProtocolType OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION "This variable is valid only if a level-3 filter
was defined. It will be ignored otherwise. This
variable will contain either a etherType (DIX
Ethernet) or SAP(IEEE 802) value of the level-3
protocol."
::= { hpSwitchFilterConfigEntry 5 }
hpSwitchFilterPortMask OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-write
STATUS mandatory
DESCRIPTION "This variable specifies a group of ports whose
traffic will be filtered. Each octet within the value
of this object specifies a set of eight ports, with
the first octet specifying ports 1 through 8, the
second octet specifying ports 9 through 16, etc.
Within each octet, the most significant bit represents
the lowest numbered port, and the least significant bit
represents the highest numbered port. Thus, each port
of the switch is represented by a single bit within
the value of this object."
::= { hpSwitchFilterConfigEntry 6 }
hpSwitchFilterEntryStatus OBJECT-TYPE
SYNTAX RowStatus
ACCESS read-write
STATUS mandatory
DESCRIPTION "The status of a filter entry."
::= { hpSwitchFilterConfigEntry 7 }
hpSwitchProbeConfig OBJECT IDENTIFIER ::= { hpSwitchConfig 9 }
hpSwitchProbeType OBJECT-TYPE
SYNTAX INTEGER {
ports(1),
vlan(2)
}
ACCESS read-write
STATUS obsolete
DESCRIPTION "If the value of this variable is equal to 1, the
probe will monitor those ports specified by
hpSwitchProbedPortMask, otherwise all of the port
belong to the virtual LAN specified by
hpSwitchProbedVlanId will be monitored."
::= { hpSwitchProbeConfig 1 }
hpSwitchProbedVlanId OBJECT-TYPE
SYNTAX VlanID
ACCESS read-write
STATUS obsolete
DESCRIPTION "The probed virtual LAN."
::= { hpSwitchProbeConfig 2 }
hpSwitchProbePort OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS obsolete
DESCRIPTION "The port that every packet passes through those
probed ports will be copied to."
::= { hpSwitchProbeConfig 3 }
hpSwitchProbeAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
ACCESS read-write
STATUS obsolete
DESCRIPTION "The operational status of the probing function"
::= { hpSwitchProbeConfig 4 }
hpSwitchProbedPortMask OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-write
STATUS obsolete
DESCRIPTION "This variable specifies a group of ports which will
be probed. Each octet within the value of this
object specifies a set of eight ports, with the
first octet specifying ports 1 through 8, the second
octet specifying ports 9 through 16, etc. Within each
octet, the most significant bit represents the lowest
numbered port, and the least significant bit
represents the highest numbered port. Thus, each port
of the switch is represented by a single bit within
the value of this object."
::= { hpSwitchProbeConfig 5 }
-- The FDDI IP Fragmention Configuration group
hpSwitchFddiIpFragConfig OBJECT IDENTIFIER ::= { hpSwitchConfig 11 }
-- The FDDI IP Fragmention Configuration Table
hpSwitchFddiIpFragConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpSwitchFddiIpFragConfigEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A list of IP fragmentation configuration
parameters for the FDDI cards in the switch."
::= { hpSwitchFddiIpFragConfig 1 }
hpSwitchFddiIpFragConfigEntry OBJECT-TYPE
SYNTAX HpSwitchFddiIpFragConfigEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "An Fddi IP fragmentation entry which is
containing configurable options for the FDDI
cards in the switch."
INDEX { hpSwitchFddiIpFragConfigIndex }
::= { hpSwitchFddiIpFragConfigTable 1 }
HpSwitchFddiIpFragConfigEntry ::=
SEQUENCE {
hpSwitchFddiIpFragConfigIndex INTEGER,
hpSwitchFddiIpFragConfigStatus INTEGER
}
hpSwitchFddiIpFragConfigIndex OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION "A unique value for each FDDI Card.
The value for each FDDI card must remain constant
at least from one re-initialization of the entity's
network management system to the next
re-initialization."
::= { hpSwitchFddiIpFragConfigEntry 1 }
hpSwitchFddiIpFragConfigStatus OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "The operational status of FDDI IP fragmentation
for each FDDI card.
enable(1): FDDI card will fragment all packets which
are bigger then the Ethernet packet size
limitation, 1518 Bytes.
disable(2): FDDI card will drop all packets which
are bigger then the Ethernet packet size
limitation, 1518 Bytes."
::= { hpSwitchFddiIpFragConfigEntry 2 }
hpSwitchABCConfig OBJECT IDENTIFIER ::= {hpSwitchConfig 12 }
hpSwitchABCConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpSwitchABCConfigEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A list of Automatic Broadcast Control (ABC
disable/enable entries for each VLAN on the switch."
::= { hpSwitchABCConfig 1 }
hpSwitchABCConfigEntry OBJECT-TYPE
SYNTAX HpSwitchABCConfigEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Contains the ABC status for each VLAN on the switch,
including IP RIP control and IPX RIP/SAP control."
INDEX { hpSwitchABCConfigVlan }
::= { hpSwitchABCConfigTable 1 }
HpSwitchABCConfigEntry ::=
SEQUENCE {
hpSwitchABCConfigVlan VlanID,
hpSwitchABCConfigControl INTEGER,
hpSwitchABCConfigIpRipControl INTEGER,
hpSwitchABCConfigIpxRipSapControl INTEGER,
hpSwitchABCConfigVlanBcastLimit INTEGER,
-- hpSwitchABCConfigVlanBcastPktLimit INTEGER,
hpSwitchABCConfigAutoGatewayConfig INTEGER
}
hpSwitchABCConfigVlan OBJECT-TYPE
SYNTAX VlanID
ACCESS read-only
STATUS mandatory
DESCRIPTION "The user is able to enable/disable ABC on a per VLAN
basis, so the VLAN serves as an index into the ABC
configuration table."
::= { hpSwitchABCConfigEntry 1 }
hpSwitchABCConfigControl OBJECT-TYPE
SYNTAX INTEGER {
ipipx(1),
ip(2),
ipx(3),
disable(4)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "ABC control is either IP&IPX or IP or IPX or disabled
for each VLAN on the switch."
::= { hpSwitchABCConfigEntry 2 }
hpSwitchABCConfigIpRipControl OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION "IP RIP control. If this feature is enabled then IP
RIP packets will only be forwarded on ports, within
its VLAN domain, that have heard RIPs before. If
this feature is disabled then IP RIP packets seen by
a given port will be forwarded to all ports within its
VLAN domain."
::= { hpSwitchABCConfigEntry 3 }
hpSwitchABCConfigIpxRipSapControl OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
ACCESS read-write
STATUS mandatory