-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhpicfRateLimit.mib
1391 lines (1224 loc) · 61 KB
/
hpicfRateLimit.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-ICF-RATE-LIMIT-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE,
Integer32, Unsigned32
FROM SNMPv2-SMI
InterfaceIndex, ifIndex
FROM IF-MIB
MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
FROM SNMPv2-CONF
hpicfObjectModules, hpicfRateLimitTrapsPrefix
FROM HP-ICF-OID
;
hpicfRateLimitMIB MODULE-IDENTITY
LAST-UPDATED "201303121510Z" -- March 12, 2013
ORGANIZATION "HP Networking"
CONTACT-INFO "Hewlett Packard Company
8000 Foothills Blvd.
Roseville, CA 95747"
DESCRIPTION "This MIB module describes HP rate limit
information."
REVISION "201307110000Z" -- July 11, 2013
DESCRIPTION "Added hpicfIngressRateLimitVlanConfigTable,
hpicfRateLimitCompliance3 and
hpicfIngressRateLimitVlanGroup for limiting ingress
rate on a VLAN."
REVISION "201303121510Z" -- March 12, 2013
DESCRIPTION "Added kbps-mode rate-limit option for ingress
unknown-unicast traffic. This is an enhancement
OID for the unknown-unicast rate-limiting MIB"
REVISION "201210051930Z" -- October 5, 2012
DESCRIPTION "Updated the description of the
hpBWMinEgressPortPrct object to remove queue
sum restriction."
REVISION "201203121230Z" -- March 12, 2012
DESCRIPTION "Added the Unknown Unicast Rate-Limiting MIB
object, which is used by the switch to control
the unknown unicast traffic."
REVISION "201009271130Z" -- September 27, 2010
DESCRIPTION "Added IPv6 ICMP Rate-Limiting Enhancements through
the inclusion of IP packet type MIB object."
REVISION "201007141610Z" -- July 14, 2010
DESCRIPTION "Added kbps-mode limit option for ingress Broadcast and
ingress Multicast rate limiting MIB objects."
REVISION "200712041230Z" -- December 4, 2007
DESCRIPTION "Added ingress Broadcast and ingress Multicast rate
limiting MIB objects."
REVISION "200708291120Z" -- August 29, 2007
DESCRIPTION "Deprecated all bps objects for
hpEgressRateLimitPortConfigTable and
hpIngressRateLimitPortConfigTable, and updated
compliance information (including correcting ICMP
group to be hpICMPRateLimitPortConfigGroup2)."
REVISION "200707271920Z" -- July 27, 2007
DESCRIPTION "Modified enumerated type names for
hpICMPRateLimitPortControlMode object."
REVISION "200706011146Z" -- June 1, 2007
DESCRIPTION "Deprecated hpICMPRateLimitPortState in favor of new
hpICMPRateLimitPortControlMode object."
REVISION "200705301610Z" -- May 30, 2007
DESCRIPTION "Added Kbps configuration for ICMP, port-egress,
and port-ingress rate-limiting definitions."
REVISION "200607071833Z" -- July 07, 2006
DESCRIPTION "Added new egress rate limiting bps objects, and
ingress rate-limiting definitions."
REVISION "200504201130Z" -- April 20, 2005
DESCRIPTION "Added minimum bandwidth and egress rate limiting
definitions."
REVISION "200408221030Z" -- August 22, 2004
DESCRIPTION "Initial version."
::= { hpicfObjectModules 14 }
hpicfRateLimitObjects OBJECT IDENTIFIER ::= { hpicfRateLimitMIB 1 }
-- ICMP Rate Limiting Objects
hpicfICMPRateLimitObjects OBJECT IDENTIFIER ::= { hpicfRateLimitObjects 1 }
hpICMPRateLimitConfig OBJECT IDENTIFIER ::= { hpicfICMPRateLimitObjects 1 }
hpICMPRateLimitPortConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpICMPRateLimitPortConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table that contains configuration objects on ICMP
rate limit on a per interface basis."
::= { hpICMPRateLimitConfig 1 }
hpICMPRateLimitPortConfigEntry OBJECT-TYPE
SYNTAX HpICMPRateLimitPortConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry that contains configuration objects on ICMP
rate limit on a per interface basis"
INDEX { hpICMPRateLimitPortConfigIndex }
::= { hpICMPRateLimitPortConfigTable 1 }
HpICMPRateLimitPortConfigEntry ::=
SEQUENCE {
hpICMPRateLimitPortConfigIndex InterfaceIndex,
hpICMPRateLimitPortState INTEGER,
hpICMPRateLimitPortPrct Integer32,
hpICMPRateLimitPortAlarmFlag INTEGER,
hpICMPRateLimitPortKbps Integer32,
hpICMPRateLimitPortControlMode INTEGER,
hpICMPRateLimitPortIpPacketType INTEGER
}
hpICMPRateLimitPortConfigIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The interface index associated with this entry."
::= { hpICMPRateLimitPortConfigEntry 1 }
hpICMPRateLimitPortState OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION "This object indicates whether ICMP rate limiting is
enabled on the corresponding port.
Because this is a State object it cannot distinguish
between percent-based ICMP Rate-Limiting and the newer
Kbps-based ICMP Rate-Limiting. Therefore, it has been
deprecated in favor of hpICMPRateLimitPortControlMode."
DEFVAL { disabled }
::= { hpICMPRateLimitPortConfigEntry 2 }
hpICMPRateLimitPortPrct OBJECT-TYPE
SYNTAX Integer32 (0..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This indicates the percent of ICMP rate limit on
the port. The value of this object must be
interpreted under the context of
hpICMPRateLimitPortState. A value of 0 is not the
same as disabling, but rather all ICMP traffic must
be dropped."
::= { hpICMPRateLimitPortConfigEntry 3 }
hpICMPRateLimitPortAlarmFlag OBJECT-TYPE
SYNTAX INTEGER {
clear(1),
set(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This object indicates whether ICMP rate limiting
alarm has been sent. When an alarm is sent, this
object is set to set(2). Once a management station
changes this object to clear(1), an alarm can be
sent again for this port."
DEFVAL { clear }
::= { hpICMPRateLimitPortConfigEntry 4 }
hpICMPRateLimitPortKbps OBJECT-TYPE
SYNTAX Integer32 (0..10000000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The maximum Kilobits-per-second of ICMP traffic that may
be received inbound on the port. The value of this
object must be interpreted under the context of
hpICMPRateLimitControlMode. A value of 0 is not the
same as disabling, but means instead that all ICMP
traffic must be dropped."
::= { hpICMPRateLimitPortConfigEntry 5 }
hpICMPRateLimitPortControlMode OBJECT-TYPE
SYNTAX INTEGER {
disabled(1),
portPrct(2),
portKbps(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The mode by which inbound ICMP traffic on this port will
Rate-Limited. If icmpRateLimitPerPortOnly is configured,
there will be a single maximum percentage-based rate for
the entire port. If icmpRateLimitPerPortOnlyKbpsMode is
configured, there will be a single maximum kilobits-per-
second rate for the entire port. When ICMP rate-limiting
is disabled, there are no maximum controls on inbound
ICMP traffic for this port."
DEFVAL { disabled }
::= { hpICMPRateLimitPortConfigEntry 6 }
hpICMPRateLimitPortIpPacketType OBJECT-TYPE
SYNTAX INTEGER {
ipv4PacketsOnly(1),
ipv6PacketsOnly(2),
ipv4AndIpv6Packets(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This object represents the type(s) of IP packet to which
the specified ICMP rate-limit will be applied. The
default is IPv4."
DEFVAL { ipv4PacketsOnly }
::= { hpICMPRateLimitPortConfigEntry 7 }
hpICMPRateLimitPortNotification NOTIFICATION-TYPE
OBJECTS { hpICMPRateLimitNotifyPortIndex }
STATUS current
DESCRIPTION "This notification indicates limit has exceeded."
::= { hpicfRateLimitTrapsPrefix 1 }
hpICMPRateLimitNotifyPortIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION "The interface index associated with
hpICMPRateLimitPortNotification event."
::= { hpicfICMPRateLimitObjects 2 }
-- Egress Minimum Bandwidth Ojbects
hpicfBWMinEgressObjects OBJECT IDENTIFIER ::=
{ hpicfRateLimitObjects 2 }
hpBWMinEgressPortConfig OBJECT IDENTIFIER ::=
{ hpicfBWMinEgressObjects 1 }
hpBWMinEgressPortNumQueues OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of bandwidth minimum egress queues supported
on this system."
::= { hpBWMinEgressPortConfig 1 }
hpBWMinEgressPortPrctTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpBWMinEgressPortPrctEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table that contains information about the port's egress
Guaranteed Minimum Bandwidth percent configurations on
this switch. The number of entries in this table is
determined by hpBWMinEgressPortNumQueues. The priority of
the queues is in ascending order, starting with queue one
being the lowest and queue hpBWMinEgressPortNumQueues
being the highest."
::= { hpBWMinEgressPortConfig 2 }
hpBWMinEgressPortPrctEntry OBJECT-TYPE
SYNTAX HpBWMinEgressPortPrctEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The information associated with each port's egress
Guaranteed Minimum Bandwidth percent configuration."
INDEX { ifIndex, hpBWMinEgressPortPrctQueue }
::= { hpBWMinEgressPortPrctTable 1 }
HpBWMinEgressPortPrctEntry ::=
SEQUENCE {
hpBWMinEgressPortPrctQueue Integer32,
hpBWMinEgressPortPrct Integer32
}
hpBWMinEgressPortPrctQueue OBJECT-TYPE
SYNTAX Integer32 (1..9000)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The queue associated with this entry. The priority of
the queues is in ascending order, starting with queue one
being the lowest and queue hpBWMinEgressPortNumQueues
being the highest."
::= { hpBWMinEgressPortPrctEntry 1 }
hpBWMinEgressPortPrct OBJECT-TYPE
SYNTAX Integer32 (0..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The percentage of Guaranteed Minimum bandwidth to be
assigned to this egress queue for this port. Total values
for all queues must not exceed 100 percent."
::= { hpBWMinEgressPortPrctEntry 2 }
-- Ingress Minimum Bandwidth Objects
hpicfBWMinIngressObjects OBJECT IDENTIFIER ::=
{ hpicfRateLimitObjects 3 }
hpBWMinIngressPortConfig OBJECT IDENTIFIER ::=
{ hpicfBWMinIngressObjects 1 }
hpBWMinIngressPortNumQueues OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of bandwidth minimum ingress queues supported
on this system."
::= { hpBWMinIngressPortConfig 1 }
hpBWMinIngressPortPrctTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpBWMinIngressPortPrctEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table that contains information about the port's
ingress Guaranteed Minimum Bandwidth percent
configurations on this switch. The number of entries in
this table is determined by hpBWMinIngressPortNumQueues.
The priority of the queues is in ascending order, starting
with queue one being the lowest and queue
hpBWMinIngressPortNumQueues being the highest."
::= { hpBWMinIngressPortConfig 2 }
hpBWMinIngressPortPrctEntry OBJECT-TYPE
SYNTAX HpBWMinIngressPortPrctEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The information associated with each port's ingress
Guaranteed Minimum Bandwidth percent configuration."
INDEX { ifIndex, hpBWMinIngressPortPrctQueue }
::= { hpBWMinIngressPortPrctTable 1 }
HpBWMinIngressPortPrctEntry ::=
SEQUENCE {
hpBWMinIngressPortPrctQueue Integer32,
hpBWMinIngressPortPrct Integer32
}
hpBWMinIngressPortPrctQueue OBJECT-TYPE
SYNTAX Integer32 (1..9000)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The queue associated with this entry. The priority of
the queues is in ascending order, starting with queue one
being the lowest and queue hpBWMinIngressPortNumQueues
being the highest."
::= { hpBWMinIngressPortPrctEntry 1 }
hpBWMinIngressPortPrct OBJECT-TYPE
SYNTAX Integer32 (0..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The percentage of Guaranteed Minimum bandwidth to be
assigned to this ingress queue for this port. Total values
for all queues must not exceed 100 percent."
::= { hpBWMinIngressPortPrctEntry 2 }
-- Egress Rate Limiting Objects
hpicfRateLimitPortObjects OBJECT IDENTIFIER ::=
{ hpicfRateLimitObjects 4 }
hpRateLimitPortConfig OBJECT IDENTIFIER ::=
{ hpicfRateLimitPortObjects 1 }
hpEgressRateLimitPortNumQueues OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of egress rate-limiting queues supported on
this system."
::= { hpRateLimitPortConfig 1 }
hpEgressRateLimitPortConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpEgressRateLimitPortConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table that contains information about the port egress
Rate-Limiting configurations on this switch."
::= { hpRateLimitPortConfig 2 }
hpEgressRateLimitPortConfigEntry OBJECT-TYPE
SYNTAX HpEgressRateLimitPortConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The information associated with each port's egress
Rate-Limiting configuration."
INDEX { hpEgressRateLimitPortIndex }
::= { hpEgressRateLimitPortConfigTable 1 }
HpEgressRateLimitPortConfigEntry ::=
SEQUENCE {
hpEgressRateLimitPortIndex InterfaceIndex,
hpEgressRateLimitPortControlMode INTEGER,
hpEgressRateLimitPortSingleControlPrct Integer32,
hpEgressRateLimitPortSingleControlBps Unsigned32,
hpEgressRateLimitPortSingleControlKbps Integer32
}
hpEgressRateLimitPortIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The ifIndex value which uniquely identifies a row in the
Interfaces Table."
::= { hpEgressRateLimitPortConfigEntry 1 }
hpEgressRateLimitPortControlMode OBJECT-TYPE
SYNTAX INTEGER {
disabled(1),
egressRateLimitPerPortOnly(2),
egressRateLimitPerQueue(3),
egressRateLimitPerPortOnlyBpsMode(4),
egressRateLimitPerQueueBpsMode(5),
egressRateLimitPerPortOnlyKbpsMode(6)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The mode by which this port will be Rate-Limited on
egress. If egressRateLimitPerPortOnly is configured, there
will be a single maximum percentage-based rate for the
entire port. If egressRateLimitPerQueue is configured, the
values for each of the queues indicate the maximum
percentage of port traffic that may be transmitted by that
queue. If egressRateLimitPerPortOnlyBpsMode is configured,
there will be a single maximum bits-per-second rate for
the entire port. If egressRateLimitPerPortOnlyKbpsMode is
configured, there will be a single maximum
kilobits-per-second rate for the entire port. If
egressRateLimitPerQueueBpsMode is configured, the maximum
transmission-rate values for each of the queues will be
expressed in bits-per-second (again, the sum of these
values must not exceed the maximum Bytes-per-second
capability of the network link). The queues are defined
under hpEgressRateLimitPortPrctTable. When egress
rate-limiting is disabled, there are no maximum controls
on egress for this port."
DEFVAL { disabled }
::= { hpEgressRateLimitPortConfigEntry 2 }
hpEgressRateLimitPortSingleControlPrct OBJECT-TYPE
SYNTAX Integer32 (0..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "When hpEgressRateLimitPortControlMode is configured
for egressRateLimitPerPortOnly, this value is the maximum
percentage of traffic that may be transmitted by this
port on egress."
::= { hpEgressRateLimitPortConfigEntry 3 }
hpEgressRateLimitPortSingleControlBps OBJECT-TYPE
SYNTAX Unsigned32 (0..4200000000)
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION "When hpEgressRateLimitPortControlMode is configured for
egressRateLimitPerPortOnlyBpsMode, this value is the
maximum bits-per-second of traffic that may be transmitted
by this port on egress."
::= { hpEgressRateLimitPortConfigEntry 4 }
hpEgressRateLimitPortSingleControlKbps OBJECT-TYPE
SYNTAX Integer32 (0..10000000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "When hpEgressRateLimitPortControlMode is configured for
egressRateLimitPerPortOnlyKbpsMode, this value is the
maximum kilobits-per-second of traffic that may be
transmitted by this port on egress."
::= { hpEgressRateLimitPortConfigEntry 5 }
hpEgressRateLimitPortPrctTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpEgressRateLimitPortPrctEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table that contains information about the port egress
Rate-Limiting percent configurations on this switch. The
number of entries in this table is determined by
hpEgressRateLimitPortNumQueues. The priority of the
queues is in ascending order, starting with queue one
being the lowest priority and queue
hpEgressRateLimitPortNumQueues being the highest
priority."
::= { hpRateLimitPortConfig 3 }
hpEgressRateLimitPortPrctEntry OBJECT-TYPE
SYNTAX HpEgressRateLimitPortPrctEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The information associated with each port's egress
Rate-Limiting percent configuration."
INDEX { hpEgressRateLimitPortIndex,
hpEgressRateLimitPortPrctQueue }
::= { hpEgressRateLimitPortPrctTable 1 }
HpEgressRateLimitPortPrctEntry ::=
SEQUENCE {
hpEgressRateLimitPortPrctQueue Integer32,
hpEgressRateLimitPortPrct Integer32
}
hpEgressRateLimitPortPrctQueue OBJECT-TYPE
SYNTAX Integer32 (1..9000)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The queue associated with this entry. The priority o
of the queues is in ascending order, starting with
queue one being the lowest and queue
hpEgressRateLimitgressPortNumQueues being the highest."
::= { hpEgressRateLimitPortPrctEntry 1 }
hpEgressRateLimitPortPrct OBJECT-TYPE
SYNTAX Integer32 (0..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The maximum percentage of traffic that may be
transmitted by this port's queue on egress.
hpEgressRateLimitPortControlMode must be configured to
use egressRateLimitPerQueue for this to take effect. A
value of 0-percent for any queue means that no traffic
will ever be transmitted on this port for that egress
queue."
::= { hpEgressRateLimitPortPrctEntry 2 }
hpEgressRateLimitPortBpsTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpEgressRateLimitPortBpsEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION "A table that contains information about the port
egress Rate-Limiting bits-per-second configurations on this
switch. The number of entries in this table is determined
by hpEgressRateLimitPortNumQueues. The priority of the
queues is in ascending order, starting with queue one
being the lowest priority and queue
hpEgressRateLimitPortNumQueues being the highest
priority queue."
::= { hpRateLimitPortConfig 4 }
hpEgressRateLimitPortBpsEntry OBJECT-TYPE
SYNTAX HpEgressRateLimitPortBpsEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION "The information associated with each port's egress
Rate-Limiting bits-per-second configuration."
INDEX { hpEgressRateLimitPortIndex,
hpEgressRateLimitPortBpsQueue }
::= { hpEgressRateLimitPortBpsTable 1 }
HpEgressRateLimitPortBpsEntry ::=
SEQUENCE {
hpEgressRateLimitPortBpsQueue Integer32,
hpEgressRateLimitPortBps Unsigned32
}
hpEgressRateLimitPortBpsQueue OBJECT-TYPE
SYNTAX Integer32 (1..64)
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION "The queue associated with this entry. The priority of
the queues is in ascending order, starting with queue one
being the lowest and queue
hpEgressRateLimitgressPortNumQueues being the highest."
::= { hpEgressRateLimitPortBpsEntry 1 }
hpEgressRateLimitPortBps OBJECT-TYPE
SYNTAX Unsigned32 (0..4200000000)
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION "The maximum bits-per-second of traffic that may be
transmitted by this port's queue on egress.
hpEgressRateLimitPortControlMode must be configured to use
egressRateLimitPerQueue for this to take effect. A value
of 0-percent for any queue means that no traffic will ever
be transmitted on this port for that egress queue. The
values for each queue must not exceed the bits-per-second
capability of the current network link speed."
::= { hpEgressRateLimitPortBpsEntry 2 }
-- Ingress Rate Limiting Objects
hpicfIngressRateLimitPortObjects OBJECT IDENTIFIER ::=
{ hpicfRateLimitObjects 5 }
hpRateLimitIngressPortConfig OBJECT IDENTIFIER ::=
{ hpicfIngressRateLimitPortObjects 1 }
hpIngressRateLimitPortNumQueues OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of ingress rate-limiting queues supported on
this system."
::= { hpRateLimitIngressPortConfig 1 }
hpIngressRateLimitPortConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpIngressRateLimitPortConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table that contains information about the port ingress
Rate-Limiting configurations on this switch."
::= { hpRateLimitIngressPortConfig 2 }
hpIngressRateLimitPortConfigEntry OBJECT-TYPE
SYNTAX HpIngressRateLimitPortConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The information associated with each port's ingress
Rate-Limiting configuration."
INDEX { hpIngressRateLimitPortIndex }
::= { hpIngressRateLimitPortConfigTable 1 }
HpIngressRateLimitPortConfigEntry ::=
SEQUENCE {
hpIngressRateLimitPortIndex InterfaceIndex,
hpIngressRateLimitPortControlMode INTEGER,
hpIngressRateLimitPortSingleControlPrct Integer32,
hpIngressRateLimitPortSingleControlBps Unsigned32,
hpIngressRateLimitPortSingleControlKbps Integer32
}
hpIngressRateLimitPortIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The ifIndex value which uniquely identifies a row in the
Interfaces Table."
::= { hpIngressRateLimitPortConfigEntry 1 }
hpIngressRateLimitPortControlMode OBJECT-TYPE
SYNTAX INTEGER {
disabled(1),
ingressRateLimitPerPortOnly(2),
ingressRateLimitPerQueue(3),
ingressRateLimitPerPortOnlyBpsMode(4),
ingressRateLimitPerQueueBpsMode(5),
ingressRateLimitPerPortOnlyKbpsMode(6)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The mode by which this port will be Rate-Limited on
ingress. If ingressRateLimitPerPortOnly is configured,
there will be a single maximum percentage-based rate for
the entire port. If ingressRateLimitPerQueue is
configured, the values for each of the queues indicate the
maximum percentage of port traffic that may be transmitted
by that queue. If ingressRateLimitPerPortOnlyBpsMode is
configured, there will be a single maximum bits-per-second
rate for the entire port. If
ingressRateLimitPerPortOnlyKbpsMode is configured, there
will be a single maximum kilobits-per-second rate for the
entire port. If ingressRateLimitPerQueueBpsMode is
configured, the maximum transmission-rate values for each
of the queues will be expressed in bits-per-second (again,
the sum of these values must not exceed the maximum
Bytes-per-second capability of the network link). The
queues are defined under hpIngressRateLimitPortPrctTable.
When ingress rate-limiting is disabled, there are no
maximum controls on ingress for this port."
DEFVAL { disabled }
::= { hpIngressRateLimitPortConfigEntry 2 }
hpIngressRateLimitPortSingleControlPrct OBJECT-TYPE
SYNTAX Integer32 (0..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "When hpIngressRateLimitPortControlMode is configured
for ingressRateLimitPerPortOnly, this value is the maximum
percentage of traffic that may be transmitted by this
port on egress."
::= { hpIngressRateLimitPortConfigEntry 3 }
hpIngressRateLimitPortSingleControlBps OBJECT-TYPE
SYNTAX Unsigned32 (0..4200000000)
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION "When hpIngressRateLimitPortControlMode is configured for
ingressRateLimitPerPortOnlyBpsMode, this value is the
maximum bits-per-second of traffic that may be transmitted
by this port on ingress."
::= { hpIngressRateLimitPortConfigEntry 4}
hpIngressRateLimitPortSingleControlKbps OBJECT-TYPE
SYNTAX Integer32 (0..10000000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "When hpIngressRateLimitPortControlMode is configured for
ingressRateLimitPerPortOnlyKbpsMode, this value is the
maximum kilobits-per-second of traffic that may be
transmitted by this port on ingress."
::= { hpIngressRateLimitPortConfigEntry 5}
hpIngressRateLimitPortPrctTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpIngressRateLimitPortPrctEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table that contains information about the port ingress
Rate-Limiting percent configurations on this switch. The
number of entries in this table is determined by
hpIngressRateLimitPortNumQueues. The priority of the
queues is in ascending order, starting with queue one
being the lowest priority and queue
hpIngressRateLimitPortNumQueues being the highest
priority."
::= { hpRateLimitIngressPortConfig 3 }
hpIngressRateLimitPortPrctEntry OBJECT-TYPE
SYNTAX HpIngressRateLimitPortPrctEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The information associated with each port's ingress
Rate-Limiting percent configuration."
INDEX { hpIngressRateLimitPortIndex,
hpIngressRateLimitPortPrctQueue }
::= { hpIngressRateLimitPortPrctTable 1 }
HpIngressRateLimitPortPrctEntry ::=
SEQUENCE {
hpIngressRateLimitPortPrctQueue Integer32,
hpIngressRateLimitPortPrct Integer32
}
hpIngressRateLimitPortPrctQueue OBJECT-TYPE
SYNTAX Integer32 (1..9000)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The queue associated with this entry. The priority
of the queues is in ascending order, starting with
queue one being the lowest and queue
hpIngressRateLimitgressPortNumQueues being the highest."
::= { hpIngressRateLimitPortPrctEntry 1 }
hpIngressRateLimitPortPrct OBJECT-TYPE
SYNTAX Integer32 (0..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The maximum percentage of traffic that may be
transmitted by this port's queue on ingress.
hpIngressRateLimitPortControlMode must be configured to
use ingressRateLimitPerQueue for this to take effect. A
value of 0-percent for any queue means that no traffic
will ever be transmitted on this port for that ingress
queue. The values for each queue must not exceed 100
percent."
::= { hpIngressRateLimitPortPrctEntry 2 }
hpIngressRateLimitPortBpsTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpIngressRateLimitPortBpsEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION "A table that contains information about the port ingress
Rate-Limiting bits-per-second configurations on this
switch. The number of entries in this table is determined
by hpIngressRateLimitPortNumQueues. The priority of the
queues is in ascending order, starting with queue one
being the lowest priority and queue
hpIngressRateLimitPortNumQueues being the highest
priority queue."
::= { hpRateLimitIngressPortConfig 4 }
hpIngressRateLimitPortBpsEntry OBJECT-TYPE
SYNTAX HpIngressRateLimitPortBpsEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION "The information associated with each port's egress
Rate-Limiting bits-per-second configuration."
INDEX { hpIngressRateLimitPortIndex,
hpIngressRateLimitPortBpsQueue }
::= { hpIngressRateLimitPortBpsTable 1 }
HpIngressRateLimitPortBpsEntry ::=
SEQUENCE {
hpIngressRateLimitPortBpsQueue Integer32,
hpIngressRateLimitPortBps Unsigned32
}
hpIngressRateLimitPortBpsQueue OBJECT-TYPE
SYNTAX Integer32 (1..64)
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION "The queue associated with this entry. The priority of
the queues is in ascending order, starting with queue one
being the lowest and queue
hpIngressRateLimitgressPortNumQueues being the highest."
::= { hpIngressRateLimitPortBpsEntry 1 }
hpIngressRateLimitPortBps OBJECT-TYPE
SYNTAX Unsigned32 (0..4200000000)
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION "The maximum bits-per-second of traffic that may be
transmitted by this port's queue on ingress.
hpIngressRateLimitPortControlMode must be configured to
use ingressRateLimitPerQueue for this to take effect. A
value of 0-percent for any queue means that no traffic
will ever be transmitted on this port for that ingress
queue. The values for each queue must not exceed the
bits-per-second capability of the current network link
speed."
::= { hpIngressRateLimitPortBpsEntry 2 }
-- Ingress Broadcast Limiting Objects
hpicfIngressBcastLimitPortObjects OBJECT IDENTIFIER ::=
{ hpicfRateLimitObjects 6 }
hpBcastLimitIngressPortConfig OBJECT IDENTIFIER ::=
{ hpicfIngressBcastLimitPortObjects 1 }
hpIngressBcastLimitPortConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpIngressBcastLimitPortConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table that contains information about the port ingress
Broadcast-Limiting configurations on this switch."
::= { hpBcastLimitIngressPortConfig 1 }
hpIngressBcastLimitPortConfigEntry OBJECT-TYPE
SYNTAX HpIngressBcastLimitPortConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The information associated with each port's ingress
Broadcast-Limiting configuration."
INDEX { hpIngressBcastLimitPortIndex }
::= { hpIngressBcastLimitPortConfigTable 1 }
HpIngressBcastLimitPortConfigEntry ::=
SEQUENCE {
hpIngressBcastLimitPortIndex InterfaceIndex,
hpIngressBcastLimitPortControlMode INTEGER,
hpIngressBcastLimitPortSingleControlPrct Integer32,
hpIngressBcastLimitPortSingleControlKbps Integer32
}
hpIngressBcastLimitPortIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The ifIndex value which uniquely identifies a row in the
Interfaces Table."
::= { hpIngressBcastLimitPortConfigEntry 1 }
hpIngressBcastLimitPortControlMode OBJECT-TYPE
SYNTAX INTEGER {
disabled(1),
ingressBcastLimitPerPortOnly(2),
ingressBcastLimitPerPortOnlyKbpsMode(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The mode by which this port will be Broadcast-Limited on
ingress. If ingressBcastLimitPerPortOnly is configured,
there will be a single maximum percentage-based broadcast
traffic limit for the entire port. If
ingressBcastLimitPerPortOnlyKbpsMode is configured, there
will be a single maximum kilobits-per-second maximum
broadcast traffic rate for the entire port. When ingress
Broadcast-limiting is disabled, there are no maximum
broadcast traffic controls on ingress for this port."
DEFVAL { disabled }
::= { hpIngressBcastLimitPortConfigEntry 2 }
hpIngressBcastLimitPortSingleControlPrct OBJECT-TYPE
SYNTAX Integer32 (0..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "When hpIngressBcastLimitPortControlMode is configured
for ingressBcastLimitPerPortOnly, this value is the maximum
percentage of traffic that may be transmitted by
this port on ingress."
::= { hpIngressBcastLimitPortConfigEntry 3 }
hpIngressBcastLimitPortSingleControlKbps OBJECT-TYPE
SYNTAX Integer32 (0..10000000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "When hpIngressBcastLimitPortControlMode is configured for
ingressBcastLimitPerPortOnlyKbpsMode, this value is the
maximum kilobits-per-second of broadcast traffic that may be
transmitted by this port on ingress."
::= { hpIngressBcastLimitPortConfigEntry 4}
-- Ingress Multicast Limiting Objects
hpicfIngressMcastLimitPortObjects OBJECT IDENTIFIER ::=
{ hpicfRateLimitObjects 7 }
hpMcastLimitIngressPortConfig OBJECT IDENTIFIER ::=
{ hpicfIngressMcastLimitPortObjects 1 }
hpIngressMcastLimitPortConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpIngressMcastLimitPortConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table that contains information about the port ingress
Multicast-Limiting configurations on this switch."
::= { hpMcastLimitIngressPortConfig 1 }
hpIngressMcastLimitPortConfigEntry OBJECT-TYPE
SYNTAX HpIngressMcastLimitPortConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The information associated with each port's ingress
Multicast-Limiting configuration."
INDEX { hpIngressMcastLimitPortIndex }
::= { hpIngressMcastLimitPortConfigTable 1 }
HpIngressMcastLimitPortConfigEntry ::=
SEQUENCE {
hpIngressMcastLimitPortIndex InterfaceIndex,
hpIngressMcastLimitPortControlMode INTEGER,
hpIngressMcastLimitPortSingleControlPrct Integer32,
hpIngressMcastLimitPortSingleControlKbps Integer32
}
hpIngressMcastLimitPortIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The ifIndex value which uniquely identifies a row in the
Interfaces Table."
::= { hpIngressMcastLimitPortConfigEntry 1 }
hpIngressMcastLimitPortControlMode OBJECT-TYPE
SYNTAX INTEGER {
disabled(1),
ingressMcastLimitPerPortOnly(2),
ingressMcastLimitPerPortOnlyKbpsMode(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The mode by which this port will be Multicast-Limited on
ingress. If ingressMcastLimitPerPortOnly is configured,
there will be a single maximum percentage-based multicast
traffic limit for the entire port. If
ingressMcastLimitPerPortOnlyKbpsMode is configured, there
will be a single maximum kilobits-per-second maximum
multicast traffic rate for the entire port. When ingress
Multicast-limiting is disabled, there are no maximum
multicast traffic controls on ingress for this port."
DEFVAL { disabled }
::= { hpIngressMcastLimitPortConfigEntry 2 }
hpIngressMcastLimitPortSingleControlPrct OBJECT-TYPE
SYNTAX Integer32 (0..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "When hpIngressMcastLimitPortControlMode is configured
for ingressMcastLimitPerPortOnly, this value is the maximum
percentage of multicast traffic that may be transmitted
by this port on ingress."
::= { hpIngressMcastLimitPortConfigEntry 3 }
hpIngressMcastLimitPortSingleControlKbps OBJECT-TYPE
SYNTAX Integer32 (0..10000000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "When hpIngressMcastLimitPortControlMode is configured
for ingressMcastLimitPerPortOnlyKbpsMode, this value is the
maximum kilobits-per-second of multicast traffic that may be
transmitted by this port on ingress."
::= { hpIngressMcastLimitPortConfigEntry 4}
-- Unknown Unicast Rate Limiting Objects
hpicfUnknownUnicastLimitPortObjects OBJECT IDENTIFIER ::=
{ hpicfRateLimitObjects 8 }
hpUnknownUnicastLimitPortConfig OBJECT IDENTIFIER ::=
{ hpicfUnknownUnicastLimitPortObjects 1 }
hpUnknownUnicastLimitConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpUnknownUnicastLimitConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table that contains information about the
unknown Unicast Rate-Limiting configurations
on this switch."
::= { hpUnknownUnicastLimitPortConfig 1 }
hpUnknownUnicastLimitConfigEntry OBJECT-TYPE
SYNTAX HpUnknownUnicastLimitConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The information associated with each port's
unknown-unicast Rate-Limiting configuration."
INDEX { hpUnknownUnicastLimitPortIndex }
::= { hpUnknownUnicastLimitConfigTable 1 }
HpUnknownUnicastLimitConfigEntry ::=
SEQUENCE {
hpUnknownUnicastLimitPortIndex InterfaceIndex,
hpUnknownUnicastLimitPortControlMode INTEGER,
hpUnknownUnicastLimitPortSingleControlPrct Integer32,
hpUnknownUnicastLimitPortSingleControlKbps Integer32
}
hpUnknownUnicastLimitPortIndex OBJECT-TYPE