This repository has been archived by the owner. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
/
AT-PAE-MIB
1178 lines (1065 loc) · 37.1 KB
/
AT-PAE-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
-- ============================================================================
-- AT-PAE.MIB, Allied Telesis enterprise MIB: Port Authentication
--
-- Copied from ATR-PAE.MIB of pre 2.9.1 release
--
-- Copyright (c) 2006 by Allied Telesis, Inc.
-- All rights reserved.
--
-- ============================================================================
AT-PAE-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
NOTIFICATION-TYPE,
OBJECT-TYPE,
Counter32,
Unsigned32,
TimeTicks
FROM SNMPv2-SMI
MacAddress,
TEXTUAL-CONVENTION,
TruthValue,
DisplayString
FROM SNMPv2-TC
InterfaceIndex
FROM IF-MIB
modules
FROM AT-SMI-MIB
;
portAuth MODULE-IDENTITY
LAST-UPDATED "200701151100Z"
ORGANIZATION "Allied Telesis, Inc"
CONTACT-INFO
"http://www.alliedtelesis.com"
DESCRIPTION
"Description of atrDot1xUnauthenticated is modified."
REVISION "200701151100Z"
DESCRIPTION
"The Port Access Entity module for managing AT
Port Authentication."
REVISION "200412210000Z"
DESCRIPTION
"Initial Revision"
::= { modules 118 }
atrPaeMib OBJECT IDENTIFIER ::= { portAuth 1 }
atrPaeMIBObjects OBJECT IDENTIFIER ::= { atrPaeMib 1 }
-- ---------------------------------------------------------- --
-- Textual Conventions
-- ---------------------------------------------------------- --
AtrPaeControlledDirections ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The control mode values for the Authenticator PAE."
SYNTAX INTEGER {
both(0),
in(1)
}
AtrPaeControlledPortStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The status values of the Authenticator PAE controlled
Port."
SYNTAX INTEGER {
authorised(1),
unauthorised(2)
}
AtrPaeControlledPortControl ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The control values of the Authenticator PAE controlled
Port."
SYNTAX INTEGER {
forceUnauthorised(1),
auto(2),
forceAuthorised(3)
}
-- ---------------------------------------------------------- --
-- ---------------------------------------------------------- --
-- groups in the PAE MIB
-- ---------------------------------------------------------- --
atrDot1xPaeSystem OBJECT IDENTIFIER ::= { atrPaeMIBObjects 1 }
atrDot1xPaeAuthenticator OBJECT IDENTIFIER ::= { atrPaeMIBObjects 2 }
atrDot1xTraps OBJECT IDENTIFIER ::= { atrPaeMIBObjects 3 }
atrMacBasedAuthPaeSystem OBJECT IDENTIFIER ::= { atrPaeMIBObjects 4 }
atrMacBasedAuthPaeAuthenticator OBJECT IDENTIFIER ::= { atrPaeMIBObjects 5 }
atrMacBasedAuthTraps OBJECT IDENTIFIER ::= { atrPaeMIBObjects 6 }
-- ---------------------------------------------------------- --
-- ---------------------------------------------------------- --
-- The Dot1X PAE System Group
-- ---------------------------------------------------------- --
-- ---------------------------------------------------------- --
-- The Dot1X PAE Port Table
-- ---------------------------------------------------------- --
atrDot1xPaePortTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtrDot1xPaePortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of system level information for each port
supported by the Port Access Entity. An entry appears
in this table for each port of this system."
REFERENCE
"9.6.1"
::= { atrDot1xPaeSystem 2 }
atrDot1xPaePortEntry OBJECT-TYPE
SYNTAX AtrDot1xPaePortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Port number, protocol version, and
initialisation control for a Port."
INDEX { atrDot1xPaePortNumber, atrDot1xPaePortSuppMacAddress }
::= { atrDot1xPaePortTable 1 }
AtrDot1xPaePortEntry ::=
SEQUENCE {
atrDot1xPaePortNumber
InterfaceIndex,
atrDot1xPaePortProtocolVersion
Unsigned32,
atrDot1xPaePortCapabilities
BITS,
atrDot1xPaePortInitialise
TruthValue,
atrDot1xPaePortReauthenticate
TruthValue,
atrDot1xPaePortSuppMacAddress
MacAddress
}
atrDot1xPaePortNumber OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Port number associated with this Port."
REFERENCE
"9.6.1, Port number"
::= { atrDot1xPaePortEntry 1 }
atrDot1xPaePortProtocolVersion OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The protocol version associated with this Port."
REFERENCE
"9.6.1, Protocol version"
::= { atrDot1xPaePortEntry 2 }
atrDot1xPaePortCapabilities OBJECT-TYPE
SYNTAX BITS {
atrDot1xPaePortAuthCapable(0),
-- Authenticator functions are supported
atrDot1xPaePortSuppCapable(1)
-- Supplicant functions are supported
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the PAE functionality that this Port
supports and that may be managed through this MIB."
REFERENCE
"9.6.1, PAE Capabilities"
::= { atrDot1xPaePortEntry 3 }
atrDot1xPaePortInitialise OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The initialisation control for this Port. Setting this
attribute TRUE causes the Port to be initialised.
The attribute value reverts to FALSE once initialisation
has completed."
REFERENCE
"9.6.1.2, Initialise Port"
::= { atrDot1xPaePortEntry 4 }
atrDot1xPaePortReauthenticate OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The reauthentication control for this port. 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
"9.4.1.3 Reauthenticate"
::= { atrDot1xPaePortEntry 5 }
atrDot1xPaePortSuppMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The six character MAC Address of the attached
supplicant."
::= { atrDot1xPaePortEntry 6 }
-- ---------------------------------------------------------- --
-- The Dot1X PAE Authenticator Group
-- ---------------------------------------------------------- --
-- ---------------------------------------------------------- --
-- The Dot1X Authenticator Configuration Table
-- ---------------------------------------------------------- --
atrDot1xAuthConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtrDot1xAuthConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains the configuration objects for the
Authenticator PAE associated with each port.
An entry appears in this table for each port that may
authenticate access to itself."
REFERENCE
"9.4.1 Authenticator Configuration"
::= { atrDot1xPaeAuthenticator 1 }
atrDot1xAuthConfigEntry OBJECT-TYPE
SYNTAX AtrDot1xAuthConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The configuration information for an Authenticator
PAE."
INDEX { atrDot1xPaePortNumber, atrDot1xPaePortSuppMacAddress }
::= { atrDot1xAuthConfigTable 1 }
AtrDot1xAuthConfigEntry ::=
SEQUENCE {
atrDot1xAuthPaeState
INTEGER,
atrDot1xAuthBackendAuthState
INTEGER,
atrDot1xAuthAdminControlledDirections
AtrPaeControlledDirections,
atrDot1xAuthOperControlledDirections
AtrPaeControlledDirections,
atrDot1xAuthAuthControlledPortStatus
AtrPaeControlledPortStatus,
atrDot1xAuthAuthControlledPortControl
AtrPaeControlledPortControl,
atrDot1xAuthQuietPeriod
Unsigned32,
atrDot1xAuthTxPeriod
Unsigned32,
atrDot1xAuthSuppTimeout
Unsigned32,
atrDot1xAuthServerTimeout
Unsigned32,
atrDot1xAuthMaxReq
Unsigned32,
atrDot1xAuthReAuthPeriod
Unsigned32,
atrDot1xAuthReAuthEnabled
TruthValue,
atrDot1xAuthKeyTxEnabled
TruthValue,
atrDot1xAuthPreAuthVlan
DisplayString,
atrDot1xAuthPostAuthVlan
DisplayString,
atrDot1xAuthLastAuthReason
INTEGER,
atrDot1XAuthVlanAssignment
TruthValue,
atrDot1XAuthSecureVlan
TruthValue,
atrDot1xAuthGuestVlan
DisplayString,
atrDot1XAuthMibReset
TruthValue,
atrDot1xAuthTrap
INTEGER
}
atrDot1xAuthPaeState OBJECT-TYPE
SYNTAX INTEGER {
initialise(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 Authenticator PAE state
machine."
REFERENCE
"9.4.1, Authenticator PAE state"
::= { atrDot1xAuthConfigEntry 1 }
atrDot1xAuthBackendAuthState OBJECT-TYPE
SYNTAX INTEGER {
request(1),
response(2),
success(3),
fail(4),
timeout(5),
idle(6),
initialise(7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current state of the Backend Authentication
state machine."
REFERENCE
"9.4.1, Backend Authentication state"
::= { atrDot1xAuthConfigEntry 2 }
atrDot1xAuthAdminControlledDirections OBJECT-TYPE
SYNTAX AtrPaeControlledDirections
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current value of the administrative controlled
directions parameter for the Port."
REFERENCE
"9.4.1, Admin Control Mode"
::= { atrDot1xAuthConfigEntry 3 }
atrDot1xAuthOperControlledDirections OBJECT-TYPE
SYNTAX AtrPaeControlledDirections
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current value of the operational controlled
directions parameter for the Port."
REFERENCE
"9.4.1, Oper Control Mode"
::= { atrDot1xAuthConfigEntry 4 }
atrDot1xAuthAuthControlledPortStatus OBJECT-TYPE
SYNTAX AtrPaeControlledPortStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current value of the controlled Port
status parameter for the Port."
REFERENCE
"9.4.1, AuthControlledPortStatus"
::= { atrDot1xAuthConfigEntry 5 }
atrDot1xAuthAuthControlledPortControl OBJECT-TYPE
SYNTAX AtrPaeControlledPortControl
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The current value of the controlled Port
control parameter for the Port."
REFERENCE
"9.4.1, AuthControlledPortControl"
::= { atrDot1xAuthConfigEntry 6 }
atrDot1xAuthQuietPeriod OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value, in seconds, of the quietPeriod constant
currently in use by the Authenticator PAE state
machine."
REFERENCE
"9.4.1, quietPeriod"
DEFVAL { 60 }
::= { atrDot1xAuthConfigEntry 7 }
atrDot1xAuthTxPeriod OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value, in seconds, of the txPeriod constant
currently in use by the Authenticator PAE state
machine."
REFERENCE
"9.4.1, txPeriod"
DEFVAL { 30 }
::= { atrDot1xAuthConfigEntry 8 }
atrDot1xAuthSuppTimeout OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value, in seconds, of the suppTimeout constant
currently in use by the Backend Authentication state
machine."
REFERENCE
"9.4.1, suppTimeout"
DEFVAL { 30 }
::= { atrDot1xAuthConfigEntry 9 }
atrDot1xAuthServerTimeout OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value, in seconds, of the serverTimeout constant
currently in use by the Backend Authentication state
machine."
REFERENCE
"9.4.1, serverTimeout"
DEFVAL { 30 }
::= { atrDot1xAuthConfigEntry 10 }
atrDot1xAuthMaxReq OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the maxReq constant currently in use by
the Backend Authentication state machine."
REFERENCE
"9.4.1, maxReq"
DEFVAL { 2 }
::= { atrDot1xAuthConfigEntry 11 }
atrDot1xAuthReAuthPeriod OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
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 }
::= { atrDot1xAuthConfigEntry 12 }
atrDot1xAuthReAuthEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The enable/disable control used by the Reauthentication
Timer state machine (8.5.5.1)."
REFERENCE
"9.4.1, reAuthEnabled"
DEFVAL { false }
::= { atrDot1xAuthConfigEntry 13 }
atrDot1xAuthKeyTxEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of the keyTransmissionEnabled constant
currently in use by the Authenticator PAE state
machine."
REFERENCE
"9.4.1, keyTransmissionEnabled"
::= { atrDot1xAuthConfigEntry 14 }
atrDot1xAuthPreAuthVlan OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The VLAN name of the VLAN that this port belonged to
prior to RADIUS authentication."
::= { atrDot1xAuthConfigEntry 15 }
atrDot1xAuthPostAuthVlan OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The VLAN name of the VLAN that this port belongs to
since RADIUS authentication."
::= { atrDot1xAuthConfigEntry 16 }
atrDot1xAuthLastAuthReason OBJECT-TYPE
SYNTAX INTEGER {
never(1),
adminReset(2),
logoff(3),
authTimeout(4),
serverReject(5),
serverTimeout(6),
noActiveServers(7),
invalidVlan(8),
conflictingVlan(9),
forcedUnauth(10),
serverAuthed(11),
forcedAuthed(12)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Should the supplicant have failed authentication, this records
the reason for the last failure. Never is returned in the case the
supplicant has never failed."
REFERENCE
""
::= { atrDot1xAuthConfigEntry 17 }
atrDot1XAuthVlanAssignment OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies whether VLAN Assignment is to be performed on the
port. When set to TRUE, the VLAN Assignment mechanism will run,
when set to FALSE it will not."
::= { atrDot1xAuthConfigEntry 18 }
atrDot1XAuthSecureVlan OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Only valid in Multi-Supplicant mode, this parameter defines
whether to allow supplicants to authenticate on a port, when there
is already an authenticated aupplicant on the port"
::= { atrDot1xAuthConfigEntry 19 }
atrDot1xAuthGuestVlan OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This value defines a temporary VLAN to assign to a port while there
is no 802.1X host connected to it."
::= { atrDot1xAuthConfigEntry 20 }
atrDot1XAuthMibReset OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Only valid in Multi-Supplicant mode, this parameter defines
whether to age out MIB information stored for old supplicants."
::= { atrDot1xAuthConfigEntry 21 }
atrDot1xAuthTrap OBJECT-TYPE
SYNTAX INTEGER {
success(1),
failure(2),
both(3),
none(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies what events trigger an SNMP trap."
REFERENCE
""
::= { atrDot1xAuthConfigEntry 22 }
-- ---------------------------------------------------------- --
-- The Dot1X Authenticator Statistics Table
-- ---------------------------------------------------------- --
atrDot1xAuthStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtrDot1xAuthStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains the statistics objects for the
Authenticator PAE associated with each Port.
An entry appears in this table for each port that may
authenticate access to itself."
REFERENCE
"9.4.2 Authenticator Statistics"
::= { atrDot1xPaeAuthenticator 2 }
atrDot1xAuthStatsEntry OBJECT-TYPE
SYNTAX AtrDot1xAuthStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The statistics information for an Authenticator PAE."
INDEX { atrDot1xPaePortNumber, atrDot1xPaePortSuppMacAddress }
::= { atrDot1xAuthStatsTable 1 }
AtrDot1xAuthStatsEntry ::=
SEQUENCE {
atrDot1xAuthEapolFramesRx
Counter32,
atrDot1xAuthEapolFramesTx
Counter32,
atrDot1xAuthEapolStartFramesRx
Counter32,
atrDot1xAuthEapolLogoffFramesRx
Counter32,
atrDot1xAuthEapolRespIdFramesRx
Counter32,
atrDot1xAuthEapolRespFramesRx
Counter32,
atrDot1xAuthEapolReqIdFramesTx
Counter32,
atrDot1xAuthEapolReqFramesTx
Counter32,
atrDot1xAuthInvalidEapolFramesRx
Counter32,
atrDot1xAuthEapLengthErrorFramesRx
Counter32,
atrDot1xAuthLastEapolFrameVersion
Unsigned32
}
atrDot1xAuthEapolFramesRx 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
"9.4.2, EAPOL frames received"
::= { atrDot1xAuthStatsEntry 1 }
atrDot1xAuthEapolFramesTx 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
"9.4.2, EAPOL frames transmitted"
::= { atrDot1xAuthStatsEntry 2 }
atrDot1xAuthEapolStartFramesRx 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
"9.4.2, EAPOL Start frames received"
::= { atrDot1xAuthStatsEntry 3 }
atrDot1xAuthEapolLogoffFramesRx 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
"9.4.2, EAPOL Logoff frames received"
::= { atrDot1xAuthStatsEntry 4 }
atrDot1xAuthEapolRespIdFramesRx 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
"9.4.2, EAPOL Resp/Id frames received"
::= { atrDot1xAuthStatsEntry 5 }
atrDot1xAuthEapolRespFramesRx 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
"9.4.2, EAPOL Response frames received"
::= { atrDot1xAuthStatsEntry 6 }
atrDot1xAuthEapolReqIdFramesTx 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
"9.4.2, EAPOL Req/Id frames transmitted"
::= { atrDot1xAuthStatsEntry 7 }
atrDot1xAuthEapolReqFramesTx 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
"9.4.2, EAPOL Request frames transmitted"
::= { atrDot1xAuthStatsEntry 8 }
atrDot1xAuthInvalidEapolFramesRx 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 recognised."
REFERENCE
"9.4.2, Invalid EAPOL frames received"
::= { atrDot1xAuthStatsEntry 9 }
atrDot1xAuthEapLengthErrorFramesRx 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
"9.4.2, EAP length error frames received"
::= { atrDot1xAuthStatsEntry 10 }
atrDot1xAuthLastEapolFrameVersion 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"
::= { atrDot1xAuthStatsEntry 11 }
-- ---------------------------------------------------------- --
-- The Dot1X Last Auth Entry
-- ---------------------------------------------------------- --
atrDot1xAuthenticated NOTIFICATION-TYPE
OBJECTS { atrDot1xPaePortNumber,
atrDot1xPaePortSuppMacAddress,
atrDot1xAuthPreAuthVlan,
atrDot1xAuthPostAuthVlan,
atrDot1xAuthLastAuthReason }
STATUS current
DESCRIPTION
"Triggered when a supplicant is authenticated on a port."
::= { atrDot1xTraps 1 }
atrDot1xUnauthenticated NOTIFICATION-TYPE
OBJECTS { atrDot1xPaePortNumber,
atrDot1xPaePortSuppMacAddress,
atrDot1xAuthPreAuthVlan,
atrDot1xAuthPostAuthVlan,
atrDot1xAuthLastAuthReason }
STATUS current
DESCRIPTION
"Triggered when a supplicant who was previously authorised on
a port, is no longer authorised. This can be due to an authentication
timeout, log off or disconnection of the port."
::= { atrDot1xTraps 2 }
atrDot1xFailedAuth NOTIFICATION-TYPE
OBJECTS { atrDot1xPaePortNumber,
atrDot1xPaePortSuppMacAddress,
atrDot1xAuthPreAuthVlan,
atrDot1xAuthPostAuthVlan,
atrDot1xAuthLastAuthReason }
STATUS current
DESCRIPTION
"Triggered when a supplicant is unable to be authorised on a port."
::= { atrDot1xTraps 3 }
-- ---------------------------------------------------------- --
-- The MAC Based Auth PAE Port Table
-- ---------------------------------------------------------- --
atrMacBasedAuthPaePortTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtrMacBasedAuthPaePortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of system level information for each port
supported by the Port Access Entity. An entry appears
in this table for each port of this system."
REFERENCE
""
::= { atrMacBasedAuthPaeSystem 1 }
atrMacBasedAuthPaePortEntry OBJECT-TYPE
SYNTAX AtrMacBasedAuthPaePortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Port number, protocol version, and
initialisation control for a Port."
INDEX { atrMacBasedAuthPaePortNumber, atrMacBasedAuthPaePortSuppMacAddress }
::= { atrMacBasedAuthPaePortTable 1 }
AtrMacBasedAuthPaePortEntry ::=
SEQUENCE {
atrMacBasedAuthPaePortNumber
InterfaceIndex,
atrMacBasedAuthPaePortInitialise
TruthValue,
atrMacBasedAuthPaePortReauthenticate
TruthValue,
atrMacBasedAuthPaePortSuppMacAddress
MacAddress
}
atrMacBasedAuthPaePortNumber OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Port number associated with this Port."
REFERENCE
""
::= { atrMacBasedAuthPaePortEntry 1 }
atrMacBasedAuthPaePortInitialise OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The initialisation control for this Port. Setting this
attribute TRUE causes the Port to be initialised.
The attribute value reverts to FALSE once initialisation
has completed."
REFERENCE
""
::= { atrMacBasedAuthPaePortEntry 2 }
atrMacBasedAuthPaePortReauthenticate OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The reauthentication control for this port. 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
""
::= { atrMacBasedAuthPaePortEntry 3 }
atrMacBasedAuthPaePortSuppMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The six character MAC Address of the attached
supplicant."
::= { atrMacBasedAuthPaePortEntry 4 }
-- ---------------------------------------------------------- --
-- The MAC Based Auth PAE Authenticator Group
-- ---------------------------------------------------------- --
-- ---------------------------------------------------------- --
-- The MAC Based Auth Authenticator Configuration Table
-- ---------------------------------------------------------- --
atrMacBasedAuthConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtrMacBasedAuthConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains the configuration objects for the
Authenticator PAE associated with each port.
An entry appears in this table for each port that may
authenticate access to itself."
REFERENCE
""
::= { atrMacBasedAuthPaeAuthenticator 1 }
atrMacBasedAuthConfigEntry OBJECT-TYPE
SYNTAX AtrMacBasedAuthConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The configuration information for an Authenticator
PAE."
INDEX { atrMacBasedAuthPaePortNumber, atrMacBasedAuthPaePortSuppMacAddress }
::= { atrMacBasedAuthConfigTable 1 }
AtrMacBasedAuthConfigEntry ::=
SEQUENCE {
atrMacBasedAuthPaeState
INTEGER,
atrMacBasedAuthBackendAuthState
INTEGER,
atrMacBasedAuthControlledPortStatus
AtrPaeControlledPortStatus,
atrMacBasedAuthControlledPortControl
AtrPaeControlledPortControl,
atrMacBasedAuthQuietPeriod
Unsigned32,
atrMacBasedAuthReAuthPeriod
Unsigned32,
atrMacBasedAuthReAuthEnabled
TruthValue,
atrMacBasedAuthPreAuthVlan
DisplayString,
atrMacBasedAuthPostAuthVlan
DisplayString,
atrMacBasedAuthLastAuthReason
INTEGER,
atrMacBasedAuthVlanAssignment
TruthValue,
atrMacBasedAuthSecureVlan
TruthValue,
atrMacBasedAuthMibReset
TruthValue,
atrMacBasedAuthTrap
INTEGER
}
atrMacBasedAuthPaeState OBJECT-TYPE
SYNTAX INTEGER {
initialise(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 Authenticator PAE state
machine."
REFERENCE
""
::= { atrMacBasedAuthConfigEntry 1 }
atrMacBasedAuthBackendAuthState OBJECT-TYPE
SYNTAX INTEGER {
request(1),
success(2),
fail(3),
timeout(4),
idle(5),
initialise(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current state of the Backend Authentication
state machine."
REFERENCE
""
::= { atrMacBasedAuthConfigEntry 2 }
atrMacBasedAuthControlledPortStatus OBJECT-TYPE
SYNTAX AtrPaeControlledPortStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current value of the controlled Port
status parameter for the Port."
REFERENCE
""
::= { atrMacBasedAuthConfigEntry 3 }
atrMacBasedAuthControlledPortControl OBJECT-TYPE
SYNTAX AtrPaeControlledPortControl