-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHP-USER-AUTH
1349 lines (1150 loc) · 48.7 KB
/
HP-USER-AUTH
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-USER-AUTH DEFINITIONS ::= BEGIN
IMPORTS
hpSwitch
FROM HP-ICF-OID
InterfaceIndex
FROM IF-MIB
VlanIndex
FROM Q-BRIDGE-MIB
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
OBJECT-GROUP, MODULE-COMPLIANCE, NOTIFICATION-GROUP
FROM SNMPv2-CONF
IpAddress, Integer32, Unsigned32, OBJECT-TYPE,
MODULE-IDENTITY, NOTIFICATION-TYPE
FROM SNMPv2-SMI
RowStatus
FROM SNMPv2-TC
TruthValue, MacAddress
FROM SNMPv2-TC
InetAddressType, InetAddress
FROM INET-ADDRESS-MIB;
-- 1.3.6.1.4.1.11.2.14.11.5.1.19
hpicfUsrAuthMIB MODULE-IDENTITY
LAST-UPDATED "200708290000Z" -- August 29, 2007 at 00:00 GMT
ORGANIZATION
"Hewlett-Packard Company
ProCurve Networking Business"
CONTACT-INFO
"Hewlett-Packard Company
8000 Foothills Blvd.
Roseville, CA 95747
www.ProCurve.com"
DESCRIPTION
"This MIB module contains the definitions of Managed
Objects for various subsystems that perform
user authentication. The subsystems under control
by this MIB are:
'WebAuth' - Web-based login authentication
'MacAuth' - MAC addresss-based authentication
'CLI Password' - CLI-based login authentication"
REVISION "200708290000Z" -- August 29, 2007 at 00:00 GMT
DESCRIPTION
"Added hpicfUsrAuthWMA failure notification and objects"
REVISION "200305231020Z" -- May 23, 2003 at 10:20 GMT
DESCRIPTION
"Initial revision."
REVISION "200508050000Z" -- August 05, 2005 at 00:00 GMT
DESCRIPTION
"Added import objects."
REVISION "200706221200Z" -- June 22, 2007 at 12:00 GMT
DESCRIPTION
"Added hpicfUsrAuthNotifyConformance group and objects."
::= { hpSwitch 19 }
--
-- Node definitions
--
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.0
hpicfUsrAuthNotifications OBJECT IDENTIFIER ::= { hpicfUsrAuthMIB 0 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.0.1
hpicfUsrAuthCLIAuthFail NOTIFICATION-TYPE
OBJECTS { hpicfUsrAuthCLIFailCnt, hpicfUsrAuthCLIInterface }
STATUS current
DESCRIPTION
"An hpicfUsrAuthCLIPasswd notification signifies that
CLI password authentication has failed.
Operational control of this notification is provided
using hpicfUsrAuthCliNotifyEnable.
"
::= { hpicfUsrAuthNotifications 1 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.0.2
hpicfUsrAuthPasswdChng NOTIFICATION-TYPE
OBJECTS { hpicfUsrAuthCLIPasswdSet, hpicfUsrAuthCLIPwdNotifyCnt }
STATUS current
DESCRIPTION
"An hpicfUsrAuthPasswdChng notification signifies that
the manager password has been changed. The value of
hpicfUsrAuthCLIPasswdSet can be used to determine
whether the password has been set or cleared by this action.
"
::= { hpicfUsrAuthNotifications 2 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.0.3
hpicfPortSecAuthFailure NOTIFICATION-TYPE
OBJECTS { hpicfUsrAuthWMAFailCnt,
hpicfUsrAuthWMAFailVlan,
hpicfUsrAuthWMAFailPort,
hpicfUsrAuthWMAFailMAC }
STATUS current
DESCRIPTION
"This notification indicates a failed Port Security
(network access) authentication event."
::= { hpicfUsrAuthNotifications 3 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.1
hpicfUsrAuthSystem OBJECT IDENTIFIER ::= { hpicfUsrAuthMIB 1 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.1.1
hpicfUsrAuthWebAuthDhcpBaseAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"For all ports running with web authentication
enabled: Specifies the base address that should
be used by the switch DHCP server for web-based
authentication purposes."
::= { hpicfUsrAuthSystem 1 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.1.2
hpicfUsrAuthWebAuthDhcpMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"For all ports running with web authentication
enabled: Specifies the subnet mask to be used in
conjunction with the DHCP base address when
servicing DHCP requests.
Allowable mask range is 255.255.240.0 (20) to
255.255.255.0 (24)."
::= { hpicfUsrAuthSystem 2 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.1.3
hpicfUsrAuthWebAuthDhcpLease OBJECT-TYPE
SYNTAX Integer32 (1..30)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"For all ports running with web authentication
enabled: Specifies the DHCP lease length in
seconds."
::= { hpicfUsrAuthSystem 3 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.1.4
hpicfUsrAuthMacAuthAddrFormat OBJECT-TYPE
SYNTAX INTEGER
{
noDelimiter(1),
singleDash(2),
multiDash(3),
multiColon(4),
noDelimiterUppercase(5),
singleDashUppercase(6),
multiDashUppercase(7),
multiColonUppercase(8)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"For all ports running with MAC authentication
enabled: Specifies the MAC address format to use
in the RADIUS access-request, as follows:
'noDelimiter' - Sends MAC address in aabbccddeeff format
'singleDash' - Sends MAC address in aabbcc-ddeeff format
'multiDash' - Sends MAC address in aa-bb-cc-dd-ee-ff format
'multiColon' - Sends MAC address in aa:bb:cc:dd:ee:ff format
'noDelimiterUppercase' - Sends MAC address in AABBCCDDEEFF format
'singleDashUppercase' - Sends MAC address in AABBCC-DDEEFF format
'multiDashUppercase' - Sends MAC address in AA-BB-CC-DD-EE-FF format
'multiColonUppercase' - Sends MAC address in AA:BB:CC:DD:EE:FF format
The default value is noDelimiter(1)."
::= { hpicfUsrAuthSystem 4 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.1.5
hpicfUsrAuthCliNotifyEnable OBJECT-TYPE
SYNTAX INTEGER
{
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The operational status of hpicfUsrAuthCliAuthFail notifications.
The default value is ‘1’ (Enabled). A value of ‘2’ represents
Disabled. Writing this object requires authentication, such
as provided by SNMPv3.
"
::= { hpicfUsrAuthSystem 5 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.1.6
hpicfUsrAuthCLIInterface OBJECT-TYPE
SYNTAX INTEGER
{
serial(1),
telnet(2),
ssh(3),
other(9)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Denotes the interface that is generating the notification.
"
::= { hpicfUsrAuthSystem 6 }
--
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.1.7
hpicfUsrAuthCLIPasswdSet OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Indicates whether the CLI manager password
is set. ‘1’ indicates True while ‘2’
indicates False.
"
::= { hpicfUsrAuthSystem 7 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.1.8
hpicfUsrAuthCLIFailCnt OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The count of hpicfUsrAuthPasswdFail notifications sent by the hpicfUsrAuth
entity to the SNMP entity. The actual count of notifications sent by SNMP
may be lower due to rate limiting or configuration."
::= { hpicfUsrAuthSystem 8 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.1.9
hpicfUsrAuthCLIPwdNotifyCnt OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"A count of CLI password change notifications
sent from the Auth entity to the SNMP entity
within the switch. This count may therefore differ from
the count of notifications actually sent by the SNMP
entity due to switch configuration (e.g., the value
of hpicfUsrAuthNotifyEnable.)"
::= { hpicfUsrAuthSystem 9 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.1.10
hpicfUsrAuthWMAFailCnt OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The count of hpicfUsrAuthWMAFail notifications sent by the hpicfUsrAuth
entity to the SNMP entity. The actual count of notifications sent by SNMP
may be lower due to rate limiting or configuration."
::= { hpicfUsrAuthSystem 10 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.1.11
hpicfUsrAuthWMAFailMAC OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The MAC address supplied in the failed authentication request."
::= { hpicfUsrAuthSystem 11 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.1.12
hpicfUsrAuthWMAFailPort OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The port index of the failed authentication request."
::= { hpicfUsrAuthSystem 12 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.1.13
hpicfUsrAuthWMAFailVlan OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The VLAN ID associated with the failed authentication request."
::= { hpicfUsrAuthSystem 13 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.1.14
hpicfUsrAuthPortSecNotifyEnable OBJECT-TYPE
SYNTAX INTEGER
{
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Provides operational control of hpicfPortSecAuthFailure
notification. When enabled (1), the notification will
be sent. When disabled (2), the notification will not
be sent. Setting this object requires authentication,
such as provided by SNMPv3.
"
::= { hpicfUsrAuthSystem 14 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.1.15
hpicfUsrAuthPasswdNotifyEnable OBJECT-TYPE
SYNTAX INTEGER
{
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Provides operational control of hpicfUsrAuthPasswdChng notification.
When enabled (1), the notification will be sent.
When disabled (2), the notification will not be sent.
Setting this object requires authentication, such
as provided by SNMPv3."
::= { hpicfUsrAuthSystem 15 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.1.16
--
-- EWA Server Table
--
hpicfUsrAuthWMAEWAServerTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfUsrAuthWMAEWAServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of the Enhanced Web Auth servers."
::= { hpicfUsrAuthSystem 16 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.1.16.1
hpicfUsrAuthWMAEWAServerEntry OBJECT-TYPE
SYNTAX HpicfUsrAuthWMAEWAServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Addresses for an Enhanced Web Auth server."
INDEX { hpicfUsrAuthWMAeWAServerIndex }
::= { hpicfUsrAuthWMAEWAServerTable 1 }
HpicfUsrAuthWMAEWAServerEntry ::= SEQUENCE {
hpicfUsrAuthWMAeWAServerIndex Integer32,
hpicfUsrAuthWMAeWAServerIPAddressType InetAddressType,
hpicfUsrAuthWMAeWAServerIPAddress InetAddress,
hpicfUsrAuthWMAeWAServerPath OCTET STRING,
hpicfUsrAUthWMAeWAServerRowStatus RowStatus
}
hpicfUsrAuthWMAeWAServerIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Index into hpicfUsrAuthWMAEWAServerTable."
::= { hpicfUsrAuthWMAEWAServerEntry 1 }
hpicfUsrAuthWMAeWAServerIPAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The type of Enhanced Web Auth Server Address."
DEFVAL { unknown }
::= { hpicfUsrAuthWMAEWAServerEntry 2 }
hpicfUsrAuthWMAeWAServerIPAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The IP address of the Enhanced Web Auth Server.
If set to 0.0.0.0 or URL not configured
no Enhanced Web Auth Server will run."
::= { hpicfUsrAuthWMAEWAServerEntry 3 }
hpicfUsrAuthWMAeWAServerPath OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The Enhanced Web Auth Server Path for the location
of the Enhanced Web Auth Pages. If not configured
the default path will be used."
::= { hpicfUsrAuthWMAEWAServerEntry 4 }
hpicfUsrAUthWMAeWAServerRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This marks the row as active/inactive."
::= { hpicfUsrAuthWMAEWAServerEntry 5 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.2
hpicfUsrAuthPorts OBJECT IDENTIFIER ::= { hpicfUsrAuthMIB 2 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.2.1
hpicfUsrAuthPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfUsrAuthPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of system level information about Web-
MAC-based authentication for each port in the
switch."
::= { hpicfUsrAuthPorts 1 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.2.1.1
hpicfUsrAuthPortEntry OBJECT-TYPE
SYNTAX HpicfUsrAuthPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The port number, operational mode and
re-authentication control for each switch port."
INDEX { hpicfUsrAuthPortNumber }
::= { hpicfUsrAuthPortTable 1 }
HpicfUsrAuthPortEntry ::=
SEQUENCE {
hpicfUsrAuthPortNumber
InterfaceIndex,
hpicfUsrAuthWebAuthAdminStatus
TruthValue,
hpicfUsrAuthMacAuthAdminStatus
TruthValue,
hpicfUsrAuthPortReauthenticate
TruthValue
}
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.2.1.1.1
hpicfUsrAuthPortNumber OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The port number associated with this switch port."
::= { hpicfUsrAuthPortEntry 1 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.2.1.1.2
hpicfUsrAuthWebAuthAdminStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Setting this attribute TRUE enables web-based
authentication services. A value of FALSE
disabled web-based authentication. This attribute
cannot be set TRUE concurrently with
hpicfUsrAuthMacAuthAdminStatus."
::= { hpicfUsrAuthPortEntry 2 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.2.1.1.3
hpicfUsrAuthMacAuthAdminStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Setting this attribute TRUE enables MAC-based
authentication services. A value of FALSE
disabled MAC-based authentication. This attribute
cannot be set TRUE concurrently with
hpicfUsrAuthWebAuthAdminStatus."
::= { hpicfUsrAuthPortEntry 3 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.2.1.1.4
hpicfUsrAuthPortReauthenticate OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The reauthentication control for this port. Setting this
attribute TRUE forces all authenticated clients to
re-authenticate themselves. Setting this attribute FALSE
has no effect. This attribute always returns FALSE
when read."
::= { hpicfUsrAuthPortEntry 4 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.3
hpicfUsrAuthWebAuthConfig OBJECT IDENTIFIER ::= { hpicfUsrAuthMIB 3 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.3.1
hpicfUsrAuthWebAuthConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfUsrAuthWebAuthConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains the configuration objects for
Web-based Authentication associated with each port. An entry
appears in this table for each port that may authenticate
access to itself."
::= { hpicfUsrAuthWebAuthConfig 1 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.3.1.1
hpicfUsrAuthWebAuthConfigEntry OBJECT-TYPE
SYNTAX HpicfUsrAuthWebAuthConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The configuration information for Web-based authentication."
INDEX { hpicfUsrAuthPortNumber }
::= { hpicfUsrAuthWebAuthConfigTable 1 }
HpicfUsrAuthWebAuthConfigEntry ::=
SEQUENCE {
hpicfUsrAuthWebAuthClientLimit
Integer32,
hpicfUsrAuthWebAuthClientMoves
INTEGER,
hpicfUsrAuthWebAuthSSLState
INTEGER,
hpicfUsrAuthWebAuthRedirectUrl
OCTET STRING,
hpicfUsrAuthWebAuthQuietPeriod
Integer32,
hpicfUsrAuthWebAuthServerTimeout
Integer32,
hpicfUsrAuthWebAuthServerMaxReq
Integer32,
hpicfUsrAuthWebAuthMaxRetries
Integer32,
hpicfUsrAuthWebAuthLogoffPeriod
Integer32,
hpicfUsrAuthWebAuthReAuthPeriod
Integer32,
hpicfUsrAuthWebAuthAuthVid
VlanIndex,
hpicfUsrAuthWebAuthUnauthVid
VlanIndex
}
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.3.1.1.1
hpicfUsrAuthWebAuthClientLimit OBJECT-TYPE
SYNTAX Integer32 (1..32)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The maximum number of authenticated clients to allow on
the port."
DEFVAL { 1 }
::= { hpicfUsrAuthWebAuthConfigEntry 1 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.3.1.1.2
hpicfUsrAuthWebAuthClientMoves OBJECT-TYPE
SYNTAX INTEGER
{
disabled(1),
enabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies whether client may roam across ports under
web authentication control. Setting this attribute
'enabled'allows authenticated clients to roam to other
ports under web authentication control (that also have
this attribute set to 'enabled') without requiring a
re-authentication.
Setting this attribute 'disabled' disallows authenticated
clients from roaming to other ports (regardless of that
port's attribute value). The client has to re-
authenticate, if it attempts to roam."
DEFVAL { 1 }
::= { hpicfUsrAuthWebAuthConfigEntry 2 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.3.1.1.3
hpicfUsrAuthWebAuthSSLState OBJECT-TYPE
SYNTAX INTEGER
{
disabled(1),
enabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies whether web-based authentication should use an
SSL connection (i.e. https://) to switch to collect client
credentials.
Note: A valid certificate must be configured on switch
before SSL connections are enabled."
DEFVAL { 1 }
::= { hpicfUsrAuthWebAuthConfigEntry 3 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.3.1.1.4
hpicfUsrAuthWebAuthRedirectUrl OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..127))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the URL, to which an authenticated client should
be re-directed, after successful authentication."
::= { hpicfUsrAuthWebAuthConfigEntry 4 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.3.1.1.5
hpicfUsrAuthWebAuthQuietPeriod OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the time, in seconds, that the switch should
refrain from re-attempting an authentication request for
a client whose credentials were rejected."
DEFVAL { 60 }
::= { hpicfUsrAuthWebAuthConfigEntry 5 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.3.1.1.6
hpicfUsrAuthWebAuthServerTimeout OBJECT-TYPE
SYNTAX Integer32 (1..300)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the time, in seconds, that the switch should
wait for an authentication reply to return before
considering it as timed out."
DEFVAL { 30 }
::= { hpicfUsrAuthWebAuthConfigEntry 6 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.3.1.1.7
hpicfUsrAuthWebAuthServerMaxReq OBJECT-TYPE
SYNTAX Integer32 (1..10)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the number of authentication requests that
must time out before failing authentication."
DEFVAL { 3 }
::= { hpicfUsrAuthWebAuthConfigEntry 7 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.3.1.1.8
hpicfUsrAuthWebAuthMaxRetries OBJECT-TYPE
SYNTAX Integer32 (1..10)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the number of authentication requests that
must fail (i.e. invalid credentials) before failing
authentication."
DEFVAL { 3 }
::= { hpicfUsrAuthWebAuthConfigEntry 8 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.3.1.1.9
hpicfUsrAuthWebAuthLogoffPeriod OBJECT-TYPE
SYNTAX Integer32 (1..999999999)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the period, in seconds, at which an
authenticated client will be considered unauthenticated
for a lack of activity (i.e. traffic originating
from client)."
DEFVAL { 300 }
::= { hpicfUsrAuthWebAuthConfigEntry 9 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.3.1.1.10
hpicfUsrAuthWebAuthReAuthPeriod OBJECT-TYPE
SYNTAX Integer32 (0..999999999)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the period, in seconds, at which an
authenticated client must re-authenticate. A value of
0 signifies that an authenticated client will never have
to re-authenticate."
DEFVAL { 0 }
::= { hpicfUsrAuthWebAuthConfigEntry 10 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.3.1.1.11
hpicfUsrAuthWebAuthAuthVid OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the port VID (PVID) that should be used for
an authenticated client."
::= { hpicfUsrAuthWebAuthConfigEntry 11 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.3.1.1.12
hpicfUsrAuthWebAuthUnauthVid OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the port VID (PVID) that should be used for
an unauthenticated client."
::= { hpicfUsrAuthWebAuthConfigEntry 12 }
--
--
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.4
hpicfUsrAuthMacAuthConfig OBJECT IDENTIFIER ::= { hpicfUsrAuthMIB 4 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.4.1
hpicfUsrAuthMacAuthConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfUsrAuthMacAuthConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains the configuration objects for
Mac-based Authentication associated with each port. An entry
appears in this table for each port that may authenticate
access to itself."
::= { hpicfUsrAuthMacAuthConfig 1 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.4.1.1
hpicfUsrAuthMacAuthConfigEntry OBJECT-TYPE
SYNTAX HpicfUsrAuthMacAuthConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The configuration information for Mac-based authentication."
INDEX { hpicfUsrAuthPortNumber }
::= { hpicfUsrAuthMacAuthConfigTable 1 }
HpicfUsrAuthMacAuthConfigEntry ::=
SEQUENCE {
hpicfUsrAuthMacAuthClientLimit
Integer32,
hpicfUsrAuthMacAuthClientMoves
INTEGER,
hpicfUsrAuthMacAuthQuietPeriod
Integer32,
hpicfUsrAuthMacAuthServerTimeout
Integer32,
hpicfUsrAuthMacAuthServerMaxReq
Integer32,
hpicfUsrAuthMacAuthLogoffPeriod
Integer32,
hpicfUsrAuthMacAuthReAuthPeriod
Integer32,
hpicfUsrAuthMacAuthAuthVid
VlanIndex,
hpicfUsrAuthMacAuthUnauthVid
VlanIndex
}
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.4.1.1.1
hpicfUsrAuthMacAuthClientLimit OBJECT-TYPE
SYNTAX Integer32 (1..32)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The maximum number of authenticated clients to allow on
the port."
DEFVAL { 1 }
::= { hpicfUsrAuthMacAuthConfigEntry 1 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.4.1.1.2
hpicfUsrAuthMacAuthClientMoves OBJECT-TYPE
SYNTAX INTEGER
{
disabled(1),
enabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies whether client may roam across ports under
web authentication control. Setting this attribute
'enabled'allows authenticated clients to roam to other
ports under web authentication control (that also have
this attribute set to 'enabled') without requiring a
re-authentication.
Setting this attribute 'disabled' disallows authenticated
clients from roaming to other ports (regardless of that
port's attribute value). The client has to re-
authenticate, if it attempts to roam."
DEFVAL { 1 }
::= { hpicfUsrAuthMacAuthConfigEntry 2 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.4.1.1.3
hpicfUsrAuthMacAuthQuietPeriod OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the time, in seconds, that the switch should
refrain from re-attempting an authentication request for
a client whose credentials were rejected."
DEFVAL { 60 }
::= { hpicfUsrAuthMacAuthConfigEntry 3 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.4.1.1.4
hpicfUsrAuthMacAuthServerTimeout OBJECT-TYPE
SYNTAX Integer32 (1..300)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the time, in seconds, that the switch should
wait for an authentication reply to return before
considering it as timed out."
DEFVAL { 30 }
::= { hpicfUsrAuthMacAuthConfigEntry 4 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.4.1.1.5
hpicfUsrAuthMacAuthServerMaxReq OBJECT-TYPE
SYNTAX Integer32 (1..10)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the number of authentication requests that
must time out before failing authentication."
DEFVAL { 3 }
::= { hpicfUsrAuthMacAuthConfigEntry 5 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.4.1.1.6
hpicfUsrAuthMacAuthLogoffPeriod OBJECT-TYPE
SYNTAX Integer32 (1..999999999)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the period, in seconds, at which an
authenticated client will be considered unauthenticated
for a lack of activity (i.e. traffic originating
from client)."
DEFVAL { 300 }
::= { hpicfUsrAuthMacAuthConfigEntry 6 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.4.1.1.7
hpicfUsrAuthMacAuthReAuthPeriod OBJECT-TYPE
SYNTAX Integer32 (0..999999999)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the period, in seconds, at which an
authenticated client must re-authenticate. A value of
0 signifies that an authenticated client will never have
to re-authenticate."
DEFVAL { 0 }
::= { hpicfUsrAuthMacAuthConfigEntry 7 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.4.1.1.8
hpicfUsrAuthMacAuthAuthVid OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the port VID (PVID) that should be used for
an authenticated client."
::= { hpicfUsrAuthMacAuthConfigEntry 8 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.4.1.1.9
hpicfUsrAuthMacAuthUnauthVid OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the port VID (PVID) that should be used for
an unauthenticated client."
::= { hpicfUsrAuthMacAuthConfigEntry 9 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.5
hpicfUsrAuthWebAuthStats OBJECT IDENTIFIER ::= { hpicfUsrAuthMIB 5 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.5.1
hpicfUsrAuthWebAuthSessionStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfUsrAuthWebAuthSessionStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains session statistic objects
for each client (i.e. user) attempting to
authenticate to a port with Web-authentication
enabled. An entry appears in this table for each
port in the switch."
::= { hpicfUsrAuthWebAuthStats 1 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.5.1.1
hpicfUsrAuthWebAuthSessionStatsEntry OBJECT-TYPE
SYNTAX HpicfUsrAuthWebAuthSessionStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The session statistics information for a port with
Web-based authentication enabled. This shows
the current values being collected for active sessions."
INDEX { hpicfUsrAuthPortNumber, hpicfUsrAuthWebAuthSessionMacAddr }
::= { hpicfUsrAuthWebAuthSessionStatsTable 1 }
HpicfUsrAuthWebAuthSessionStatsEntry ::=
SEQUENCE {
hpicfUsrAuthWebAuthSessionMacAddr
MacAddress,
hpicfUsrAuthWebAuthSessionName
SnmpAdminString,
hpicfUsrAuthWebAuthSessionState
INTEGER,
hpicfUsrAuthWebAuthSessionStateTime
Unsigned32,
hpicfUsrAuthWebAuthSessionAuthVid
VlanIndex,
hpicfUsrAuthWebAuthSessionUnauthVid
VlanIndex
}
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.5.1.1.1
hpicfUsrAuthWebAuthSessionMacAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies the MAC address of the client."
::= { hpicfUsrAuthWebAuthSessionStatsEntry 1 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.5.1.1.2
hpicfUsrAuthWebAuthSessionName OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies the username of the client."
::= { hpicfUsrAuthWebAuthSessionStatsEntry 2 }
-- 1.3.6.1.4.1.11.2.14.11.5.1.19.5.1.1.3
hpicfUsrAuthWebAuthSessionState OBJECT-TYPE
SYNTAX INTEGER
{
authenticated(1),
unauthenticated(2),
authenticating(3),
authReqRejectNoVlan(4),
authReqRejectUnauthVlan(5),
authReqTimeoutNoVlan(6),
authReqTimeoutUnauthVlan(7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies the state of the client as follows:
'authenticated' - authenticated client
'unauthenticated' - unauthenticated client,
waiting for credentials
'authenticating' - credentials have been sent
for verification, waiting for