-
Notifications
You must be signed in to change notification settings - Fork 0
/
hpSwitchBasicConfig.mib
1229 lines (1087 loc) · 48.5 KB
/
hpSwitchBasicConfig.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-SWITCH-BASIC-CONFIG-MIB DEFINITIONS ::= BEGIN
IMPORTS
OBJECT-TYPE, MODULE-IDENTITY, Integer32, IpAddress,
Unsigned32,NOTIFICATION-TYPE, Counter32
FROM SNMPv2-SMI
RowStatus, DisplayString, DateAndTime, TruthValue
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
FROM SNMPv2-CONF
hpSwitchConfig, hpSwitchFilterConfig, hpSwitchIgmpConfig
FROM CONFIG-MIB
PortList
FROM Q-BRIDGE-MIB
portCopyEntry
FROM SMON-MIB
entPhysicalIndex
FROM ENTITY-MIB
InetAddressType, InetAddress
FROM INET-ADDRESS-MIB
InterfaceIndex
FROM IF-MIB;
hpSwitchBasicConfigMIB MODULE-IDENTITY
LAST-UPDATED "201403250000Z" -- March 23, 2014
ORGANIZATION "HP Networking"
CONTACT-INFO "Hewlett Packard Company
8000 Foothills Blvd.
Roseville, CA 95747"
DESCRIPTION "This MIB module describes objects for basic
switch configuration."
REVISION "201403250000Z" -- March 23, 2014
DESCRIPTION "Added hpSwitchAclIpv4DenyFragmentedTcpHeader,
hpSwitchAclIpv6DenyNonClassifiableL4Header."
REVISION "201307220000Z" -- July 22, 2013
DESCRIPTION "Added hpSwitchControlPlaneProtectionAdminStatus,
hpSwitchBasicConfigCompliance8,
hpSwitchBasicConfigGroup4."
REVISION "201305220000Z" -- May 22, 2013
DESCRIPTION "Added hpSwitchChassisLocateWhen."
REVISION "201302160000Z" -- February 16, 2013
DESCRIPTION "Added hpSwitchModuleConfigModRemove."
REVISION "201202030000Z" -- February 03, 2012
DESCRIPTION "Added hpSwitchCdpPreStdVoiceTable,
modified hpSwitchCdpRunMode."
REVISION "201109080000Z" -- September 08, 2011
DESCRIPTION "Added hpSwitchCdpRunMode."
REVISION "201106152107Z" -- June 15, 2011
DESCRIPTION "Added hpSwitchSecureModeLevel."
REVISION "201008050000Z" -- Aug 05, 2010
DESCRIPTION "Added hpSwitchRunningCfgChgObjects,
hpSwitchRunningCfgChgEventTable,
hpSwitchRunningConfigChange NOTIFICATION."
REVISION "201006280000Z" -- June 28, 2010
DESCRIPTION "Added hpSwitchImplicitConfigSave."
REVISION "201004140000Z" -- Apr 14, 2010
DESCRIPTION "Added hpSwitchStartupConfigSourceIPAddrType,
modified hpSwitchStartupConfigSourceIPAddr"
REVISION "201002170000Z" -- Feb 18, 2010
DESCRIPTION "Added hpSwitchStartupConfigSeqNum,
hpSwitchStartupConfigNotifyEnable,
hpSwitchNotificationObjects"
REVISION "200909100000Z" -- Sept 10, 2009
DESCRIPTION "Added hpSwitchIgmpProxyDomainConfigTable"
REVISION "200908180000Z" -- August 18, 2009
DESCRIPTION "Added hpSwitchDefaultLogon."
REVISION "200907300000Z" -- Jul 30, 2009
DESCRIPTION "Initial revision."
::= { hpSwitchConfig 29 }
hpSwitchBasicConfigObjects OBJECT IDENTIFIER ::= { hpSwitchBasicConfigMIB 1 }
hpSwitchBasicConfigConformance OBJECT IDENTIFIER ::= { hpSwitchBasicConfigMIB 2 }
hpSwitchACLConfig OBJECT IDENTIFIER ::= { hpSwitchBasicConfigObjects 3}
hpSwitchModules OBJECT IDENTIFIER ::= { hpSwitchBasicConfigObjects 7 }
hpSwitchRunningCfgChgObjects OBJECT IDENTIFIER ::= { hpSwitchBasicConfigObjects 12 }
hpSwitchCdpObjects OBJECT IDENTIFIER ::= { hpSwitchBasicConfigObjects 15 }
hpSwitchSaveConfig OBJECT-TYPE
SYNTAX INTEGER {
noConfigSave(1),
saveConfig(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "When this object is set to to 'saveConfig' it
results in saving the running configuration of the
switch to flash. The saved configuration becomes
the boot-up configuration of the switch when it boots
next time. When read, this object always returns
'noConfigSave'."
::= { hpSwitchBasicConfigObjects 1 }
hpSwitchAliasTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpSwitchAliasEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of alias configurations for CLI commands.
This table contains information about name of the
alias and the corresponding CLI command."
::= { hpSwitchBasicConfigObjects 2 }
hpSwitchAliasEntry OBJECT-TYPE
SYNTAX HpSwitchAliasEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A row in the alias config table."
INDEX { hpSwitchAliasName }
::= { hpSwitchAliasTable 1 }
HpSwitchAliasEntry ::=
SEQUENCE {
hpSwitchAliasName DisplayString,
hpSwitchAliasCommand OCTET STRING,
hpSwitchAliasConfigRowStatus RowStatus
}
hpSwitchAliasName OBJECT-TYPE
SYNTAX DisplayString (SIZE ( 0 .. 100))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Name of the alias which uniquely identifies
alias configuration table. 'hpSwitchAliasName' can be
used in place of 'hpSwitchAliasCommand` on the CLI.
Maximum allowed length for alias name is 32 characters."
::= { hpSwitchAliasEntry 1 }
hpSwitchAliasCommand OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..255))
MAX-ACCESS read-create
STATUS current
DESCRIPTION "CLI command for which 'hpSwitchAliasName' can be
used in CLI. Maximum allowed length for alias command
is 255 characters. This object is required to create
an entry in the table."
::= { hpSwitchAliasEntry 2 }
hpSwitchAliasConfigRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Controls creation/deletion of entries
in alias table. Row cant be created when
'hpSwitchAliasCommand' is of zero length.
Row transition to 'notReady' or
'notInService' states are not allowed."
::= { hpSwitchAliasEntry 3 }
-- MIB objects for source-port filter configurations
hpicfBridgeFilterConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfBridgeFilterConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table that contains information about the
source port traffic filter configuration in this
device."
::= { hpSwitchFilterConfig 2 }
hpicfBridgeFilterConfigEntry OBJECT-TYPE
SYNTAX HpicfBridgeFilterConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Information about a source port traffic filter
configuration in this device."
INDEX { hpicfBridgeFilterName}
::= { hpicfBridgeFilterConfigTable 1 }
HpicfBridgeFilterConfigEntry ::=
SEQUENCE {
hpicfBridgeFilterName DisplayString,
hpicfBridgeFilterDropPortMask PortList,
hpicfBridgeFilterEntryStatus RowStatus
}
hpicfBridgeFilterName OBJECT-TYPE
SYNTAX DisplayString (SIZE ( 0 .. 100))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This variable specifies the name of the
filter. Filter name can be upto 20 characters.
Filter name cannot contain tilde (~).
A filter name can not be same as port-name."
::= { hpicfBridgeFilterConfigEntry 1}
hpicfBridgeFilterDropPortMask OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This variable specifies a group of ports to which
forwarding of filtered traffic is not permitted."
::= { hpicfBridgeFilterConfigEntry 2 }
hpicfBridgeFilterEntryStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Row can be deleted only when no port are mapped to
this filter in 'hpSwitchFilterConfigEntry' table."
::= { hpicfBridgeFilterConfigEntry 3 }
hpSwitchAclLogtimeoutConfig OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The time in seconds between ACL logging summary messages.
Some devices may limit the range to 30..300."
::= { hpSwitchACLConfig 1 }
hpSwitchAclIpv4DenyFragmentedTcpHeader OBJECT-TYPE
SYNTAX INTEGER {
enable (1),
disable (2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Configure the device to drop all IPv4 packets containing a
fragmented TCP header."
DEFVAL { disable }
::= { hpSwitchACLConfig 2 }
hpSwitchAclIpv6DenyNonClassifiableL4Header OBJECT-TYPE
SYNTAX INTEGER {
enable (1),
disable (2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Configure the device to drop all IPv6 packets for which the
Layer 4 header cannot be processed by ACL hardware."
DEFVAL { disable }
::= { hpSwitchACLConfig 3 }
hpSwitchIgmpProxyDomainConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpSwitchIgmpProxyDomainConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table that contains information about the IGMP
proxy domain configurations on this switch."
::= { hpSwitchIgmpConfig 5 }
hpSwitchIgmpProxyDomainConfigEntry OBJECT-TYPE
SYNTAX HpSwitchIgmpProxyDomainConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The information associated with each IGMP
proxy domain configuration."
INDEX { hpSwitchIgmpProxyDomainId }
::= { hpSwitchIgmpProxyDomainConfigTable 1 }
HpSwitchIgmpProxyDomainConfigEntry ::=
SEQUENCE {
hpSwitchIgmpProxyDomainId Integer32,
hpSwitchIgmpProxyDomainStatus RowStatus,
hpSwitchIgmpProxyDomainName DisplayString,
hpSwitchIgmpProxyDomainIp IpAddress,
hpSwitchIgmpProxyMcastLowerIp IpAddress,
hpSwitchIgmpProxyMcastUpperIp IpAddress
}
hpSwitchIgmpProxyDomainId OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The domain id that uniquely identifies a row
in the IGMP proxy domain configuration table."
::= { hpSwitchIgmpProxyDomainConfigEntry 1 }
hpSwitchIgmpProxyDomainStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The status of a IGMP proxy domain configuration
entry. Allows creation/deletion of the
IGMP proxy domain entry. Row cannot be deleted if
the IGMP proxy domain is associated with a VLAN."
::= { hpSwitchIgmpProxyDomainConfigEntry 2 }
hpSwitchIgmpProxyDomainName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The IGMP proxy domain name."
::= { hpSwitchIgmpProxyDomainConfigEntry 3 }
hpSwitchIgmpProxyDomainIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The IGMP proxy domain IP."
::= { hpSwitchIgmpProxyDomainConfigEntry 4 }
hpSwitchIgmpProxyMcastLowerIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The IGMP proxy domain's lower multicast IP."
::= { hpSwitchIgmpProxyDomainConfigEntry 5 }
hpSwitchIgmpProxyMcastUpperIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The IGMP proxy domain's upper multicast IP."
::= { hpSwitchIgmpProxyDomainConfigEntry 6 }
hpicfPortCopyNameTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfPortCopyNameEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table contains Mirroring Destination name String."
::= { hpSwitchBasicConfigObjects 4 }
hpicfPortCopyNameEntry OBJECT-TYPE
SYNTAX HpicfPortCopyNameEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the hpicfPortCopyNameEntry contains
Mirroring Destination name string."
AUGMENTS { portCopyEntry }
::= { hpicfPortCopyNameTable 1 }
HpicfPortCopyNameEntry ::=
SEQUENCE {
hpicfPortCopyName DisplayString
}
hpicfPortCopyName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Mirroring Destination name string."
::= { hpicfPortCopyNameEntry 1 }
hpSwitchDefaultLogon OBJECT-TYPE
SYNTAX INTEGER {
cli(0),
menu(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This indicates whether switch should boot to CLI (default)
or menu. The changes takes effect after rebooting the
switch."
::= { hpSwitchBasicConfigObjects 5 }
hpSwitchChassisLocateTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpSwitchChassisLocateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table is contains information about the current
state of all the chassis locate LEDs."
::= { hpSwitchBasicConfigObjects 6 }
hpSwitchChassisLocateEntry OBJECT-TYPE
SYNTAX HpSwitchChassisLocateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Contains information about the current state of a
particular chassis LED."
INDEX { entPhysicalIndex }
::= { hpSwitchChassisLocateTable 1 }
HpSwitchChassisLocateEntry ::=
SEQUENCE {
hpSwitchChassisLocateState INTEGER,
hpSwitchChassisLocateDuration Integer32,
hpSwitchChassisLocateWhen INTEGER
}
hpSwitchChassisLocateState OBJECT-TYPE
SYNTAX INTEGER {
off(1),
on(2),
blink(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The current state of the chassis locate LED."
DEFVAL { off }
::= { hpSwitchChassisLocateEntry 1 }
hpSwitchChassisLocateDuration OBJECT-TYPE
SYNTAX Integer32
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The duration for which the current LED state is
to be maintained. The minimum value is 60 and the
maximum value is 86400. The 'off' state does not
require a duration. A get request for the duration
when the state is 'off' will return the default
duration value."
DEFVAL { 1800 }
::= { hpSwitchChassisLocateEntry 2 }
hpSwitchChassisLocateWhen OBJECT-TYPE
SYNTAX INTEGER {
now(1),
startup(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "When to apply the values specified by
hpSwitchChassisLocateState and hpSwitchChassisLocateDuration.
If not specified, the default is now."
DEFVAL { now }
::= { hpSwitchChassisLocateEntry 3 }
hpSwitchModuleInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpSwitchModuleInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table describing all modules
that can be supported by the device."
::= { hpSwitchModules 1 }
hpSwitchModuleInfoEntry OBJECT-TYPE
SYNTAX HpSwitchModuleInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The information regarding the module type
in the switch. This table lists all the
supported module types. The supported module type
will have the equivalent module name."
INDEX { hpSwitchModuleInfoModId }
::= { hpSwitchModuleInfoTable 1 }
HpSwitchModuleInfoEntry ::= SEQUENCE {
hpSwitchModuleInfoModId
Integer32,
hpSwitchModuleInfoModType
DisplayString
}
hpSwitchModuleInfoModId OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The module Id. This is a sequence number"
::= { hpSwitchModuleInfoEntry 1 }
hpSwitchModuleInfoModType OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The module type in the switch.
This is the Jnumber string that is
supported on the device."
::= { hpSwitchModuleInfoEntry 2 }
hpSwitchModuleConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpSwitchModuleConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table to configure the module
type for a specific module."
::= { hpSwitchModules 2 }
hpSwitchModuleConfigEntry OBJECT-TYPE
SYNTAX HpSwitchModuleConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This entry is used to configure the module type
for a specific module. Configuration of module
type is not allowed if it is already configured."
INDEX { entPhysicalIndex }
::= { hpSwitchModuleConfigTable 1 }
HpSwitchModuleConfigEntry ::= SEQUENCE {
hpSwitchModuleConfigModType
DisplayString,
hpSwitchModuleConfigModName
DisplayString,
hpSwitchModuleConfigModRemove
TruthValue
}
hpSwitchModuleConfigModType OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..255))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The module type in the switch.
This is the Jnumber supported
on the device. The supported
types are listed in hpSwitchModuleInfoTable."
::= { hpSwitchModuleConfigEntry 1 }
hpSwitchModuleConfigModName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The module name in the switch."
::= { hpSwitchModuleConfigEntry 2 }
hpSwitchModuleConfigModRemove OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This MIB object is used to remove the slot
configuration. Setting this object to true (1)
will remove the module configuration.
Default value is false (2).
This object should always returns false (2).
The module can be configured by setting the
hpSwitchModuleConfigModType to a supported
Jnumber on the device."
::= { hpSwitchModuleConfigEntry 3 }
hpSwitchWebSupportUrl OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..255))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "URL for the web interface support page."
::= { hpSwitchBasicConfigObjects 8 }
hpSwitchStartupConfigSeqNum OBJECT-TYPE
SYNTAX Unsigned32 (0..2147483647)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This is the value of the global startup-config
sequential number. Every change to startup-config
increments the value by 1. Must be stored in
non-volatile memory to be carried over the system boot."
DEFVAL { 0 }
::= { hpSwitchBasicConfigObjects 9 }
hpSwitchStartupConfigNotifyEnable OBJECT-TYPE
SYNTAX INTEGER
{
enable (1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Indicates whether the SNMP entity is permitted
to generate hpSwitchStartupConfigChange notifications.
Default is disabled."
DEFVAL { disable }
::= { hpSwitchBasicConfigObjects 10 }
hpSwitchImplicitConfigSave OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This object is to enable/disable the implicit
write-memory (saving the running-config to the
flash) done after every successful SNMP
set operation.
When set to 'enable', config changes are written to
the flash which results in slow performance for
these set operations.
To get faster processing while doing large number
of continuous SNMP set operations, this object can be
set to 'disable'; And,once the SNMP set operations are
done, 'hpSwitchSaveConfig' MIB object can be used
to save the running-config to the flash.
This object will not be saved across a re-boot,
and will always be set to 'enable' at boot.
It is advisable to set this MIB object to
'disable' only when there are a lot of
continuous SNMP set operations e.g. a script
executing a large number of SNMP set operations."
DEFVAL { enable }
::= { hpSwitchBasicConfigObjects 11}
hpSwitchSecureModeLevel OBJECT-TYPE
SYNTAX INTEGER {
error(0),
standard(1),
enhanced(16)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Indicates current Secure-Mode Level of switch
standard : switch operates with standard security
capabilities.
enhanced : switch operates with enhanced security
capabilities for configurations to satisfy FIPS
140-2 requirements.The default level is standard."
DEFVAL { standard }
::= { hpSwitchBasicConfigObjects 13 }
hpSwitchNotificationObjects OBJECT IDENTIFIER
::= { hpSwitchBasicConfigObjects 0 }
hpSwitchStartupConfigSource OBJECT-TYPE
SYNTAX INTEGER {
unknown (0),
viaCli (1),
viaSnmp (2),
viaWebUI (3)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION "Indicate the method of change to startup config
was initiated."
::= { hpSwitchNotificationObjects 1 }
hpSwitchStartupConfigSourceIPAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION "Indicates the source address type of network agent
which made a change. Not valid (set to zero)
if change is made via CLI on system console."
::= { hpSwitchNotificationObjects 2 }
hpSwitchStartupConfigSourceIPAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION "Indicates the source address of network agent
which made a change. Not valid (set to zero)
if change is made via CLI on system console."
::= { hpSwitchNotificationObjects 3 }
hpSwitchStartupConfigSourceUsername OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION "Indicates the username of CLI user making the
change to startup config. Zero-string if username
is not set or change is made via SNMP"
::= { hpSwitchNotificationObjects 4 }
hpSwitchStartupConfigThrottled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION "Indicates if notification throttle was activated
and one or more notifications were dropped."
DEFVAL { false }
::= { hpSwitchNotificationObjects 5 }
hpSwitchStartupConfigChange NOTIFICATION-TYPE
OBJECTS
{
hpSwitchStartupConfigSeqNum,
hpSwitchStartupConfigSource,
hpSwitchStartupConfigSourceIPAddrType,
hpSwitchStartupConfigSourceIPAddr,
hpSwitchStartupConfigSourceUsername,
hpSwitchStartupConfigThrottled
}
STATUS current
DESCRIPTION "The hpSwitchStartupConfigChange
notification signifies that switch's startup
config was modified by user/manager.
Notifications might be buffered on the system to
be sent after throttle delay. In some cases,
notifications will be dropped. At such event
the next transmitted notification will set
flag hpSwitchStartupConfigThrottled"
::= { hpSwitchNotificationObjects 6 }
hpSwitchRunningCfgChgNotifyEnable OBJECT-TYPE
SYNTAX INTEGER
{
enable (1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Indicates whether the SNMP entity is permitted
to generate hpSwitchRunningConfigChange notifications.
Default is disabled."
DEFVAL { disable }
::= { hpSwitchRunningCfgChgObjects 1}
hpSwitchRunningCfgChgTransmitInterval OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Specifies the transmission interval in seconds
for sending running config change traps. Only
one running config change trap is sent in this
time interval. Default value is 0, indicating
there is no limit on sending running config
change traps."
DEFVAL { 0 }
::= { hpSwitchRunningCfgChgObjects 2}
hpSwitchRunningCfgChgLatestDateAndTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates the date and time of the
most recent running config change."
::= { hpSwitchRunningCfgChgObjects 3 }
hpSwitchRunningCfgChgCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The total number of running config changes
since last reboot."
::= { hpSwitchRunningCfgChgObjects 4 }
hpSwitchRunningCfgChgEntriesBumped OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of times the oldest entry in
hpSwitchRunningCfgChgTable was discarded
to make room for a new entry."
::= { hpSwitchRunningCfgChgObjects 5 }
hpSwitchRunningCfgChgEventTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpSwitchRunningCfgChgEventEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table of latest 32 running configuration change
events."
::= { hpSwitchRunningCfgChgObjects 6 }
hpSwitchRunningCfgChgEventEntry OBJECT-TYPE
SYNTAX HpSwitchRunningCfgChgEventEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Information about running configuration
change event on this switch."
INDEX { hpSwitchRunningCfgChgEventTableIndex }
::= { hpSwitchRunningCfgChgEventTable 1 }
HpSwitchRunningCfgChgEventEntry ::= SEQUENCE {
hpSwitchRunningCfgChgEventTableIndex
Integer32,
hpSwitchRunningCfgChgEventId
Unsigned32,
hpSwitchRunningCfgChgEventMethod
INTEGER ,
hpSwitchRunningCfgChgEventSourceIPAddrType
InetAddressType,
hpSwitchRunningCfgChgEventSourceIPAddr
InetAddress,
hpSwitchRunningCfgChgEventUsername
DisplayString,
hpSwitchRunningCfgChgEventDateAndTime
DateAndTime
}
hpSwitchRunningCfgChgEventTableIndex OBJECT-TYPE
SYNTAX Integer32(1..100)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The Index for hpSwitchRunningCfgChgTable."
::= { hpSwitchRunningCfgChgEventEntry 1 }
hpSwitchRunningCfgChgEventId OBJECT-TYPE
SYNTAX Unsigned32(1..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Identifies a specific running config change.
Monotonically increasing values will be
assigned by the system to each event as it
occurs. If the system is reset, these event ID
values will be reset as well. "
::= { hpSwitchRunningCfgChgEventEntry 2 }
hpSwitchRunningCfgChgEventMethod OBJECT-TYPE
SYNTAX INTEGER {
unknown (0),
cli (1),
menu (2),
snmp (3),
webUI (4),
internalEvent (5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates the source through which change to
running config was initiated."
::= { hpSwitchRunningCfgChgEventEntry 3 }
hpSwitchRunningCfgChgEventSourceIPAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates the source address type of network agent
which made a change. This object value is set to an
address type of unknown when not applicable."
::= { hpSwitchRunningCfgChgEventEntry 4 }
hpSwitchRunningCfgChgEventSourceIPAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates the source address of network agent
which made a running config change. The value
is an address of length 0 (unknown(0)) if not
available or not applicable."
::= { hpSwitchRunningCfgChgEventEntry 5 }
hpSwitchRunningCfgChgEventUsername OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates the username of the user making the change
the change to running config. Empty string (length 0)
if username is not available or not applicable."
::= { hpSwitchRunningCfgChgEventEntry 6 }
hpSwitchRunningCfgChgEventDateAndTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates the date and time of the running
config change."
::= { hpSwitchRunningCfgChgEventEntry 7 }
hpSwitchRunningConfigChange NOTIFICATION-TYPE
OBJECTS
{
hpSwitchRunningCfgChgEventId,
hpSwitchRunningCfgChgEventMethod,
hpSwitchRunningCfgChgEventSourceIPAddrType,
hpSwitchRunningCfgChgEventSourceIPAddr,
hpSwitchRunningCfgChgEventUsername,
hpSwitchRunningCfgChgEventDateAndTime
}
STATUS current
DESCRIPTION "Notification of a running configuration change
event as recorded in hpSwitchRunningCfgChgTable."
::= { hpSwitchNotificationObjects 7 }
hpSwitchCdpRunMode OBJECT-TYPE
SYNTAX INTEGER {
rxonly (1),
passthru (2),
preStdVoice (3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Indicates the mode of CDP processing. This variable
has no effect when CDP is disabled (cdpGlobalRun = FALSE)."
DEFVAL { rxonly }
::= { hpSwitchBasicConfigObjects 14 }
hpSwitchIgnoreUntagMacPortList OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Prevent learning MAC addresses on the specified ports
when the VLAN is untagged and the destination MAC
address is one of the following:
01000C-CCCCCC (CDP)
0180c2-00000e (LLDP)
0180c2-000003 (EAPOL)"
::= { hpSwitchBasicConfigObjects 16 }
hpSwitchControlPlaneProtectionAdminStatus OBJECT-TYPE
SYNTAX INTEGER{
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The operational status of the Control Plane Protection
feature. When Control Plane Protection feature is enabled
on a device, if the number of IP error packets exceed
the threshold value they are dropped at the data plane.
This eliminates the processing of error packets by
control plane, thereby reducing the load on the CPU."
DEFVAL { disable }
::= { hpSwitchBasicConfigObjects 17 }
hpSwitchCdpPreStdVoiceTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpSwitchCdpPreStdVoiceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Information about cdp pre-standard-voice admin status for
each port in this device."
::= { hpSwitchCdpObjects 1 }
hpSwitchCdpPreStdVoiceEntry OBJECT-TYPE
SYNTAX HpSwitchCdpPreStdVoiceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Information about cdp pre-standard-voice admin status
for a switch port."
INDEX { hpSwitchCdpPreStdVoiceIfIndex }
::= { hpSwitchCdpPreStdVoiceTable 1 }
HpSwitchCdpPreStdVoiceEntry ::= SEQUENCE {
hpSwitchCdpPreStdVoiceIfIndex
InterfaceIndex,
hpSwitchCdpPreStdVoiceStatus
INTEGER
}
hpSwitchCdpPreStdVoiceIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The ifIndex value of the local interface."
::= { hpSwitchCdpPreStdVoiceEntry 1 }
hpSwitchCdpPreStdVoiceStatus OBJECT-TYPE
SYNTAX INTEGER {
txAndRx (1),
rxOnly(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Indicates the admin status for cdp pre-standard-voice
mode for this cdpInterfaceIfIndex entry
Default is txAndRx and this value is valid only if
hpSwitchCdpRunMode is 'preStdVoice(3)' ."
DEFVAL { txAndRx }
::= { hpSwitchCdpPreStdVoiceEntry 2 }
--
-- Conformance Section
--
hpSwitchBasicConfigCompliances OBJECT IDENTIFIER ::=
{ hpSwitchBasicConfigConformance 1 }
hpSwitchBasicConfigGroups OBJECT IDENTIFIER ::=
{ hpSwitchBasicConfigConformance 2 }
hpSwitchBasicNotificationGroups OBJECT IDENTIFIER ::=
{ hpSwitchBasicConfigConformance 3 }
hpSwitchBasicConfigCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION "The compliance statement for config entities
which implements basic configuration of the switch."
MODULE -- this module
MANDATORY-GROUPS { hpSwitchBasicConfigGroup,
hpSwitchAliasGroup,
hpicfBridgeFilterConfigGroup,
hpicfPortCopyNameGroup,
hpSwitchAclLogtimeoutGroup,
hpSwitchIgmpProxyDomainConfigGroup,
hpSwitchChassisLocateGroup,
hpSwitchModuleGroup,
hpSwitchBasicNotificationGroup,
hpSwitchRunningCfgChgGroup,
hpSwitchStartupConfigChangeGroup,
hpSwitchAclGroup
}
::= { hpSwitchBasicConfigCompliances 1 }
hpSwitchBasicConfigCompliance2 MODULE-COMPLIANCE
STATUS current
DESCRIPTION "The compliance statement for config entities
which implements basic configuration of the switch."
MODULE -- this module
MANDATORY-GROUPS { hpSwitchBasicConfigGroup2 }
::= { hpSwitchBasicConfigCompliances 2 }
hpSwitchBasicConfigCompliance3 MODULE-COMPLIANCE
STATUS current
DESCRIPTION "The compliance statement for config entities
which implements basic configuration of the switch."
MODULE -- this module
MANDATORY-GROUPS { hpSwitchBasicConfigGroup3}
OBJECT hpSwitchSecureModeLevel
MIN-ACCESS read-only
DESCRIPTION "Write access is not allowed."
::= { hpSwitchBasicConfigCompliances 3 }
hpSwitchBasicConfigCompliance4 MODULE-COMPLIANCE
STATUS current
DESCRIPTION "The compliance statement for config entities
which implements basic configuration of the switch."
MODULE -- this module
MANDATORY-GROUPS { hpSwitchCdpConfigGroup }
::= { hpSwitchBasicConfigCompliances 4 }