-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHP-ICF-USER-PROFILE-MIB
1077 lines (955 loc) · 44.3 KB
/
HP-ICF-USER-PROFILE-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-USER-PROFILE-MIB DEFINITIONS ::= BEGIN
IMPORTS
TimeTicks, IpAddress, Integer32, Unsigned32,
OBJECT-TYPE, MODULE-IDENTITY, Counter64
FROM SNMPv2-SMI
OBJECT-IDENTITY
FROM SNMPv2-SMI
PhysAddress, DisplayString, TEXTUAL-CONVENTION,
RowStatus, TruthValue, MacAddress
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
InterfaceIndex
FROM IF-MIB
hpSwitch, hpicfCommonSecurity, hpicfCommon
FROM HP-ICF-OID
VlanIndex
FROM Q-BRIDGE-MIB
;
hpicfUsrProfileMIB MODULE-IDENTITY
LAST-UPDATED "200704170230Z" -- April 16, 2007
ORGANIZATION "Hewlett Packard Company,
ProCurve Networking Business"
CONTACT-INFO "Hewlett Packard Company,
8000 Foothills Blvd.
Roseville, CA 95747."
DESCRIPTION "This MIB module contains the definitions
of Managed Objects for user access profiles."
--
-- Revision History
--
REVISION "200707162110Z" -- July 16, 2007
DESCRIPTION
"Version 1.5
Created hpicfUsrProfileConfigFilterListTable and
hpicfUsrProfileConfigFilterRuleTable. Removed
hpicfUsrProfileConfigFilterTable. These changes
allow for the requirement that a filter list
not be in an active state in order for filter
rules to be added/removed/modified."
REVISION "200706192140Z" -- June 19, 2007
DESCRIPTION
"Version 1.4
Added comment to hpicfUsrProfileConfigBindEntryRowStatus.
Changed hpicfUserProfileConfigListEnable to
hpicfUserProfileConfigEntryRowStatus. Moved VlanIndex
from section Groups in HP-ICF-USER-PROFILE-MIb up
to the Import section. Added variable
hpicfUsrProfileConfigEntryRowStatus to the
HpicfUsrProfileConfigEntry table. Added comment
to the Description clause of hpicfUsrProfileConfigPvid.
Added comment to the Description clause of
hpicfUsrProfileConfigTaggedEgressVlanMap1k
Changed range of hpicfUsrProfileSelector from
0..16384 to 1..16384 and added comment to the
variable's Description clause."
REVISION "200703142335Z" -- March, 14 2007
DESCRIPTION
"Version 1.3
Added to hpicfUsrProfileStatsAccessMode to
hpicfUsrProfileStatsEntry."
REVISION "200702062028Z" -- February, 6 2007
DESCRIPTION
"Version 1.2
Added hpicfUsrProfileConfigBindEntryRowStatus to
hpicfUsrProfileConfigBindTable."
REVISION "200510120000Z" -- October, 12 2006
DESCRIPTION "Version 1.1"
REVISION "200510050000Z" -- October, 5 2006
DESCRIPTION "Initial version."
::= { hpicfCommonSecurity 1}
-- ---------------------------------------------------------- --
-- Groups in HP-ICF-USER-PROFILE-MIB
-- ---------------------------------------------------------- --
hpicfUsrProfileCapability OBJECT IDENTIFIER ::= {hpicfUsrProfileMIB 0}
hpicfUsrProfileConfig OBJECT IDENTIFIER ::= {hpicfUsrProfileMIB 1}
hpicfUsrProfileStats OBJECT IDENTIFIER ::= {hpicfUsrProfileMIB 2}
hpicfUsrProfileConformance OBJECT IDENTIFIER ::= {hpicfUsrProfileMIB 3}
-- ########################################################## --
-- The User Access Profile Capability Group
-- ########################################################## --
hpicfUsrProfileCapabilityByPortMap OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(8))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "A string of octets containing on bit per access profile
primitive as follows:
bit 0 - PVID/native/untagged ingress VLAN
bit 1 - Tagged Egress VLAN
bit 2 - Ingress VLAN Filter
bit 3 - Priority Regeneration
bit 4 - Max. Ingress Bandwidth
bit 5 - Max. Egress Bandwidth
bit 6 - Filter List
bit 7 - Hitcount Support
bit 8 - through 64 - reserved
When a bit is set to one, it indicates that device supports
the selected access profile primitive only on a per port
('hpicfUsrProfileUserPortNumber') basis. The concequence is
that the device can only enforce the same access primitive
setting for all users ('hpicfUsrProfileUserMacAddr') on a given
port."
::= { hpicfUsrProfileCapability 1 }
hpicfUsrProfileCapabilityByUserMap OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(8))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "A string of octets containing one bit per access profile
primitive as follows:
bit 0 - PVID/native/untagged ingress VLAN
bit 1 - Tagged Egress VLAN
bit 2 - Ingress VLAN Filter
bit 3 - Priority Regeneration
bit 4 - Max. Ingress Bandwidth
bit 5 - Max. Egress Bandwidth
bit 6 - Filter List
bit 7 - Hitcount Support
bit 8 - through 64 - reserved
When a bit is set to one, it indicates that device supports
the selected access profile primitive on a per
'hpicfUsrProfileUserMacAddr' basis. The consequence is
that the device can enforce unique per user access profile
primitives for each user on a given port
('hpicfUsrProfileUserPortNumber')."
::= { hpicfUsrProfileCapability 2 }
-- ########################################################## --
-- The User Access Profile Configuration Group
-- ########################################################## --
-- ---------------------------------------------------------- --
-- Configuration of filters
-- ---------------------------------------------------------- --
hpicfUsrProfileConfigFilterListTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfUsrProfileConfigFilterListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table that contains configuration objects
for filter lists."
::= { hpicfUsrProfileConfig 1 }
hpicfUsrProfileConfigFilterListEntry OBJECT-TYPE
SYNTAX HpicfUsrProfileConfigFilterListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The configuration information for a user's
filtering profile."
INDEX { hpicfUsrProfileFilterListIndex }
::= { hpicfUsrProfileConfigFilterListTable 1 }
HpicfUsrProfileConfigFilterListEntry ::= SEQUENCE {
hpicfUsrProfileFilterListIndex
Integer32,
hpicfUsrProfileConfigFilterListRowStatus
RowStatus
}
hpicfUsrProfileFilterListIndex OBJECT-TYPE
SYNTAX Integer32 (1..16384)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The identifier used to select a list of
filter rules. A filter list entry must be
created before a filter rule entry can be
added."
::= { hpicfUsrProfileConfigFilterListEntry 1}
hpicfUsrProfileConfigFilterListRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This object indicates the status of this
entry. Must NOT be active in order to modify
an hpicfUsrProfileConfigFilterRuleEntry that
is indexed on this entry's hpicfUsrProfileListIndex.
This object must be in the notReady or notInService
states in order for an
hpicfUsrProfileConfigFilterRuleEntry to be added,
removed, or modified. In order to be changed to
an active rowStatus, at least one rule sharing the
list index must have an active
hpicfUsrProfileConfigFilterRuleRowStatus."
::= { hpicfUsrProfileConfigFilterListEntry 2 }
hpicfUsrProfileConfigFilterRuleTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfUsrProfileConfigFilterRuleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table that contains configuration objects
for filter lists."
::= { hpicfUsrProfileConfig 2 }
hpicfUsrProfileConfigFilterRuleEntry OBJECT-TYPE
SYNTAX HpicfUsrProfileConfigFilterRuleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The configuration information for a user's
filtering profile."
INDEX { hpicfUsrProfileFilterRuleListIndex,
hpicfUsrProfileFilterRuleIndex }
::= { hpicfUsrProfileConfigFilterRuleTable 1 }
HpicfUsrProfileConfigFilterRuleEntry ::= SEQUENCE {
hpicfUsrProfileFilterRuleListIndex
Integer32,
hpicfUsrProfileFilterRuleIndex
Integer32,
hpicfUsrProfileConfigFilterRule
OCTET STRING,
hpicfUsrProfileConfigFilterRuleRowStatus
RowStatus
}
hpicfUsrProfileFilterRuleListIndex OBJECT-TYPE
SYNTAX Integer32 (1..16384)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The identifier used to select a list of
filter rules. This filter rule list index
must correspond to a created but not active
filter list index in order for a rule entry
to be created."
::= { hpicfUsrProfileConfigFilterRuleEntry 1}
hpicfUsrProfileFilterRuleIndex OBJECT-TYPE
SYNTAX Integer32 (1..16384)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A numeric value assigned to each rule
within a list belong to the same
hpicfUsrProfileFilterListIndex. Rules
within a given list will be evaluated
in ascending order."
::= { hpicfUsrProfileConfigFilterRuleEntry 2 }
hpicfUsrProfileConfigFilterRule OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..80))
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Specifies a single filter rule using the
same syntax used for the
hp-nas-filter-rule RADIUS attribute."
::= { hpicfUsrProfileConfigFilterRuleEntry 3 }
hpicfUsrProfileConfigFilterRuleRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This object indicates the status of this
entry. Must NOT be active in order to modify
an hpicfUsrProfileConfigFilterRuleEntry. However,
if an hpicfUsrProfileConfigFilterListRowStatus
is set to destroy, all HpicfUsrProfileConfigFilterRuleEntry
entries sharing the common
hpicfUsrProfileFilterListIndex will also be
destroyed regardless of the value of
hpicfUsrProfileConfigFilterRuleRowStatus."
::= { hpicfUsrProfileConfigFilterRuleEntry 4 }
-- ---------------------------------------------------------- --
-- Configuration of access profiles
-- ---------------------------------------------------------- --
hpicfUsrProfileConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfUsrProfileConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table that contains configuration objects
for access profiles."
::= { hpicfUsrProfileConfig 3 }
hpicfUsrProfileConfigEntry OBJECT-TYPE
SYNTAX HpicfUsrProfileConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The configuration information for an
access profile."
INDEX { hpicfUsrProfileConfigIndex }
::= { hpicfUsrProfileConfigTable 1 }
HpicfUsrProfileConfigEntry ::=
SEQUENCE {
hpicfUsrProfileConfigIndex
Integer32,
hpicfUsrProfileConfigPvid
VlanIndex,
hpicfUsrProfileConfigPvidEnable
TruthValue,
hpicfUsrProfileConfigTaggedEgressVlanMap1k
OCTET STRING,
hpicfUsrProfileConfigTaggedEgressVlanMap2k
OCTET STRING,
hpicfUsrProfileConfigTaggedEgressVlanMap3k
OCTET STRING,
hpicfUsrProfileConfigTaggedEgressVlanMap4k
OCTET STRING,
hpicfUsrProfileConfigTaggedEgressVlanEnable
TruthValue,
hpicfUsrProfileConfigIngressVlanFilterEnable
TruthValue,
hpicfUsrProfileConfigPriorityRegenTable
OCTET STRING,
hpicfUsrProfileConfigPriorityRegenTableEnable
TruthValue,
hpicfUsrProfileConfigMaxIngressBandwidth
Unsigned32,
hpicfUsrProfileConfigMaxIngressBandwidthEnable
TruthValue,
hpicfUsrProfileConfigMaxEgressBandwidth
Unsigned32,
hpicfUsrProfileConfigMaxEgressBandwidthEnable
TruthValue,
hpicfUsrProfileConfigFilterListIndex
Integer32,
hpicfUsrProfileConfigFilterListEnable
TruthValue,
hpicfUsrProfileConfigEntryRowStatus
TruthValue
}
hpicfUsrProfileConfigIndex OBJECT-TYPE
SYNTAX Integer32(1..16384)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A unique numeric value assigned to each
access profile in this table."
::= { hpicfUsrProfileConfigEntry 1}
hpicfUsrProfileConfigPvid OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Specifies the port VID (PVID), also known,
as native VLAN to be used with this access
profile. To specify no pvid, set value to
4095, not 0."
::= { hpicfUsrProfileConfigEntry 2}
hpicfUsrProfileConfigPvidEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Setting this attribute TRUE enables the
usage of 'hpicfUsrProfilePvid' when this
access profile is active."
::= { hpicfUsrProfileConfigEntry 3}
hpicfUsrProfileConfigTaggedEgressVlanMap1k OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..128))
MAX-ACCESS read-create
STATUS current
DESCRIPTION "A string of octets containing one bit per VLAN
for VLANS with 'VlanIndex' values of 0 through 1023.
The first octet corresponds to VLANs with 'VlanIndex'
values of 0 through 7, the second octet to VLANs 8
through 15, etc. The most significant bit of each octet
corresponds to the lowest 'VlanIndex' value in that
octet. Bit 0 in the 1K map is ignored/discarded.
If variable hpicfUsrProfileConfigPvidEnable is TRUE,
some bit other than bit 0 in the 1K map must be set.
To specify an empty tagged vlan map, vlanIndex value
4095 in the 4K map must be set.
Setting a bit to '1' specifies the usage the
corresponding VLAN with this access profile."
DEFVAL { ''H } -- the empty string: no VLANs set
::= { hpicfUsrProfileConfigEntry 4}
hpicfUsrProfileConfigTaggedEgressVlanMap2k OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..128))
MAX-ACCESS read-create
STATUS current
DESCRIPTION "A string of octets containing one bit per VLAN
for VLANS with 'VlanIndex' values of 1024 through 2047.
The first octet corresponds to VLANs with 'VlanIndex'
values of 1024 through 1031, the second octet to VLANs
1032 through 1039, etc. The most significant bit of
each octet corresponds to the lowest 'VlanIndex' value
in that octet.
Setting a bit to '1' specifies the usage the
corresponding VLAN with this access profile."
DEFVAL { ''H } -- the empty string: no VLANs set
::= { hpicfUsrProfileConfigEntry 5}
hpicfUsrProfileConfigTaggedEgressVlanMap3k OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..128))
MAX-ACCESS read-create
STATUS current
DESCRIPTION "A string of octets containing one bit per VLAN
for VLANS with 'VlanIndex' values of 2048 through 3071.
The first octet corresponds to VLANs with 'VlanIndex'
values of 2048 through 3071, the second octet to VLANs
2056 through 2063, etc. The most significant bit of
each octet corresponds to the lowest 'VlanIndex' value
in that octet.
Setting a bit to '1' specifies the usage the
corresponding VLAN with this access profile."
DEFVAL { ''H } -- the empty string: no VLANs set
::= { hpicfUsrProfileConfigEntry 6}
hpicfUsrProfileConfigTaggedEgressVlanMap4k OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..128))
MAX-ACCESS read-create
STATUS current
DESCRIPTION "A string of octets containing one bit per VLAN
for VLANS with 'VlanIndex' values of 3072 through 4095.
The first octet corresponds to VLANs with 'VlanIndex'
values of 3072 through 3079, the second octet to VLANs
3080 through 3087, etc. The most significant bit of
each octet corresponds to the lowest 'VlanIndex' value
in that octet.
Setting a bit to '1' specifies the usage the
corresponding VLAN with this access profile."
DEFVAL { ''H } -- the empty string: no VLANs set
::= { hpicfUsrProfileConfigEntry 7}
hpicfUsrProfileConfigTaggedEgressVlanEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Setting this attribute TRUE enables the
usage of 'hpicfUsrProfileTaggedVlanMapXXX' when this
access profile is being enforced."
DEFVAL { false }
::= { hpicfUsrProfileConfigEntry 8}
hpicfUsrProfileConfigIngressVlanFilterEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Setting this attribute TRUE causes the system to only
allow ingress traffic from those VLANs on which egress
traffic is permitted."
DEFVAL { false }
::= { hpicfUsrProfileConfigEntry 9}
hpicfUsrProfileConfigPriorityRegenTable OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(8))
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Specifies the IEEE 802 priority regeneration table
for this access profile. Syntax of octet string
is same as for 'User-Priority-Table' RADIUS attribute
as defined in RFC4675."
DEFVAL { ''H } -- the empty string
::= { hpicfUsrProfileConfigEntry 10}
hpicfUsrProfileConfigPriorityRegenTableEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Setting this attribute TRUE enables the usage of
the 'hpicfUsrProfilePriorityRegenTable' when this
access profile is active."
::= { hpicfUsrProfileConfigEntry 11}
hpicfUsrProfileConfigMaxIngressBandwidth OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Specifies the maximum ingress bandwidth for this
access profile. Bandwidth value is specified in Kbps."
::= { hpicfUsrProfileConfigEntry 12}
hpicfUsrProfileConfigMaxIngressBandwidthEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Setting this attribute TRUE enables the usage of
the 'hpicfUsrProfileMaxIngressBandwidth' when this
access profile is active."
::= { hpicfUsrProfileConfigEntry 13}
hpicfUsrProfileConfigMaxEgressBandwidth OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Specifies the maximum egress bandwidth for this
access profile. Bandwidth value is specified in Kbps."
::= { hpicfUsrProfileConfigEntry 14}
hpicfUsrProfileConfigMaxEgressBandwidthEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Setting this attribute TRUE enables the usage of
'hpicfUsrProfileMaxEgressBandwidth' when this
access profile is active."
::= { hpicfUsrProfileConfigEntry 15}
hpicfUsrProfileConfigFilterListIndex OBJECT-TYPE
SYNTAX Integer32(1..16384)
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Selects the filter from
'hpicfUsrProfileConfigFilterTable' to associate with
this access profile. The rowStatus of the filter must
be in an active state."
::= { hpicfUsrProfileConfigEntry 16}
hpicfUsrProfileConfigFilterListEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Setting this attribute TRUE enables the usage of
'hpicfUsrProfileConfigFilterListIndex' when this access
profile is active."
::= { hpicfUsrProfileConfigEntry 17}
hpicfUsrProfileConfigEntryRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This object indicates the status of this
entry. Must NOT be active in order to change
some other column of this config entry."
::= { hpicfUsrProfileConfigEntry 18}
-- ---------------------------------------------------------- --
-- Configuration of bindings between access profiles to users
-- ---------------------------------------------------------- --
hpicfUsrProfileConfigBindTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfUsrProfileConfigBindEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table that contains configuration objects
for the access profile-to-user bindings."
::= { hpicfUsrProfileConfig 4 }
hpicfUsrProfileConfigBindEntry OBJECT-TYPE
SYNTAX HpicfUsrProfileConfigBindEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The configuration information for a
access profile-to-user binding."
INDEX { hpicfUsrProfileUserPortNumber,
hpicfUsrProfileUserMacAddr }
::= { hpicfUsrProfileConfigBindTable 1 }
HpicfUsrProfileConfigBindEntry::=
SEQUENCE {
hpicfUsrProfileUserPortNumber
InterfaceIndex,
hpicfUsrProfileUserMacAddr
MacAddress,
hpicfUsrProfileSelector
Integer32,
hpicfUsrProfileConfigBindEntryRowStatus
RowStatus
}
hpicfUsrProfileUserPortNumber OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The interface index associated with this user.
On wired ProCurve products, the interface index
is the physical port. On wireless products it is
the instance (whether real or virtual) of an AP."
::= { hpicfUsrProfileConfigBindEntry 1}
hpicfUsrProfileUserMacAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The 48-bit IEEE media access control address of
the user."
::= { hpicfUsrProfileConfigBindEntry 2}
hpicfUsrProfileSelector OBJECT-TYPE
SYNTAX Integer32(1..16384)
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Setting this attribute to a value between 1 and
16384 selects an access profile from
'hpicfUsrProfileConfigTable' to apply to the user."
::= { hpicfUsrProfileConfigBindEntry 3}
hpicfUsrProfileConfigBindEntryRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This object indicates the status of this
entry. Must NOT be active in order to change
some other column of this bind entry."
::= { hpicfUsrProfileConfigBindEntry 4}
-- ---------------------------------------------------------- --
-- Configuration of capability conflict resolution
-- ---------------------------------------------------------- --
hpicfUsrProfileConfigConflictResolveQoS OBJECT-TYPE
SYNTAX INTEGER {
non-strict(0),
strict(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This object controls how a device behaves when
QoS conflicts arise. A conflict can arise if
a device only supports the QoS access primitive
on a per-port basis, but device is being configured
with profiles that have per-user unique setting.
Applying these profiles to the same port will cause
the conflict to arise because the device cannot
enforce a per-user unique QoS setting. This object
specifies two alternatives, as follows:
'non-strict' - Device does not signal errors when
multiple access profiles are applied
to a port. The device will apply
the QoS settings specified in the
last profile applied to the port.
'strict' - Device does signal an error when an
attempt to apply an access profile to
a port that already has an active access
profile with a different QoS setting.
Device will not activate the access
profile in question after error is
signaled. "
DEFVAL { 0 }
::= { hpicfUsrProfileConfig 5 }
hpicfUsrProfileConfigConflictResolveMaxIngressBandwidth OBJECT-TYPE
SYNTAX INTEGER {
non-strict(0),
strict(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This object controls how a device behaves when
ingress BW conflicts arise. A conflict can arise if
a device only supports the ingress BW access primitive
on a per-port basis, but device is being configured
with profiles that have per-user unique setting.
Applying these profiles to the same port will cause
the conflict to arise because the device cannot
enforce a per-user unique ingress BW setting. This object
specifies two alternatives, as follows:
'non-strict' - Device does not signal errors when
multiple access profiles are applied
to a port. The device will apply
the ingress BW settings specified in the
last profile applied to the port.
'strict' - Device does signal an error when an
attempt to apply an access profile to
a port that already has an active access
profile with a different ingress BW setting.
Device will not activate the access
profile in question after error is
signaled. "
DEFVAL { 0 }
::= { hpicfUsrProfileConfig 6 }
hpicfUsrProfileConfigConflictResolveMaxEgressBandwidth OBJECT-TYPE
SYNTAX INTEGER {
non-strict(0),
strict(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This object controls how a device behaves when
egress BW conflicts arise. A conflict can arise if
a device only supports the egress BW access primitive
on a per-port basis, but device is being configured
with profiles that have per-user unique setting.
Applying these profiles to the same port will cause
the conflict to arise because the device cannot
enforce a per-user egress BW setting. This object
specifies two alternatives, as follows:
'non-strict' - Device does not signal errors when
multiple access profiles are applied
to a port. The device will apply
the egress BW settings specified in the
last profile applied to the port.
'strict' - Device does signal an error when an
attempt to apply an access profile to
a port that already has an active access
profile with a different egress BW setting.
Device will not activate the access
profile in question after error is
signaled. "
DEFVAL { 0 }
::= { hpicfUsrProfileConfig 7 }
-- ########################################################## --
-- The User Access Profile Statistics Group
-- ########################################################## --
hpicfUsrProfileLastUpdate OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION "A snapshot of the module sysUpTime at the time
of the last update to the access profiles
in effect. A value of 0 indicates that the
hpicfUsrProfileLastUpdate object is not
supported by the device and a fresh copy of the
hpicfUsrProfileTable will always need to be
obtained by the management application."
::= { hpicfUsrProfileStats 1 }
-- ---------------------------------------------------------- --
-- Filter statistics
-- ---------------------------------------------------------- --
hpicfUsrProfileStatsFilterTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfUsrProfileStatsFilterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table that contains statistic objects
for filter lists."
::= { hpicfUsrProfileStats 2 }
hpicfUsrProfileStatsFilterEntry OBJECT-TYPE
SYNTAX HpicfUsrProfileStatsFilterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Statistic information for a user's
filtering profile."
INDEX { hpicfUsrProfileFilterListIndex,
hpicfUsrProfileFilterRuleIndex }
::= { hpicfUsrProfileStatsFilterTable 1 }
HpicfUsrProfileStatsFilterEntry ::=
SEQUENCE {
hpicfUsrProfileStatsFilterRule
OCTET STRING,
hpicfUsrProfileStatsFilterRuleHitCount
Counter64,
hpicfUsrProfileStatsFilterRuleHitCountEnabled
TruthValue
}
hpicfUsrProfileStatsFilterRule OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..80))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Specifies a single filter rule using the
same syntax used for the
hp-nas-filter-rule RADIUS attribute."
::= { hpicfUsrProfileStatsFilterEntry 1}
hpicfUsrProfileStatsFilterRuleHitCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Specifies the number of times (hit count)
the user's traffic has matched this rule."
::= { hpicfUsrProfileStatsFilterEntry 2}
hpicfUsrProfileStatsFilterRuleHitCountEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "When this attribute is TRUE it signifies
the 'hpicfUsrProfileStatsFilterRuleHitCount'
contains a valid value. A FALSE value
signifies it does not contain a valid value."
::= { hpicfUsrProfileStatsFilterEntry 3}
-- ---------------------------------------------------------- --
-- Access profile statistics
-- ---------------------------------------------------------- --
hpicfUsrProfileStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfUsrProfileStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table describes the access profiles
currently in effect."
::= { hpicfUsrProfileStats 3 }
hpicfUsrProfileStatsEntry OBJECT-TYPE
SYNTAX HpicfUsrProfileStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the user access profile table."
INDEX { hpicfUsrProfileUserPortNumber,
hpicfUsrProfileUserMacAddr }
::= { hpicfUsrProfileStatsTable 1 }
HpicfUsrProfileStatsEntry ::=
SEQUENCE {
hpicfUsrProfileStatsPvid
VlanIndex,
hpicfUsrProfileStatsTaggedEgressVlanMap1k
OCTET STRING,
hpicfUsrProfileStatsTaggedEgressVlanMap2k
OCTET STRING,
hpicfUsrProfileStatsTaggedEgressVlanMap3k
OCTET STRING,
hpicfUsrProfileStatsTaggedEgressVlanMap4k
OCTET STRING,
hpicfUsrProfileStatsIngressVlanFilterEnable
TruthValue,
hpicfUsrProfileStatsPriorityRegenTable
OCTET STRING,
hpicfUsrProfileStatsMaxIngressBandwidth
Unsigned32,
hpicfUsrProfileStatsMaxEgressBandwidth
Unsigned32,
hpicfUsrProfileStatsFilterListIndex
Integer32,
hpicfUsrProfileStatsAccessMode
Integer32
}
hpicfUsrProfileStatsPvid OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Active port VID (PVID) for this user."
::= { hpicfUsrProfileStatsEntry 1}
hpicfUsrProfileStatsTaggedEgressVlanMap1k OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "A string of octets containing one bit per VLAN
for VLANS with 'VlanIndex' values of 0 through 1023.
The first octet corresponds to VLANs with 'VlanIndex'
values of 0 through 7, the second octet to VLANs 8
through 15, etc. The most significant bit of each octet
corresponds to the lowest 'VlanIndex' value in that
octet.
When a bit is set to '1', it means the
corresponding tagged VLAN as active for this user."
::= { hpicfUsrProfileStatsEntry 2}
hpicfUsrProfileStatsTaggedEgressVlanMap2k OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "A string of octets containing one bit per VLAN
for VLANS with 'VlanIndex' values of 1024 through 2047.
The first octet corresponds to VLANs with 'VlanIndex'
values of 1024 through 1031, the second octet to VLANs
1032 through 1039, etc. The most significant bit of
each octet corresponds to the lowest 'VlanIndex' value
in that octet.
When a bit is set to '1', it indicates the
corresponding tagged VLAN as active for this user."
::= { hpicfUsrProfileStatsEntry 3}
hpicfUsrProfileStatsTaggedEgressVlanMap3k OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "A string of octets containing one bit per VLAN
for VLANS with 'VlanIndex' values of 2048 through 3071.
The first octet corresponds to VLANs with 'VlanIndex'
values of 2048 through 2055, the second octet to VLANs
2056 through 2063, etc. The most significant bit of
each octet corresponds to the lowest 'VlanIndex' value
in that octet.
When a bit is set to '1', it indicates the
corresponding tagged VLAN as active for this user."
::= { hpicfUsrProfileStatsEntry 4}
hpicfUsrProfileStatsTaggedEgressVlanMap4k OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "A string of octets containing one bit per VLAN
for VLANS with 'VlanIndex' values of 3072 through 4095.
The first octet corresponds to VLANs with 'VlanIndex'
values of 3072 through 3079, the second octet to VLANs
3080 through 3087, etc. The most significant bit of
each octet corresponds to the lowest 'VlanIndex' value
in that octet.
When a bit is set to '1', it indicates the
corresponding tagged VLAN as active for this user."
::= { hpicfUsrProfileStatsEntry 5}
hpicfUsrProfileStatsIngressVlanFilterEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "When this attribute is TRUE causes the system is only
allowing ingress traffic from those VLANs on which
egress traffic is permitted."
::= { hpicfUsrProfileStatsEntry 6}
hpicfUsrProfileStatsPriorityRegenTable OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (8))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Specifies the IEEE 802 priority regeneration table
active for this access profile. Syntax of octet string
is same as for 'User-Priority-Table' RADIUS attribute
as defined in RFC4675."
::= { hpicfUsrProfileStatsEntry 7}
hpicfUsrProfileStatsMaxIngressBandwidth OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Specifies the maximum ingress bandwidth for this
access profile. Bandwidth value is specified in Kbps."
::= { hpicfUsrProfileStatsEntry 8}
hpicfUsrProfileStatsMaxEgressBandwidth OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Specifies the maximum egress bandwidth for this
access profile. Bandwidth value is specified in Kbps."
::= { hpicfUsrProfileStatsEntry 9}
hpicfUsrProfileStatsFilterListIndex OBJECT-TYPE
SYNTAX Integer32(0..16384)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "A value of 0 indicates that no filter rule set is
active for the user.
A value between 1 and 16384 selects the active filter
rule set from 'hpicfUsrProfileStatsFilterTable'."
::= { hpicfUsrProfileStatsEntry 10}
hpicfUsrProfileStatsAccessMode OBJECT-TYPE
SYNTAX INTEGER {
snmp(1),
dot8021x(2),
webauth(3),
macauth(4),
webmacauth(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates whether profile was applied via SNMP
or via RADIUS. Application by SNMP has precedence
over RADIUS. Where there are no attribute conflicts,
profile attributes may be a combination of those
applied by both SNMP and RADIUS. In such case,
the variable value will still be SNMP."
::= { hpicfUsrProfileStatsEntry 11}
-- ########################################################## --
-- Conformance Information
-- ########################################################## --
hpicfUsrProfileGroup OBJECT IDENTIFIER ::= { hpicfUsrProfileConformance 1 }
hpicfUsrProfileCompliances OBJECT IDENTIFIER
::= { hpicfUsrProfileConformance 2 }
-- ---------------------------------------------------------- --
-- units of conformance
-- ---------------------------------------------------------- --
hpicfUsrProfileCapabilityGroup OBJECT-GROUP
OBJECTS {
hpicfUsrProfileCapabilityByPortMap,
hpicfUsrProfileCapabilityByUserMap
}
STATUS current
DESCRIPTION "A collection of objects providing device capability
information for user access profiles."
::= { hpicfUsrProfileGroup 1 }