-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathENTERASYS-MULTI-USER-8021X-MIB
1110 lines (986 loc) · 39.3 KB
/
ENTERASYS-MULTI-USER-8021X-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
ENTERASYS-MULTI-USER-8021X-MIB DEFINITIONS ::= BEGIN
-- This module provides authoritative definitions for Enterasys
-- Networks' Multi User 802.1X MIB module.
--
-- This module will be extended, as needed.
-- Enterasys Networks reserves the right to make changes in this
-- specification and other information contained in this document
-- without prior notice. The reader should consult Enterasys Networks
-- to determine whether any such changes have been made.
--
-- In no event shall Enterasys Networks be liable for any incidental,
-- indirect, special, or consequential damages whatsoever (including
-- but not limited to lost profits) arising out of or related to this
-- document or the information contained in it, even if Enterasys
-- Networks has been advised of, known, or should have known, the
-- possibility of such damages.
--
-- Enterasys Networks grants vendors, end-users, and other interested
-- parties a non-exclusive license to use this Specification in
-- connection with the management of Enterasys Networks products.
-- Copyright August, 2004 Enterasys Networks, Inc.
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Counter32, Counter64, Unsigned32,
TimeTicks
FROM SNMPv2-SMI
TruthValue, MacAddress
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
dot1xPaePortNumber
FROM IEEE8021-PAE-MIB
etsysModules
FROM ENTERASYS-MIB-NAMES;
etsysMultiUser8021xMIB MODULE-IDENTITY
LAST-UPDATED "200411111531Z" -- Thu Nov 11 15:31 GMT 2004
ORGANIZATION "Enterasys Networks, Inc"
CONTACT-INFO
"Postal: Enterasys Networks
50 Minuteman Rd.
Andover, MA 01810-1008
USA
Phone: +1 978 684 1000
E-mail: [email protected]
WWW: http://www.enterasys.com"
DESCRIPTION
"This MIB module defines a portion of the SNMP enterprise
MIBs under Enterasys Networks' enterprise OID pertaining to
Multi-User IEEE 802.1X authentication.
This MIB is designed to supplement and be used in connection
with the standard IEEE 802.1X-2001 MIB."
REVISION "200411111531Z" -- Thu Nov 11 15:31 GMT 2004
DESCRIPTION "The initial version of this MIB module."
::= { etsysModules 53 }
-- -------------------------------------------------------------
-- Branches of the Enterasys 802.1X Extensions MIB
-- -------------------------------------------------------------
etsysMultiUser8021xObjects OBJECT IDENTIFIER
::= { etsysMultiUser8021xMIB 1 }
etsysMultiUser8021xSystem OBJECT IDENTIFIER
::= { etsysMultiUser8021xObjects 1 }
etsysMultiUser8021xAccessEntity OBJECT IDENTIFIER
::= { etsysMultiUser8021xObjects 2 }
-- -------------------------------------------------------------
-- The 802.1X Access Entity Table
-- -------------------------------------------------------------
etsysMulti1xAccessEntityTable OBJECT-TYPE
SYNTAX SEQUENCE OF EtsysMulti1xAccessEntityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The system and configuration information for all the
Access Entities."
REFERENCE "9.6.1"
::= { etsysMultiUser8021xAccessEntity 1 }
etsysMulti1xAccessEntityEntry OBJECT-TYPE
SYNTAX EtsysMulti1xAccessEntityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The system and configuration information for an
individual Access Entity."
INDEX { dot1xPaePortNumber, etsysMulti1xAeIndex }
::= { etsysMulti1xAccessEntityTable 1 }
EtsysMulti1xAccessEntityEntry ::=
SEQUENCE {
etsysMulti1xAeIndex Unsigned32,
etsysMulti1xAeActive TruthValue,
etsysMulti1xAeState INTEGER,
etsysMulti1xAeBackendAuthState INTEGER,
etsysMulti1xAeInitialize TruthValue,
etsysMulti1xAeReauthenticate TruthValue,
etsysMulti1xAeReAuthPeriod Unsigned32,
etsysMulti1xAeSupplicantAddress MacAddress,
etsysMulti1xAeUserName SnmpAdminString
}
etsysMulti1xAeIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates if this Access Entity is currently active."
::= { etsysMulti1xAccessEntityEntry 1 }
etsysMulti1xAeActive OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates if this Access Entity is currently active."
::= { etsysMulti1xAccessEntityEntry 2 }
etsysMulti1xAeState OBJECT-TYPE
SYNTAX INTEGER {
initialize(1),
disconnected(2),
connecting(3),
authenticating(4),
authenticated(5),
aborting(6),
held(7),
forceAuth(8),
forceUnauth(9)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current value of the Access Entity state machine."
REFERENCE "9.4.1, Authenticator PAE state"
::= { etsysMulti1xAccessEntityEntry 3 }
etsysMulti1xAeBackendAuthState OBJECT-TYPE
SYNTAX INTEGER {
request(1),
response(2),
success(3),
fail(4),
timeout(5),
idle(6),
initialize(7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current state of the Backend Authentication state machine."
REFERENCE "9.4.1, Backend Authentication state"
::= { etsysMulti1xAccessEntityEntry 4 }
etsysMulti1xAeInitialize OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The initialization control for this Access Entity.
Setting this attribute TRUE causes the Access Entity to be
initialized. The attribute value reverts to FALSE once
initialization has completed."
REFERENCE "9.6.1.2, Initialize Port"
::= { etsysMulti1xAccessEntityEntry 5 }
etsysMulti1xAeReauthenticate OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The reauthentication control for this Access Entity.
Setting this attribute TRUE causes the Access Entity state
machine to reauthenticate the Supplicant. Setting this
attribute FALSE has no effect. This attribute always
returns FALSE when it is read."
REFERENCE "9.4.1.3 Reauthenticate"
::= { etsysMulti1xAccessEntityEntry 6 }
etsysMulti1xAeReAuthPeriod OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
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 "9.4.1, reAuthPeriod"
DEFVAL { 3600 }
::= { etsysMulti1xAccessEntityEntry 7 }
etsysMulti1xAeSupplicantAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The MAC address that this Access Entity is currently bound to."
::= { etsysMulti1xAccessEntityEntry 8 }
etsysMulti1xAeUserName OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The User-Name representing the identity of the Supplicant PAE."
REFERENCE "9.4.4, Session User Name"
::= { etsysMulti1xAccessEntityEntry 9 }
-- -------------------------------------------------------------
-- The 802.1X Access Entity Statistics Table
-- -------------------------------------------------------------
etsysMulti1xAccessEntityStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF EtsysMulti1xAccessEntityStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The statistics objects for the all the Access Entities."
REFERENCE "9.4.2 Authenticator Statistics"
::= { etsysMultiUser8021xAccessEntity 2 }
etsysMulti1xAccessEntityStatsEntry OBJECT-TYPE
SYNTAX EtsysMulti1xAccessEntityStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The statistics information for an individual Access Entity."
AUGMENTS { etsysMulti1xAccessEntityEntry }
::= { etsysMulti1xAccessEntityStatsTable 1 }
EtsysMulti1xAccessEntityStatsEntry ::=
SEQUENCE {
etsysMulti1xAeEapolFramesRx Counter32,
etsysMulti1xAeEapolFramesTx Counter32,
etsysMulti1xAeEapolStartFramesRx Counter32,
etsysMulti1xAeEapolLogoffFramesRx Counter32,
etsysMulti1xAeEapolRespIdFramesRx Counter32,
etsysMulti1xAeEapolRespFramesRx Counter32,
etsysMulti1xAeEapolReqIdFramesTx Counter32,
etsysMulti1xAeEapolReqFramesTx Counter32,
etsysMulti1xAeInvalidEapolFramesRx Counter32,
etsysMulti1xAeEapLengthErrorFramesRx Counter32,
etsysMulti1xAeEapolFrameVersion Unsigned32,
etsysMulti1xAeEapolFrameSource MacAddress
}
etsysMulti1xAeEapolFramesRx 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 Access Entity."
REFERENCE "9.4.2, EAPOL frames received"
::= { etsysMulti1xAccessEntityStatsEntry 1 }
etsysMulti1xAeEapolFramesTx 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 Access Entity."
REFERENCE "9.4.2, EAPOL frames transmitted"
::= { etsysMulti1xAccessEntityStatsEntry 2 }
etsysMulti1xAeEapolStartFramesRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of EAPOL Start frames that have been received by
this Access Entity."
REFERENCE "9.4.2, EAPOL Start frames received"
::= { etsysMulti1xAccessEntityStatsEntry 3 }
etsysMulti1xAeEapolLogoffFramesRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of EAPOL Logoff frames that have been received by
this Access Entity."
REFERENCE "9.4.2, EAPOL Logoff frames received"
::= { etsysMulti1xAccessEntityStatsEntry 4 }
etsysMulti1xAeEapolRespIdFramesRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of EAP Resp/Id frames that have been received by
this Access Entity."
REFERENCE "9.4.2, EAPOL Resp/Id frames received"
::= { etsysMulti1xAccessEntityStatsEntry 5 }
etsysMulti1xAeEapolRespFramesRx 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 Access Entity."
REFERENCE "9.4.2, EAPOL Response frames received"
::= { etsysMulti1xAccessEntityStatsEntry 6 }
etsysMulti1xAeEapolReqIdFramesTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of EAP Req/Id frames that have been transmitted
by this Access Entity."
REFERENCE "9.4.2, EAPOL Req/Id frames transmitted"
::= { etsysMulti1xAccessEntityStatsEntry 7 }
etsysMulti1xAeEapolReqFramesTx 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 Access Entity."
REFERENCE "9.4.2, EAPOL Request frames transmitted"
::= { etsysMulti1xAccessEntityStatsEntry 8 }
etsysMulti1xAeInvalidEapolFramesRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of EAPOL frames that have been received by this
Access Entity in which the frame type is not recognized."
REFERENCE "9.4.2, Invalid EAPOL frames received"
::= { etsysMulti1xAccessEntityStatsEntry 9 }
etsysMulti1xAeEapLengthErrorFramesRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of EAPOL frames that have been received by this
Access Entity in which the Packet Body Length field is invalid."
REFERENCE "9.4.2, EAP length error frames received"
::= { etsysMulti1xAccessEntityStatsEntry 10 }
etsysMulti1xAeEapolFrameVersion OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The protocol version number carried in the most recently
received EAPOL frame."
REFERENCE "9.4.2, Last EAPOL frame version"
::= { etsysMulti1xAccessEntityStatsEntry 11 }
etsysMulti1xAeEapolFrameSource OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The source MAC address carried in the most recently received
EAPOL frame."
REFERENCE "9.4.2, Last EAPOL frame source"
::= { etsysMulti1xAccessEntityStatsEntry 12 }
-- -------------------------------------------------------------
-- The 802.1X Access Entity Diagnostic Table
-- -------------------------------------------------------------
etsysMulti1xAeDiagTable OBJECT-TYPE
SYNTAX SEQUENCE OF EtsysMulti1xAeDiagEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The diagnostics objects for all the Access Entities."
REFERENCE "9.4.3 Authenticator Diagnostics"
::= { etsysMultiUser8021xAccessEntity 3 }
etsysMulti1xAeDiagEntry OBJECT-TYPE
SYNTAX EtsysMulti1xAeDiagEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The diagnostics information for an individual Access
Entity."
AUGMENTS { etsysMulti1xAccessEntityEntry }
::= { etsysMulti1xAeDiagTable 1 }
EtsysMulti1xAeDiagEntry ::=
SEQUENCE {
etsysMulti1xAeEntersConnecting Counter32,
etsysMulti1xAeEapLogoffsWhileConnecting Counter32,
etsysMulti1xAeEntersAuthenticating Counter32,
etsysMulti1xAeAuthSuccessWhileAuthenticating Counter32,
etsysMulti1xAeAuthTimeoutsWhileAuthenticating Counter32,
etsysMulti1xAeAuthFailWhileAuthenticating Counter32,
etsysMulti1xAeAuthReauthsWhileAuthenticating Counter32,
etsysMulti1xAeAuthEapStartsWhileAuthenticating Counter32,
etsysMulti1xAeAuthEapLogoffWhileAuthenticating Counter32,
etsysMulti1xAeAuthReauthsWhileAuthenticated Counter32,
etsysMulti1xAeAuthEapStartsWhileAuthenticated Counter32,
etsysMulti1xAeAuthEapLogoffWhileAuthenticated Counter32,
etsysMulti1xAeBackendResponses Counter32,
etsysMulti1xAeBackendAccessChallenges Counter32,
etsysMulti1xAeBackendOtherRequestsToSupplicant Counter32,
etsysMulti1xAeBackendNonNakResponsesFromSupplicant Counter32,
etsysMulti1xAeBackendAuthSuccesses Counter32,
etsysMulti1xAeBackendAuthFails Counter32
}
etsysMulti1xAeEntersConnecting OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counts the number of times that the state machine transitions
to the CONNECTING state from any other state."
REFERENCE "9.4.2, 8.5.4.2.1"
::= { etsysMulti1xAeDiagEntry 1 }
etsysMulti1xAeEapLogoffsWhileConnecting OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counts the number of times that the state machine transitions
from CONNECTING to DISCONNECTED as a result of receiving an
EAPOL-Logoff message."
REFERENCE "9.4.2, 8.5.4.2.2"
::= { etsysMulti1xAeDiagEntry 2 }
etsysMulti1xAeEntersAuthenticating OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counts the number of times that the state machine transitions
from CONNECTING to AUTHENTICATING, as a result of an
EAP-Response/Identity message being received from the
Supplicant."
REFERENCE "9.4.2, 8.5.4.2.3"
::= { etsysMulti1xAeDiagEntry 3 }
etsysMulti1xAeAuthSuccessWhileAuthenticating OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counts the number of times that the state machine transitions
from AUTHENTICATING to AUTHENTICATED, as a result of the
Backend Authentication state machine indicating successful
authentication of the Supplicant (authSuccess = TRUE)."
REFERENCE "9.4.2, 8.5.4.2.4"
::= { etsysMulti1xAeDiagEntry 4 }
etsysMulti1xAeAuthTimeoutsWhileAuthenticating OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counts the number of times that the state machine transitions
from AUTHENTICATING to ABORTING, as a result of the Backend
Authentication state machine indicating authentication
timeout (authTimeout = TRUE)."
REFERENCE "9.4.2, 8.5.4.2.5"
::= { etsysMulti1xAeDiagEntry 5 }
etsysMulti1xAeAuthFailWhileAuthenticating OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counts the number of times that the state machine transitions
from AUTHENTICATING to HELD, as a result of the Backend
Authentication state machine indicating authentication
failure (authFail = TRUE)."
REFERENCE "9.4.2, 8.5.4.2.6"
::= { etsysMulti1xAeDiagEntry 6 }
etsysMulti1xAeAuthReauthsWhileAuthenticating OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counts the number of times that the state machine transitions
from AUTHENTICATING to ABORTING, as a result of a
reauthentication request (reAuthenticate = TRUE)."
REFERENCE "9.4.2, 8.5.4.2.7"
::= { etsysMulti1xAeDiagEntry 7 }
etsysMulti1xAeAuthEapStartsWhileAuthenticating OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counts the number of times that the state machine transitions
from AUTHENTICATING to ABORTING, as a result of an
EAPOL-Start message being received from the Supplicant."
REFERENCE "9.4.2, 8.5.4.2.8"
::= { etsysMulti1xAeDiagEntry 8 }
etsysMulti1xAeAuthEapLogoffWhileAuthenticating OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counts the number of times that the state machine transitions
from AUTHENTICATING to ABORTING, as a result of an
EAPOL-Logoff message being received from the Supplicant."
REFERENCE "9.4.2, 8.5.4.2.9"
::= { etsysMulti1xAeDiagEntry 9 }
etsysMulti1xAeAuthReauthsWhileAuthenticated OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counts the number of times that the state machine transitions
from AUTHENTICATED to CONNECTING, as a result of a
reauthentication request (reAuthenticate = TRUE)."
REFERENCE "9.4.2, 8.5.4.2.10"
::= { etsysMulti1xAeDiagEntry 10 }
etsysMulti1xAeAuthEapStartsWhileAuthenticated OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counts the number of times that the state machine transitions
from AUTHENTICATED to CONNECTING, as a result of an
EAPOL-Start message being received from the Supplicant."
REFERENCE "9.4.2, 8.5.4.2.11"
::= { etsysMulti1xAeDiagEntry 11 }
etsysMulti1xAeAuthEapLogoffWhileAuthenticated OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counts the number of times that the state machine transitions
from AUTHENTICATED to DISCONNECTED, as a result of an
EAPOL-Logoff message being received from the Supplicant."
REFERENCE "9.4.2, 8.5.4.2.12"
::= { etsysMulti1xAeDiagEntry 12 }
etsysMulti1xAeBackendResponses OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counts the number of times that the state machine sends an
initial Access-Request packet to the Authentication server
(i.e., executes sendRespToServer on entry to the RESPONSE
state). Indicates that the Authenticator attempted
communication with the Authentication Server."
REFERENCE "9.4.2, 8.5.6.2.1"
::= { etsysMulti1xAeDiagEntry 13 }
etsysMulti1xAeBackendAccessChallenges OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counts the number of times that the state machine receives
an initial Access-Challenge packet from the Authentication
server (i.e., aReq becomes TRUE, causing exit from the
RESPONSE state). Indicates that the Authentication Server
has communication with the Authenticator."
REFERENCE "9.4.2, 8.5.6.2.2"
::= { etsysMulti1xAeDiagEntry 14 }
etsysMulti1xAeBackendOtherRequestsToSupplicant OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counts the number of times that the state machine sends
an EAP-Request packet (other than an Identity, Notification,
Failure or Success message) to the Supplicant (i.e., executes
txReq on entry to the REQUEST state). Indicates that the
Authenticator chose an EAP-method."
REFERENCE "9.4.2, 8.5.6.2.3"
::= { etsysMulti1xAeDiagEntry 15 }
etsysMulti1xAeBackendNonNakResponsesFromSupplicant OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counts the number of times that the state machine receives a
response from the Supplicant to an initial EAP-Request, and
the response is something other than EAP-NAK (i.e., rxResp
becomes TRUE, causing the state machine to transition from
REQUEST to RESPONSE, and the response is not an EAP-NAK).
Indicates that the Supplicant can respond to the
Authenticator's chosen EAP-method."
REFERENCE "9.4.2, 8.5.6.2.4"
::= { etsysMulti1xAeDiagEntry 16 }
etsysMulti1xAeBackendAuthSuccesses OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counts the number of times that the state machine receives an
EAP-Success message from the Authentication Server (i.e.,
aSuccess becomes TRUE, causing a transition from RESPONSE to
SUCCESS). Indicates that the Supplicant has successfully
authenticated to the Authentication Server."
REFERENCE "9.4.2, 8.5.6.2.5"
::= { etsysMulti1xAeDiagEntry 17 }
etsysMulti1xAeBackendAuthFails OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counts the number of times that the state machine receives an
EAP-Failure message from the Authentication Server (i.e.,
aFail becomes TRUE, causing a transition from RESPONSE to
FAIL). Indicates that the Supplicant has not authenticated to
the Authentication Server."
REFERENCE "9.4.2, 8.5.6.2.6"
::= { etsysMulti1xAeDiagEntry 18 }
-- ---------------------------------------------------------- --
-- The 802.1X Session Statistics Table
-- ---------------------------------------------------------- --
etsysMulti1xSessionStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF EtsysMulti1xSessionStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The session statistics for all the Access Entities."
REFERENCE "9.4.4"
::= { etsysMultiUser8021xAccessEntity 4 }
etsysMulti1xSessionStatsEntry OBJECT-TYPE
SYNTAX EtsysMulti1xSessionStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The session statistics for an individual Access Entity.
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 Access Entity where there is no session
currently active."
AUGMENTS { etsysMulti1xAccessEntityEntry }
::= { etsysMulti1xSessionStatsTable 1 }
EtsysMulti1xSessionStatsEntry ::=
SEQUENCE {
etsysMulti1xSessionOctetsRx Counter64,
etsysMulti1xSessionOctetsTx Counter64,
etsysMulti1xSessionFramesRx Counter32,
etsysMulti1xSessionFramesTx Counter32,
etsysMulti1xSessionId SnmpAdminString,
etsysMulti1xSessionAuthenticMethod INTEGER,
etsysMulti1xSessionTime TimeTicks,
etsysMulti1xSessionTerminateCause INTEGER,
etsysMulti1xSessionUserName SnmpAdminString,
etsysMulti1xSessionActive TruthValue
}
etsysMulti1xSessionOctetsRx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of octets of user data received on this port
for this session."
REFERENCE "9.4.4, Session Octets Received"
::= { etsysMulti1xSessionStatsEntry 1 }
etsysMulti1xSessionOctetsTx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of octets of user data transmitted on this port
for this session."
REFERENCE "9.4.4, Session Octets Transmitted"
::= { etsysMulti1xSessionStatsEntry 2 }
etsysMulti1xSessionFramesRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of user data frames received on this port for this
session."
REFERENCE "9.4.4, Session Frames Received"
::= { etsysMulti1xSessionStatsEntry 3 }
etsysMulti1xSessionFramesTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of user data frames transmitted on this port for
this session."
REFERENCE "9.4.4, Session Frames Transmitted"
::= { etsysMulti1xSessionStatsEntry 4 }
etsysMulti1xSessionId 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 "9.4.4, Session Identifier"
::= { etsysMulti1xSessionStatsEntry 5 }
etsysMulti1xSessionAuthenticMethod OBJECT-TYPE
SYNTAX INTEGER {
remoteAuthServer(1),
localAuthServer(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The authentication method used to establish the session."
REFERENCE "9.4.4, Session Authentication Method"
::= { etsysMulti1xSessionStatsEntry 6 }
etsysMulti1xSessionTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The duration of the session in seconds."
REFERENCE "9.4.4, Session Time"
::= { etsysMulti1xSessionStatsEntry 7 }
etsysMulti1xSessionTerminateCause 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 "9.4.4, Session Terminate Cause"
::= { etsysMulti1xSessionStatsEntry 8 }
etsysMulti1xSessionUserName OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The User-Name representing the identity of the Supplicant PAE."
REFERENCE "9.4.4, Session User Name"
::= { etsysMulti1xSessionStatsEntry 9 }
etsysMulti1xSessionActive OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates if this session is currently active."
::= { etsysMulti1xSessionStatsEntry 10 }
-- ---------------------------------------------------------- --
-- The 802.1X Supplicant Address Table
-- ---------------------------------------------------------- --
etsysMulti1xSupplicantAddressTable OBJECT-TYPE
SYNTAX SEQUENCE OF EtsysMulti1xSupplicantAddressEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Access Entities relative to the supplicant MAC address,
port, and access entity index."
::= { etsysMultiUser8021xAccessEntity 5 }
etsysMulti1xSupplicantAddressEntry OBJECT-TYPE
SYNTAX EtsysMulti1xSupplicantAddressEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Some basic information about an individual Access Entity."
INDEX { etsysMulti1xAeSupplicantAddress,
dot1xPaePortNumber,
etsysMulti1xAeIndex }
::= { etsysMulti1xSupplicantAddressTable 1 }
EtsysMulti1xSupplicantAddressEntry ::=
SEQUENCE {
etsysMulti1xSupplicantActive INTEGER,
etsysMulti1xSupplicantUserName SnmpAdminString
}
etsysMulti1xSupplicantActive OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates if the associated Access Entity is currently active."
::= { etsysMulti1xSupplicantAddressEntry 1 }
etsysMulti1xSupplicantUserName OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The User-Name representing the identity of the Supplicant PAE."
REFERENCE "9.4.4, Session User Name"
::= { etsysMulti1xSupplicantAddressEntry 2 }
-- -------------------------------------------------------------
-- The 802.1X User Name Table
-- -------------------------------------------------------------
etsysMulti1xUserNameTable OBJECT-TYPE
SYNTAX SEQUENCE OF EtsysMulti1xUserNameEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Access Entities relative to the supplicant user name,
or the initial part of the supplicant user name, port,
and access entity index."
::= { etsysMultiUser8021xAccessEntity 6 }
etsysMulti1xUserNameEntry OBJECT-TYPE
SYNTAX EtsysMulti1xUserNameEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Some basic information about an individual Access Entity."
INDEX { etsysMulti1xUserNameIndex,
dot1xPaePortNumber,
etsysMulti1xAeIndex }
::= { etsysMulti1xUserNameTable 1 }
EtsysMulti1xUserNameEntry ::=
SEQUENCE {
etsysMulti1xUserNameIndex SnmpAdminString,
etsysMulti1xUserName SnmpAdminString,
etsysMulti1xUserActive TruthValue,
etsysMulti1xUserAddress MacAddress
}
etsysMulti1xUserNameIndex OBJECT-TYPE
SYNTAX SnmpAdminString ( SIZE( 8 ) )
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The fixed length equivalent of the etsysMulti1xUserName object.
When the length of the corresponding etsysMulti1xUserName object
is less then 8 octets this object is padded with null octets.
When the length of the corresponding etsysMulti1xUserName object
is greater than 8 octets this object has the value of the
etsysMulti1xUserName object truncated to 20 octets."
::= { etsysMulti1xUserNameEntry 1 }
etsysMulti1xUserName OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The User-Name representing the identity of the Supplicant PAE."
REFERENCE "9.4.4, Session User Name"
::= { etsysMulti1xUserNameEntry 2 }
etsysMulti1xUserActive OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates if the associated Access Entity is currently active."
::= { etsysMulti1xUserNameEntry 3 }
etsysMulti1xUserAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The User-Name representing the identity of the Supplicant PAE."
REFERENCE "9.4.4, Session User Name"
::= { etsysMulti1xUserNameEntry 4 }
-- -------------------------------------------------------------
-- The 802.1X Active Access Entity Table
-- -------------------------------------------------------------
etsysMulti1xActiveAccessEntityTable OBJECT-TYPE
SYNTAX SEQUENCE OF EtsysMulti1xActiveAccessEntityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The active Access Entities."
REFERENCE "9.6.1"
::= { etsysMultiUser8021xAccessEntity 7 }
etsysMulti1xActiveAccessEntityEntry OBJECT-TYPE
SYNTAX EtsysMulti1xActiveAccessEntityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An individual active Access Entity."
INDEX { dot1xPaePortNumber, etsysMulti1xAeIndex }
::= { etsysMulti1xActiveAccessEntityTable 1 }
EtsysMulti1xActiveAccessEntityEntry ::=
SEQUENCE {
etsysMulti1xActiveSupplicantAddress MacAddress
}
etsysMulti1xActiveSupplicantAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The MAC address that this active Access Entity is currently
bound to."
::= { etsysMulti1xActiveAccessEntityEntry 1 }
-- -------------------------------------------------------------
-- Conformance Information
-- -------------------------------------------------------------
etsysMultiUser8021xConformance OBJECT IDENTIFIER
::= { etsysMultiUser8021xMIB 2 }
etsysMultiUser8021xGroups OBJECT IDENTIFIER
::= { etsysMultiUser8021xConformance 1 }
etsysMultiUser8021xCompliances OBJECT IDENTIFIER
::= { etsysMultiUser8021xConformance 2 }
-- -------------------------------------------------------------
-- Units of conformance
-- -------------------------------------------------------------
etsysMultiUser8021xAccessEntityGroup OBJECT-GROUP
OBJECTS {
etsysMulti1xAeActive,
etsysMulti1xAeState,
etsysMulti1xAeBackendAuthState,
etsysMulti1xAeInitialize,
etsysMulti1xAeReauthenticate,
etsysMulti1xAeReAuthPeriod,
etsysMulti1xAeSupplicantAddress,
etsysMulti1xAeUserName
}
STATUS current
DESCRIPTION
"A collection of objects providing system and configuration
information for all the Access Entities running on all the
ports."
::= { etsysMultiUser8021xGroups 1 }
etsysMultiUser8021xAccessEntityStatsGroup OBJECT-GROUP
OBJECTS {
etsysMulti1xAeEapolFramesRx,
etsysMulti1xAeEapolFramesTx,
etsysMulti1xAeEapolStartFramesRx,
etsysMulti1xAeEapolLogoffFramesRx,
etsysMulti1xAeEapolRespIdFramesRx,
etsysMulti1xAeEapolRespFramesRx,
etsysMulti1xAeEapolReqIdFramesTx,
etsysMulti1xAeEapolReqFramesTx,
etsysMulti1xAeInvalidEapolFramesRx,
etsysMulti1xAeEapLengthErrorFramesRx,
etsysMulti1xAeEapolFrameVersion,
etsysMulti1xAeEapolFrameSource