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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
|
HP-DOT1X-EXTENSIONS-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Counter32, Counter64,
Unsigned32, TimeTicks
FROM SNMPv2-SMI
MacAddress, TruthValue,
DisplayString, TimeStamp
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
InterfaceIndex
FROM IF-MIB
dot1xPaePortEntry, dot1xSuppConfigEntry, dot1xAuthConfigEntry,
dot1xPaePortNumber
FROM IEEE8021-PAE-MIB
VlanIndex
FROM Q-BRIDGE-MIB
hpSwitch
FROM HP-ICF-OID
;
hpicfDot1xMIB MODULE-IDENTITY
LAST-UPDATED "200509210000Z" -- September 21, 2005
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 HP ProCurve extensions to IEEE 802.1X.
This MIB supplements the IEEE 802.1X MIB to
provide a mechanism by which to configure and
retrieve status on shared-media ports, such as in
wireless access points or multi-supplicant mode on
ProCurve switches/routers."
REVISION "200702020000Z" -- February 2, 2007
DESCRIPTION "Added hpicfDot1xAuthAllowGvrpVlans."
REVISION "200509210000Z" -- September 21, 2005
DESCRIPTION "Added hpicfDot1xAuthClientLimit2."
REVISION "200508050000Z" -- Aug 5, 2005
DESCRIPTION "Added import objects."
REVISION "200408060000Z" -- August 6, 2004
DESCRIPTION "Initial version."
::= { hpSwitch 25 }
hpicfDot1xMIBObjects OBJECT IDENTIFIER ::= { hpicfDot1xMIB 1 }
-- ---------------------------------------------------------- --
-- Textual Conventions
-- ---------------------------------------------------------- --
-- ---------------------------------------------------------- --
-- ---------------------------------------------------------- --
-- groups in the hpicfdot1xExt MIB
-- ---------------------------------------------------------- --
hpicfDot1xSystem
OBJECT IDENTIFIER ::= { hpicfDot1xMIBObjects 1 }
hpicfDot1xAuthenticator
OBJECT IDENTIFIER ::= { hpicfDot1xMIBObjects 2 }
hpicfDot1xSupplicant
OBJECT IDENTIFIER ::= { hpicfDot1xMIBObjects 3 }
-- ---------------------------------------------------------- --
-- ---------------------------------------------------------- --
-- The PAE System Group
-- ---------------------------------------------------------- --
-- ------------------------------------------------------------
-- The PAE Port Table
-- (AUGMENTS dot1xPaePortEntry)
-- ------------------------------------------------------------
hpicfDot1xPaePortTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfDot1xPaePortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table suplements the 'dot1xPaePortTable'."
::= { hpicfDot1xSystem 1 }
hpicfDot1xPaePortEntry OBJECT-TYPE
SYNTAX HpicfDot1xPaePortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The fields in these entries will be used to supplement
'dot1xPaePortEntry'."
AUGMENTS { dot1xPaePortEntry }
::= { hpicfDot1xPaePortTable 1 }
HpicfDot1xPaePortEntry ::=
SEQUENCE {
hpicfDot1xPaePortAuth TruthValue,
hpicfDot1xPaePortSupp TruthValue
}
hpicfDot1xPaePortAuth OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This object allows enable/disable authenticator
functionality on a port."
::= { hpicfDot1xPaePortEntry 1 }
hpicfDot1xPaePortSupp OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This object allows enable/disable supplicant
functionality on a port."
::= { hpicfDot1xPaePortEntry 2 }
-- ---------------------------------------------------------- --
-- The PAE Authenticator Group
-- ---------------------------------------------------------- --
-- ---------------------------------------------------------- --
-- The Authenticator Configuration Table
-- ---------------------------------------------------------- --
-- ------------------------------------------------------------
-- 802.1X Authenticator HP proprietary configuration table
-- (AUGMENTS dot1xAuthConfigEntry)
-- ------------------------------------------------------------
hpicfDot1xAuthConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfDot1xAuthConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table suplements the 'dot1xAuthConfigTable'."
::= { hpicfDot1xAuthenticator 1 }
hpicfDot1xAuthConfigEntry OBJECT-TYPE
SYNTAX HpicfDot1xAuthConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The fields in these entries will be used to supplement
'dot1xAuthConfigEntry'."
AUGMENTS { dot1xAuthConfigEntry }
::= { hpicfDot1xAuthConfigTable 1 }
HpicfDot1xAuthConfigEntry ::=
SEQUENCE {
hpicfDot1xAuthAuthVid VlanIndex,
hpicfDot1xAuthUnauthVid VlanIndex,
hpicfDot1xAuthUnauthPeriod Unsigned32,
hpicfDot1xAuthClientLimit Unsigned32,
hpicfDot1xAuthLogoffPeriod Unsigned32,
hpicfDot1xAuthClientLimit2 Unsigned32
}
hpicfDot1xAuthAuthVid OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This object configures PVID for authorized
802.1x port."
::= { hpicfDot1xAuthConfigEntry 1 }
hpicfDot1xAuthUnauthVid OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This object configures PVID for unauthorized
802.1x port."
::= { hpicfDot1xAuthConfigEntry 2 }
hpicfDot1xAuthUnauthPeriod OBJECT-TYPE
SYNTAX Unsigned32 (0..255)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This objects configures the period of time, in seconds,
which authenticator will wait for authentication before
transition to guest VLAN mode."
DEFVAL { 0 }
::= { hpicfDot1xAuthConfigEntry 3 }
hpicfDot1xAuthClientLimit OBJECT-TYPE
SYNTAX Unsigned32 (1..32)
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION "*************THIS OBJECT IS DEPRECATED **********
The maximum number of authenticated clients to allow on
the port."
DEFVAL { 1 }
::= { hpicfDot1xAuthConfigEntry 4 }
hpicfDot1xAuthLogoffPeriod OBJECT-TYPE
SYNTAX Unsigned32 (1..999999999)
UNITS "seconds"
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 }
::= { hpicfDot1xAuthConfigEntry 5 }
hpicfDot1xAuthClientLimit2 OBJECT-TYPE
SYNTAX Unsigned32 (0..1024)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The maximum number of authenticated clients to allow on
the port if greater than 0. If 0 then authenticator
controls port as a single entity - no client limit."
DEFVAL { 0 }
::= { hpicfDot1xAuthConfigEntry 6 }
-- ---------------------------------------------------------- --
-- The Shared-Media Authenticator Configuration Table
-- ---------------------------------------------------------- --
hpicfDot1xSMAuthConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfDot1xSMAuthConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains the configuration and basic status
objects for Authenticator PAEs associated with each
shared-media port."
REFERENCE
"802.1X-2001 9.4.1 Authenticator Configuration"
::= { hpicfDot1xAuthenticator 2 }
hpicfDot1xSMAuthConfigEntry OBJECT-TYPE
SYNTAX HpicfDot1xSMAuthConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The configuration information for an Authenticator
PAE."
INDEX { hpicfDot1xSMAuthPaePort,
hpicfDot1xSMAuthMacAddr }
::= { hpicfDot1xSMAuthConfigTable 1 }
HpicfDot1xSMAuthConfigEntry ::=
SEQUENCE {
hpicfDot1xSMAuthPaePort
InterfaceIndex,
hpicfDot1xSMAuthMacAddr
MacAddress,
hpicfDot1xSMAuthInitialize
TruthValue,
hpicfDot1xSMAuthReauthenticate
TruthValue,
hpicfDot1xSMAuthPaeState
INTEGER,
hpicfDot1xSMAuthBackendAuthState
INTEGER,
hpicfDot1xSMAuthReAuthPeriod
Unsigned32,
hpicfDot1xSMAuthReAuthEnabled
TruthValue
}
hpicfDot1xSMAuthPaePort OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The interface index associated with this
Authenticator PAE. 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."
::= { hpicfDot1xSMAuthConfigEntry 1 }
hpicfDot1xSMAuthMacAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The 48-bit IEEE media access control address of
The supplicant associated with this Authenticator
PAE."
::= { hpicfDot1xSMAuthConfigEntry 2 }
hpicfDot1xSMAuthInitialize OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The initialization control for this Authenticator PAE.
Setting this attribute TRUE causes the PAE to be
initialized. The attribute value reverts to FALSE
once initialization has completed."
REFERENCE
"802.1X-2001 9.6.1.3, Initialize Port"
::= { hpicfDot1xSMAuthConfigEntry 3 }
hpicfDot1xSMAuthReauthenticate OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The reauthentication control for this Authenticator PAE.
Setting this attribute TRUE causes the Authenticator
PAE state machine for the Port to reauthenticate the
Supplicant. Setting this attribute FALSE has no effect.
This attribute always returns FALSE when it is read."
REFERENCE
"802.1X-2001 9.4.1.3 Reauthenticate"
::= { hpicfDot1xSMAuthConfigEntry 4 }
hpicfDot1xSMAuthPaeState OBJECT-TYPE
SYNTAX INTEGER {
initialize(1),
disconnected(2),
connecting(3),
authenticating(4),
authenticated(5),
aborting(6),
held(7),
forceAuth(8),
forceUnauth(9),
restart(10)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current value of the Authenticator PAE state
machine."
REFERENCE
"802.1X-2001 9.4.1, Authenticator PAE state"
::= { hpicfDot1xSMAuthConfigEntry 5 }
hpicfDot1xSMAuthBackendAuthState OBJECT-TYPE
SYNTAX INTEGER {
request(1),
response(2),
success(3),
fail(4),
timeout(5),
idle(6),
initialize(7),
ignore(8)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current state of the Backend Authentication
state machine."
REFERENCE
"802.1X-2001 9.4.1, Backend Authentication state"
::= { hpicfDot1xSMAuthConfigEntry 6 }
hpicfDot1xSMAuthReAuthPeriod OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value, in seconds, of the reAuthPeriod constant
currently in use by the Reauthentication Timer state
machine."
REFERENCE
"802.1X-2001 9.4.1, reAuthPeriod"
DEFVAL { 3600 }
::= { hpicfDot1xSMAuthConfigEntry 7 }
hpicfDot1xSMAuthReAuthEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The enable/disable control used by the Reauthentication
Timer state machine (8.5.5.1)."
REFERENCE
"802.1X-2001 9.4.1, reAuthEnabled"
DEFVAL { false }
::= { hpicfDot1xSMAuthConfigEntry 8 }
-- ---------------------------------------------------------- --
-- The Authenticator Diagnostics Table
-- ---------------------------------------------------------- --
hpicfDot1xAuthDiagTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfDot1xAuthDiagEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains the diagnostics objects for the
Authenticator PAE associated with each Port.
An entry appears in this table for each port that may
authenticate access to itself."
::= { hpicfDot1xAuthenticator 3 }
hpicfDot1xAuthDiagEntry OBJECT-TYPE
SYNTAX HpicfDot1xAuthDiagEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The diagnostic information for an Authenticator PAE."
INDEX { dot1xPaePortNumber }
::= { hpicfDot1xAuthDiagTable 1 }
HpicfDot1xAuthDiagEntry ::=
SEQUENCE {
hpicfDot1xAuthNumberOfSuccessAuthentication
Counter32,
hpicfDot1xAuthNumberOfFailedAuthentication
Counter32
}
hpicfDot1xAuthNumberOfSuccessAuthentication OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counts the number of times that authenticator received
an EAP-Success message from Authentication Server.
Indicates that Supplicant has successfully authenticated to
the Authentication Server."
::= { hpicfDot1xAuthDiagEntry 1 }
hpicfDot1xAuthNumberOfFailedAuthentication OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counts the number of times that authenticator received
an EAP-Failure message from Authentication Server.
Indicates that Supplicant has failed to authenticate to
the Authentication Server."
::= { hpicfDot1xAuthDiagEntry 2 }
-- ---------------------------------------------------------- --
-- The Authenticator Statistics Table
-- ---------------------------------------------------------- --
hpicfDot1xAuthStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfDot1xAuthStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains the statistics objects for the
Authenticator PAE's associated with each shared-media
Port."
REFERENCE
"802.1X-2001 9.4.2 Authenticator Statistics"
::= { hpicfDot1xAuthenticator 4 }
hpicfDot1xAuthStatsEntry OBJECT-TYPE
SYNTAX HpicfDot1xAuthStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The statistics information for an Authenticator PAE."
INDEX { hpicfDot1xSMAuthPaePort,
hpicfDot1xSMAuthMacAddr }
::= { hpicfDot1xAuthStatsTable 1 }
HpicfDot1xAuthStatsEntry ::=
SEQUENCE {
hpicfDot1xAuthEapolFramesRx
Counter32,
hpicfDot1xAuthEapolFramesTx
Counter32,
hpicfDot1xAuthEapolStartFramesRx
Counter32,
hpicfDot1xAuthEapolLogoffFramesRx
Counter32,
hpicfDot1xAuthEapolRespIdFramesRx
Counter32,
hpicfDot1xAuthEapolRespFramesRx
Counter32,
hpicfDot1xAuthEapolReqIdFramesTx
Counter32,
hpicfDot1xAuthEapolReqFramesTx
Counter32,
hpicfDot1xAuthInvalidEapolFramesRx
Counter32,
hpicfDot1xAuthEapLengthErrorFramesRx
Counter32,
hpicfDot1xAuthLastEapolFrameVersion
Unsigned32,
hpicfDot1xAuthLastEapolFrameSource
MacAddress
}
hpicfDot1xAuthEapolFramesRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of valid EAPOL frames of any type
that have been received by this Authenticator."
REFERENCE
"802.1X-2001 9.4.2, EAPOL frames received"
::= { hpicfDot1xAuthStatsEntry 1 }
hpicfDot1xAuthEapolFramesTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of EAPOL frames of any type
that have been transmitted by this Authenticator."
REFERENCE
"802.1X-2001 9.4.2, EAPOL frames transmitted"
::= { hpicfDot1xAuthStatsEntry 2 }
hpicfDot1xAuthEapolStartFramesRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of EAPOL Start frames that have
been received by this Authenticator."
REFERENCE
"802.1X-2001 9.4.2, EAPOL Start frames received"
::= { hpicfDot1xAuthStatsEntry 3 }
hpicfDot1xAuthEapolLogoffFramesRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of EAPOL Logoff frames that have
been received by this Authenticator."
REFERENCE
"802.1X-2001 9.4.2, EAPOL Logoff frames received"
::= { hpicfDot1xAuthStatsEntry 4 }
hpicfDot1xAuthEapolRespIdFramesRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of EAP Resp/Id frames that have
been received by this Authenticator."
REFERENCE
"802.1X-2001 9.4.2, EAPOL Resp/Id frames received"
::= { hpicfDot1xAuthStatsEntry 5 }
hpicfDot1xAuthEapolRespFramesRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of valid EAP Response frames
(other than Resp/Id frames) that have been
received by this Authenticator."
REFERENCE
"802.1X-2001 9.4.2, EAPOL Response frames received"
::= { hpicfDot1xAuthStatsEntry 6 }
hpicfDot1xAuthEapolReqIdFramesTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of EAP Req/Id frames that have been
transmitted by this Authenticator."
REFERENCE
"802.1X-2001 9.4.2, EAPOL Req/Id frames transmitted"
::= { hpicfDot1xAuthStatsEntry 7 }
hpicfDot1xAuthEapolReqFramesTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of EAP Request frames
(other than Rq/Id frames) that have been
transmitted by this Authenticator."
REFERENCE
"802.1X-2001 9.4.2, EAPOL Request frames transmitted"
::= { hpicfDot1xAuthStatsEntry 8 }
hpicfDot1xAuthInvalidEapolFramesRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of EAPOL frames that have been
received by this Authenticator in which the
frame type is not recognized."
REFERENCE
"802.1X-2001 9.4.2, Invalid EAPOL frames received"
::= { hpicfDot1xAuthStatsEntry 9 }
hpicfDot1xAuthEapLengthErrorFramesRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of EAPOL frames that have been received
by this Authenticator in which the Packet Body
Length field is invalid."
REFERENCE
"802.1X-2001 9.4.2, EAP length error frames received"
::= { hpicfDot1xAuthStatsEntry 10 }
hpicfDot1xAuthLastEapolFrameVersion OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The protocol version number carried in the
most recently received EAPOL frame."
REFERENCE
"802.1X-2001 9.4.2, Last EAPOL frame version"
::= { hpicfDot1xAuthStatsEntry 11 }
hpicfDot1xAuthLastEapolFrameSource OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The source MAC address carried in the
most recently received EAPOL frame."
REFERENCE
"802.1X-2001 9.4.2, Last EAPOL frame source"
::= { hpicfDot1xAuthStatsEntry 12 }
-- ---------------------------------------------------------- --
-- The Authenticator Session Statistics Table
-- ---------------------------------------------------------- --
hpicfDot1xAuthSessionStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfDot1xAuthSessionStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains the session statistics objects
for the Authenticator PAE's associated with each
shared-media Port."
REFERENCE
"802.1X-2001 9.4.4"
::= { hpicfDot1xAuthenticator 5 }
hpicfDot1xAuthSessionStatsEntry OBJECT-TYPE
SYNTAX HpicfDot1xAuthSessionStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The session statistics information for an Authenticator
PAE. This shows the current values being collected for
each session that is still in progress, or the final
values for the last valid session on each port where
there is no session currently active."
INDEX { hpicfDot1xSMAuthPaePort,
hpicfDot1xSMAuthMacAddr }
::= { hpicfDot1xAuthSessionStatsTable 1 }
HpicfDot1xAuthSessionStatsEntry ::=
SEQUENCE {
hpicfDot1xAuthSessionPerPAECountersEnabled
TruthValue,
hpicfDot1xAuthSessionOctetsRx
Counter64,
hpicfDot1xAuthSessionOctetsTx
Counter64,
hpicfDot1xAuthSessionFramesRx
Counter32,
hpicfDot1xAuthSessionFramesTx
Counter32,
hpicfDot1xAuthSessionId
SnmpAdminString,
hpicfDot1xAuthSessionAuthenticMethod
INTEGER,
hpicfDot1xAuthSessionTime
TimeTicks,
hpicfDot1xAuthSessionStartTime
TimeStamp,
hpicfDot1xAuthSessionStopTime
TimeStamp,
hpicfDot1xAuthSessionInactiveTime
TimeTicks,
hpicfDot1xAuthSessionTerminateCause
INTEGER,
hpicfDot1xAuthSessionUserName
SnmpAdminString,
hpicfDot1xAuthSessionIsForwarding
TruthValue,
hpicfDot1xAuthSessionVid
VlanIndex
}
hpicfDot1xAuthSessionPerPAECountersEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies whether individualized PAE octet and
frame counts are supported.
If TRUE then system is capable of maintaining
separate counter sets for each, of possibly many,
Authenticator PAE instance on a port.
If FALSE then system is incapable of maintaining
separate counter sets. Frame and octet counter values
returned are an aggregate of all PAE sessions on the
port."
::= { hpicfDot1xAuthSessionStatsEntry 1 }
hpicfDot1xAuthSessionOctetsRx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of octets received in user data
frames during the session."
REFERENCE
"802.1X-2001 9.4.4, Session Octets Received"
::= { hpicfDot1xAuthSessionStatsEntry 2 }
hpicfDot1xAuthSessionOctetsTx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of octets transmitted in user data
frames during the session."
REFERENCE
"802.1X-2001 9.4.4, Session Octets Transmitted"
::= { hpicfDot1xAuthSessionStatsEntry 3 }
hpicfDot1xAuthSessionFramesRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of user data frames received
during the session."
REFERENCE
"802.1X-2001 9.4.4, Session Frames Received"
::= { hpicfDot1xAuthSessionStatsEntry 4 }
hpicfDot1xAuthSessionFramesTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of user data frames transmitted
during the session."
REFERENCE
"802.1X-2001 9.4.4, Session Frames Transmitted"
::= { hpicfDot1xAuthSessionStatsEntry 5 }
hpicfDot1xAuthSessionId OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique identifier for the session, in the
form of a printable ASCII string of at least
three characters."
REFERENCE
"802.1X-2001 9.4.4, Session Identifier"
::= { hpicfDot1xAuthSessionStatsEntry 6 }
hpicfDot1xAuthSessionAuthenticMethod OBJECT-TYPE
SYNTAX INTEGER {
remoteAuthServer(1),
localAuthServer(2),
localandremoteAuthServer(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The authentication method used to establish the
session."
REFERENCE
"802.1X-2001 9.4.4, Session Authentication Method"
::= { hpicfDot1xAuthSessionStatsEntry 7 }
hpicfDot1xAuthSessionTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The duration of the session in seconds."
REFERENCE
"802.1X-2001 9.4.4, Session Time"
::= { hpicfDot1xAuthSessionStatsEntry 8 }
hpicfDot1xAuthSessionStartTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the value of sysUpTime at the
time Supplicant was successfully authenticated."
::= { hpicfDot1xAuthSessionStatsEntry 9 }
hpicfDot1xAuthSessionStopTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the value of sysUpTime at the
time an authenticated Supplicant was de-authenticated,
as a result of an EAPOL-Logoff, reauthentication period
expiration, or forced asynchronous reauthentication."
::= { hpicfDot1xAuthSessionStatsEntry 10 }
hpicfDot1xAuthSessionInactiveTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This time (in seconds) since last user data frames,
either rx or tx, were observed."
::= { hpicfDot1xAuthSessionStatsEntry 11 }
hpicfDot1xAuthSessionTerminateCause OBJECT-TYPE
SYNTAX INTEGER {
supplicantLogoff(1),
portFailure(2),
supplicantRestart(3),
reauthFailed(4),
authControlForceUnauth(5),
portReInit(6),
portAdminDisabled(7),
notTerminatedYet(999)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The reason for the session termination."
REFERENCE
"802.1X-2001 9.4.4, Session Terminate Cause"
::= { hpicfDot1xAuthSessionStatsEntry 12 }
hpicfDot1xAuthSessionUserName OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The User-Name representing the identity of the
Supplicant PAE."
REFERENCE
"802.1X-2001 9.4.4, Session User Name"
::= { hpicfDot1xAuthSessionStatsEntry 13 }
hpicfDot1xAuthSessionIsForwarding OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies whether traffic originating from
Supplicant PAE is being forwarded by
Authenticator PAE.
If TRUE, then Authenticator is forwarding
Supplicant's traffic
If FALSE, then Authenticator is not forwarding
(blocking) Supplicant's traffic."
::= { hpicfDot1xAuthSessionStatsEntry 14 }
hpicfDot1xAuthSessionVid OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The PVID on which user data frames are being forwarded."
::= { hpicfDot1xAuthSessionStatsEntry 15 }
-- ---------------------------------------------------------- --
-- Global Objects for Authenticator
-- ---------------------------------------------------------- --
hpicfDot1xAuthAllowGvrpVlans OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This object allows enable/disable the use
of RADIUS-assigned dynamic (GVRP) VLANs."
::= { hpicfDot1xAuthenticator 6 }
-- ---------------------------------------------------------- --
-- The PAE Supplicant Group
-- ---------------------------------------------------------- --
-- placeholder
-- ---------------------------------------------------------- --
-- The Supplicant Configuration Table
-- (AUGMENTS dot1xSuppConfigEntry)
-- ---------------------------------------------------------- --
-- place holder
hpicfDot1xSuppConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfDot1xSuppConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table suplements the 'dot1xSuppConfigTable'."
::= { hpicfDot1xSupplicant 1 }
hpicfDot1xSuppConfigEntry OBJECT-TYPE
SYNTAX HpicfDot1xSuppConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The fields in these entries will be used to supplement
'dot1xSuppConfigEntry'."
AUGMENTS { dot1xSuppConfigEntry }
::= { hpicfDot1xSuppConfigTable 1 }
HpicfDot1xSuppConfigEntry ::=
SEQUENCE {
hpicfDot1xSuppConfigIdentity DisplayString,
hpicfDot1xSuppConfigPassword DisplayString
}
hpicfDot1xSuppConfigIdentity OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This object can be used to set/get the identity
802.1x supplicant supplies to its authenticator."
::= { hpicfDot1xSuppConfigEntry 1 }
hpicfDot1xSuppConfigPassword OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This object can be used to set the password
the supplicant uses for MD5 authentication."
::= { hpicfDot1xSuppConfigEntry 2 }
-- ---------------------------------------------------------- --
-- Conformance Information
-- ---------------------------------------------------------- --
hpicfDot1xConformance OBJECT IDENTIFIER ::= { hpicfDot1xMIB 2 }
hpicfDot1xGroups OBJECT IDENTIFIER ::= { hpicfDot1xConformance 1 }
hpicfDot1xCompliances OBJECT IDENTIFIER
::= { hpicfDot1xConformance 2 }
-- ---------------------------------------------------------- --
-- units of conformance
-- ---------------------------------------------------------- --
hpicfDot1xPaePortGroup OBJECT-GROUP
OBJECTS {
hpicfDot1xPaePortAuth,
hpicfDot1xPaePortSupp
}
STATUS current
DESCRIPTION
"A collection of objects providing basic administrative
control over Authenticator PAE and Supplicant PAE in
system."
::= { hpicfDot1xGroups 1 }
hpicfDot1xAuthConfigGroup OBJECT-GROUP
OBJECTS {
hpicfDot1xAuthAuthVid,
hpicfDot1xAuthUnauthVid,
hpicfDot1xAuthUnauthPeriod,
hpicfDot1xAuthClientLimit,
hpicfDot1xAuthLogoffPeriod
}
STATUS deprecated
DESCRIPTION
"********* THIS GROUP IS DEPRECATED *********
A collection of objects providing basic configuration
control of over Authenticator PAEs."
::= { hpicfDot1xGroups 2 }
hpicfDot1xSMAuthConfigGroup OBJECT-GROUP
OBJECTS {
hpicfDot1xSMAuthInitialize,
hpicfDot1xSMAuthReauthenticate,
hpicfDot1xSMAuthPaeState,
hpicfDot1xSMAuthBackendAuthState,
hpicfDot1xSMAuthReAuthPeriod,
hpicfDot1xSMAuthReAuthEnabled
}
STATUS current
DESCRIPTION
"A collection of objects providing basic status and
configuration control over Authenticator PAEs running
on a shared-media port."
::= { hpicfDot1xGroups 3 }
hpicfDot1xAuthDiagGroup OBJECT-GROUP
OBJECTS {
hpicfDot1xAuthNumberOfSuccessAuthentication,
hpicfDot1xAuthNumberOfFailedAuthentication
}
STATUS current
DESCRIPTION
"A collection of objects providing basic diagnostic
Information over Authenticator PAEs."
::= { hpicfDot1xGroups 4 }
hpicfDot1xAuthStatsGroup OBJECT-GROUP
OBJECTS {
hpicfDot1xAuthEapolFramesRx,
hpicfDot1xAuthEapolFramesTx,
hpicfDot1xAuthEapolStartFramesRx,
hpicfDot1xAuthEapolLogoffFramesRx,
hpicfDot1xAuthEapolRespIdFramesRx,
hpicfDot1xAuthEapolRespFramesRx,
hpicfDot1xAuthEapolReqIdFramesTx,
hpicfDot1xAuthEapolReqFramesTx,
hpicfDot1xAuthInvalidEapolFramesRx,
hpicfDot1xAuthEapLengthErrorFramesRx,
hpicfDot1xAuthLastEapolFrameVersion,
hpicfDot1xAuthLastEapolFrameSource
}
STATUS current
DESCRIPTION
"A collection of objects providing statistics about
Authenticator PAEs running on a shared-media port."
::= { hpicfDot1xGroups 5 }
hpicfDot1xAuthSessionStatsGroup OBJECT-GROUP
OBJECTS {
hpicfDot1xAuthSessionOctetsRx,
hpicfDot1xAuthSessionOctetsTx,
hpicfDot1xAuthSessionFramesRx,
hpicfDot1xAuthSessionFramesTx,
hpicfDot1xAuthSessionId,
hpicfDot1xAuthSessionAuthenticMethod,
hpicfDot1xAuthSessionTime,
hpicfDot1xAuthSessionStartTime,
hpicfDot1xAuthSessionStopTime,
hpicfDot1xAuthSessionInactiveTime,
hpicfDot1xAuthSessionTerminateCause,
hpicfDot1xAuthSessionUserName,
hpicfDot1xAuthSessionIsForwarding,
hpicfDot1xAuthSessionVid
}
STATUS current
DESCRIPTION
"A collection of objects providing statistics about the
current, or last sessions for Authenticator PAEs running
on a shared-media port."
::= { hpicfDot1xGroups 6 }
hpicfDot1xAuthConfigGroup2 OBJECT-GROUP
OBJECTS {
hpicfDot1xAuthAuthVid,
hpicfDot1xAuthUnauthVid,
hpicfDot1xAuthUnauthPeriod,
hpicfDot1xAuthLogoffPeriod,
hpicfDot1xAuthClientLimit2
}
STATUS current
DESCRIPTION
"A collection of objects providing basic configuration
control of over Authenticator PAEs."
::= { hpicfDot1xGroups 7 }
hpicfDot1xAuthConfigGroup3 OBJECT-GROUP
OBJECTS {
hpicfDot1xAuthAuthVid,
hpicfDot1xAuthUnauthVid,
hpicfDot1xAuthUnauthPeriod,
hpicfDot1xAuthLogoffPeriod,
hpicfDot1xAuthClientLimit2,
hpicfDot1xAuthAllowGvrpVlans
}
STATUS current
DESCRIPTION
"A collection of objects providing basic configuration
control of over Authenticator PAEs."
::= { hpicfDot1xGroups 8 }
-- ---------------------------------------------------------- --
-- compliance statements
-- ---------------------------------------------------------- --
hpicfDot1xCompliance MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"********* THIS COMPLIANCE IS DEPRECATED *********
The compliance statement for devices support of
HP ProCurve IEEE 802.1X extensions MIB."
MODULE
GROUP hpicfDot1xPaePortGroup
DESCRIPTION
"This group is mandatory for systems that support
Authenticator and/or Supplicant functions of the PAE."
GROUP hpicfDot1xAuthConfigGroup
DESCRIPTION
"This group is mandatory for systems that support
Authenticator functions of the PAE."
GROUP hpicfDot1xSMAuthConfigGroup
DESCRIPTION
"This group is mandatory for systems that support
shared-media Authenticator functions of the PAE."
GROUP hpicfDot1xAuthStatsGroup
DESCRIPTION
"This group is mandatory for systems that support
the Authenticator functions of the PAE."
GROUP hpicfDot1xAuthSessionStatsGroup
DESCRIPTION
"This group is mandatory for systems that support
the Authenticator functions of the PAE."
::= { hpicfDot1xCompliances 1 }
hpicfDot1xCompliance2 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"********* THIS COMPLIANCE IS DEPRECATED *********
The compliance statement for devices support of
HP ProCurve IEEE 802.1X extensions MIB."
MODULE
GROUP hpicfDot1xPaePortGroup
DESCRIPTION
"This group is mandatory for systems that support
Authenticator and/or Supplicant functions of the PAE."
GROUP hpicfDot1xAuthConfigGroup2
DESCRIPTION
"This group is mandatory for systems that support
Authenticator functions of the PAE."
GROUP hpicfDot1xSMAuthConfigGroup
DESCRIPTION
"This group is mandatory for systems that support
shared-media Authenticator functions of the PAE."
GROUP hpicfDot1xAuthStatsGroup
DESCRIPTION
"This group is mandatory for systems that support
the Authenticator functions of the PAE."
GROUP hpicfDot1xAuthSessionStatsGroup
DESCRIPTION
"This group is mandatory for systems that support
the Authenticator functions of the PAE."
::= { hpicfDot1xCompliances 2 }
hpicfDot1xCompliance3 MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for devices support of
HP ProCurve IEEE 802.1X extensions MIB."
MODULE
GROUP hpicfDot1xPaePortGroup
DESCRIPTION
"This group is mandatory for systems that support
Authenticator and/or Supplicant functions of the PAE."
GROUP hpicfDot1xAuthConfigGroup3
DESCRIPTION
"This group is mandatory for systems that support
Authenticator functions of the PAE."
GROUP hpicfDot1xSMAuthConfigGroup
DESCRIPTION
"This group is mandatory for systems that support
shared-media Authenticator functions of the PAE."
GROUP hpicfDot1xAuthStatsGroup
DESCRIPTION
"This group is mandatory for systems that support
the Authenticator functions of the PAE."
GROUP hpicfDot1xAuthSessionStatsGroup
DESCRIPTION
"This group is mandatory for systems that support
the Authenticator functions of the PAE."
::= { hpicfDot1xCompliances 3 }
END
|