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
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
|
LINKSYS-DOT1X-MIB DEFINITIONS ::= BEGIN
-- Title: LINKSYS ROS
-- Private DOT1X MIB
-- Version: 7.46
-- Date: 15-Jan-2007
IMPORTS
rnd FROM LINKSYS-MIB
OBJECT-TYPE, MODULE-IDENTITY, Counter32, Counter64, TimeTicks, Unsigned32 FROM SNMPv2-SMI
TruthValue, RowStatus FROM SNMPv2-TC
VlanIndex, PortList, dot1qFdbId FROM Q-BRIDGE-MIB
MacAddress FROM BRIDGE-MIB
SnmpAdminString FROM SNMP-FRAMEWORK-MIB
PaeControlledPortStatus, dot1xAuthSessionStatsEntry, dot1xPaePortNumber FROM IEEE8021-PAE-MIB;
rldot1x MODULE-IDENTITY
LAST-UPDATED "200701020000Z"
ORGANIZATION "
Linksys LLC."
CONTACT-INFO
"www.linksys.com/business/support"
DESCRIPTION
"This private MIB module defines dot1x private MIBs."
REVISION "200701020000Z"
DESCRIPTION
"Initial revision."
::= { rnd 95 }
rldot1xMibVersion OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"MIB's version, the current version is 1."
::= { rldot1x 1 }
rldot1xExtAuthSessionStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF Rldot1xExtAuthSessionStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains the session 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."
::= { rldot1x 2 }
rldot1xExtAuthSessionStatsEntry OBJECT-TYPE
SYNTAX Rldot1xExtAuthSessionStatsEntry
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."
AUGMENTS { dot1xAuthSessionStatsEntry }
::= { rldot1xExtAuthSessionStatsTable 1 }
Rldot1xExtAuthSessionStatsEntry ::= SEQUENCE {
rlDot1xAuthSessionAuthenticMethod INTEGER
}
rlDot1xAuthSessionAuthenticMethod OBJECT-TYPE
SYNTAX INTEGER {
remoteAuthServer(1),
localAuthServer(2),
none(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The authentication method used to establish the
session."
::= { rldot1xExtAuthSessionStatsEntry 1 }
rldot1xGuestVlanSupported OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"indicate if guest vlan is supported."
::= { rldot1x 3 }
rldot1xGuestVlanVID OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"specify the guest vlan tag , 0 for non exiting."
::= { rldot1x 4 }
rldot1xGuestVlanPorts OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"the ports that can be members in the guest vlan"
::= { rldot1x 5 }
rldot1xUnAuthenticatedVlanSupported OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"indicate if unauthenticated Vlan is supported."
::= { rldot1x 6 }
rldot1xUnAuthenticatedVlanTable OBJECT-TYPE
SYNTAX SEQUENCE OF Rldot1xUnAuthenticatedVlanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"port belong to vlan in all port authenticated state except force unauthenticated table"
::= { rldot1x 7 }
rldot1xUnAuthenticatedVlanEntry OBJECT-TYPE
SYNTAX Rldot1xUnAuthenticatedVlanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" port belong to vlan in all port authenticated state except force unauthenticated entry"
INDEX { dot1qFdbId }
::= { rldot1xUnAuthenticatedVlanTable 1 }
Rldot1xUnAuthenticatedVlanEntry ::= SEQUENCE {
rldot1xUnAuthenticatedVlanStatus RowStatus
}
rldot1xUnAuthenticatedVlanStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The row status variable, used according to
row installation and removal conventions."
::= { rldot1xUnAuthenticatedVlanEntry 1 }
rldot1xUserBasedVlanSupported OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"indicate if user based Vlan is supported."
::= { rldot1x 8 }
rldot1xUserBasedVlanPorts OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"the ports that can be members in the user based vlan"
::= { rldot1x 9 }
rldot1xAuthenticationPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF Rldot1xAuthenticationPortEntry
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."
::= { rldot1x 10 }
rldot1xAuthenticationPortEntry OBJECT-TYPE
SYNTAX Rldot1xAuthenticationPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Port number and mac method"
INDEX { dot1xPaePortNumber }
::= { rldot1xAuthenticationPortTable 1 }
Rldot1xAuthenticationPortEntry::=
SEQUENCE {
rldot1xAuthenticationPortMethod
INTEGER,
rldot1xRadiusAttrVlanIdEnabled
TruthValue,
rldot1xRadiusAttAclNameEnabled
TruthValue,
rldot1xTimeBasedName
SnmpAdminString,
rldot1xTimeBasedActive
TruthValue,
rldot1xRadiusAttrVlanIdentifier
VlanIndex,
rldot1xMaxHosts
Unsigned32,
rldot1xMaxLoginAttempts
INTEGER,
rldot1xTimeoutSilencePeriod
INTEGER,
rldot1xNumOfAuthorizedHosts
INTEGER
}
rldot1xAuthenticationPortMethod OBJECT-TYPE
SYNTAX INTEGER {
eapolOnly(1),
macAndEapol(2),
macOnly(3),
webOnly(4),
webAndEapol(5),
webAndMac(6),
webAndMacAndEapol(7)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the 802.1x-based, mac-based and web-based authentication."
DEFVAL { eapolOnly }
::= { rldot1xAuthenticationPortEntry 1 }
rldot1xRadiusAttrVlanIdEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Defines if treat VLAN ID that received from Radius attributes
in Radius-Accept message."
::= { rldot1xAuthenticationPortEntry 2 }
rldot1xRadiusAttAclNameEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Defines if treat ACL Names that received from Radius attributes
in Radius-Accept message."
::= { rldot1xAuthenticationPortEntry 3 }
rldot1xTimeBasedName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies a time range. When the Time Range is not in effect the port state would be Unauthorized."
::= { rldot1xAuthenticationPortEntry 4 }
rldot1xTimeBasedActive OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies if time range is active now or not."
::= { rldot1xAuthenticationPortEntry 5 }
rldot1xRadiusAttrVlanIdentifier OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"In case that value is not 0,
This field will define the VLAN ID in case that it is not received from Radius attributes
in Radius-Accept message."
DEFVAL { 0 }
::= { rldot1xAuthenticationPortEntry 6 }
rldot1xMaxHosts OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Maximum number of authenticated hosts allowed on the interface.
A value of 0 means no limitation."
DEFVAL { 0 }
::= { rldot1xAuthenticationPortEntry 7 }
rldot1xMaxLoginAttempts OBJECT-TYPE
SYNTAX INTEGER (0.. 10)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Maximum number of allowedlogin attempts on the interface.
A value of 0 means the infinite number of attemtps.
The configuration is applied only to Web-Based authentication."
DEFVAL { 0 }
::= { rldot1xAuthenticationPortEntry 8 }
rldot1xTimeoutSilencePeriod OBJECT-TYPE
SYNTAX INTEGER (0.. 65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set the number of seconds that if an authorized client did not send traffic during this period,
then the client is changed to unauthrized.
The configuration is applied only to Web-Based authentication."
DEFVAL { 0 }
::= { rldot1xAuthenticationPortEntry 9 }
rldot1xNumOfAuthorizedHosts OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of authorized host in multi-sessions mode."
::= { rldot1xAuthenticationPortEntry 10 }
--------------------------------------------------------------
-- The Authenticator Statistics Table
--------------------------------------------------------------
rldot1xAuthMultiStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF Rldot1xAuthMultiStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains the statistics objects for the
Authenticator PAE associated with each Port and MAC for
multisession 802.1x mode of operation.
An entry appears in this table for each port and MAC that have an
authentication session currently running under way for them."
REFERENCE
"9.4.2 Authenticator Statistics"
::= { rldot1x 11 }
rldot1xAuthMultiStatsEntry OBJECT-TYPE
SYNTAX Rldot1xAuthMultiStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The statistics information for an Authenticator PAE."
INDEX { rldot1xAuthMultiStatsPortNumber, rldot1xAuthMultiStatsSourceMac }
::= { rldot1xAuthMultiStatsTable 1 }
Rldot1xAuthMultiStatsEntry ::=
SEQUENCE {
rldot1xAuthMultiStatsPortNumber
INTEGER,
rldot1xAuthMultiStatsSourceMac
MacAddress,
rldot1xAuthMultiEapolFramesRx
Counter32,
rldot1xAuthMultiEapolFramesTx
Counter32,
rldot1xAuthMultiEapolStartFramesRx
Counter32,
rldot1xAuthMultiEapolLogoffFramesRx
Counter32,
rldot1xAuthMultiEapolRespIdFramesRx
Counter32,
rldot1xAuthMultiEapolRespFramesRx
Counter32,
rldot1xAuthMultiEapolReqIdFramesTx
Counter32,
rldot1xAuthMultiEapolReqFramesTx
Counter32,
rldot1xAuthMultiInvalidEapolFramesRx
Counter32,
rldot1xAuthMultiEapLengthErrorFramesRx
Counter32
}
rldot1xAuthMultiStatsPortNumber OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Port Number."
::= { rldot1xAuthMultiStatsEntry 1 }
rldot1xAuthMultiStatsSourceMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Mac of the authentication session."
::= { rldot1xAuthMultiStatsEntry 2 }
rldot1xAuthMultiEapolFramesRx 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"
::= { rldot1xAuthMultiStatsEntry 3 }
rldot1xAuthMultiEapolFramesTx 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"
::= { rldot1xAuthMultiStatsEntry 4 }
rldot1xAuthMultiEapolStartFramesRx 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"
::= { rldot1xAuthMultiStatsEntry 5 }
rldot1xAuthMultiEapolLogoffFramesRx 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"
::= { rldot1xAuthMultiStatsEntry 6 }
rldot1xAuthMultiEapolRespIdFramesRx 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"
::= { rldot1xAuthMultiStatsEntry 7 }
rldot1xAuthMultiEapolRespFramesRx 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"
::= { rldot1xAuthMultiStatsEntry 8 }
rldot1xAuthMultiEapolReqIdFramesTx 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"
::= { rldot1xAuthMultiStatsEntry 9 }
rldot1xAuthMultiEapolReqFramesTx 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"
::= { rldot1xAuthMultiStatsEntry 10 }
rldot1xAuthMultiInvalidEapolFramesRx 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
"9.4.2, Invalid EAPOL frames received"
::= { rldot1xAuthMultiStatsEntry 11 }
rldot1xAuthMultiEapLengthErrorFramesRx 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"
::= { rldot1xAuthMultiStatsEntry 12 }
--------------------------------------------------------------
-- The Authenticator Diagnostics Table
--------------------------------------------------------------
rldot1xAuthMultiDiagTable OBJECT-TYPE
SYNTAX SEQUENCE OF Rldot1xAuthMultiDiagEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains the diagnostics objects for the
Authenticator PAE associated with each Port and MAC.
An entry appears in this table for each port and MAC that have an
authentication session currently running under way for them."
REFERENCE
"9.4.3 Authenticator Diagnostics"
::= { rldot1x 12 }
rldot1xAuthMultiDiagEntry OBJECT-TYPE
SYNTAX Rldot1xAuthMultiDiagEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The diagnostics information for an Authenticator PAE."
INDEX { rldot1xAuthMultiDiagPortNumber, rldot1xAuthMultiDiagSourceMac }
::= { rldot1xAuthMultiDiagTable 1 }
Rldot1xAuthMultiDiagEntry ::=
SEQUENCE {
rldot1xAuthMultiDiagPortNumber
INTEGER,
rldot1xAuthMultiDiagSourceMac
MacAddress,
rldot1xAuthMultiEntersConnecting
Counter32,
---------- rldot1xAuthMultiEapLogoffsWhileConnecting
---------- Counter32,
rldot1xAuthMultiEntersAuthenticating
Counter32,
rldot1xAuthMultiAuthSuccessWhileAuthenticating
Counter32,
---------- rldot1xAuthMultiAuthTimeoutsWhileAuthenticating
---------- Counter32,
rldot1xAuthMultiAuthFailWhileAuthenticating
Counter32,
rldot1xAuthMultiAuthReauthsWhileAuthenticating
Counter32,
rldot1xAuthMultiAuthEapStartsWhileAuthenticating
Counter32,
---------- rldot1xAuthMultiAuthEapLogoffWhileAuthenticating
---------- Counter32,
rldot1xAuthMultiAuthReauthsWhileAuthenticated
Counter32,
rldot1xAuthMultiAuthEapStartsWhileAuthenticated
Counter32,
---------- rldot1xAuthMultiAuthEapLogoffWhileAuthenticated
---------- Counter32,
rldot1xAuthMultiBackendResponses
Counter32,
rldot1xAuthMultiBackendAccessChallenges
Counter32,
rldot1xAuthMultiBackendOtherRequestsToSupplicant
Counter32,
rldot1xAuthMultiBackendNonNakResponsesFromSupplicant
Counter32,
rldot1xAuthMultiBackendAuthSuccesses
Counter32
---------- rldot1xAuthMultiBackendAuthFails
---------- Counter32
}
rldot1xAuthMultiDiagPortNumber OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Port Number."
::= { rldot1xAuthMultiDiagEntry 1 }
rldot1xAuthMultiDiagSourceMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Mac of the authentication session."
::= { rldot1xAuthMultiDiagEntry 2 }
rldot1xAuthMultiEntersConnecting 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"
::= { rldot1xAuthMultiDiagEntry 3 }
rldot1xAuthMultiEntersAuthenticating 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"
::= { rldot1xAuthMultiDiagEntry 4 }
rldot1xAuthMultiAuthSuccessWhileAuthenticating 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"
::= { rldot1xAuthMultiDiagEntry 5 }
rldot1xAuthMultiAuthFailWhileAuthenticating 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"
::= { rldot1xAuthMultiDiagEntry 6 }
rldot1xAuthMultiAuthReauthsWhileAuthenticating 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"
::= { rldot1xAuthMultiDiagEntry 7 }
rldot1xAuthMultiAuthEapStartsWhileAuthenticating 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"
::= { rldot1xAuthMultiDiagEntry 8 }
rldot1xAuthMultiAuthReauthsWhileAuthenticated 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"
::= { rldot1xAuthMultiDiagEntry 9 }
rldot1xAuthMultiAuthEapStartsWhileAuthenticated 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"
::= { rldot1xAuthMultiDiagEntry 10 }
rldot1xAuthMultiBackendResponses 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"
::= { rldot1xAuthMultiDiagEntry 11 }
rldot1xAuthMultiBackendAccessChallenges 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"
::= { rldot1xAuthMultiDiagEntry 12 }
rldot1xAuthMultiBackendOtherRequestsToSupplicant 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"
::= { rldot1xAuthMultiDiagEntry 13 }
rldot1xAuthMultiBackendNonNakResponsesFromSupplicant 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 Authenticators
chosen EAP-method."
REFERENCE
"9.4.2, 8.5.6.2.4"
::= { rldot1xAuthMultiDiagEntry 14 }
rldot1xAuthMultiBackendAuthSuccesses 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"
::= { rldot1xAuthMultiDiagEntry 15 }
--------------------------------------------------------------
-- The Authenticator Session Statistics Table
--------------------------------------------------------------
rldot1xAuthMultiSessionStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF Rldot1xAuthMultiSessionStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains the session 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.4"
::= { rldot1x 13 }
rldot1xAuthMultiSessionStatsEntry OBJECT-TYPE
SYNTAX Rldot1xAuthMultiSessionStatsEntry
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 { rldot1xAuthMultiSessionStatsPortNumber,
rldot1xAuthMultiSessionStatsSourceMac }
::= { rldot1xAuthMultiSessionStatsTable 1 }
Rldot1xAuthMultiSessionStatsEntry ::=
SEQUENCE {
rldot1xAuthMultiSessionStatsPortNumber
INTEGER,
rldot1xAuthMultiSessionStatsSourceMac
MacAddress,
rldot1xAuthMultiSessionOctetsRx
Counter64,
rldot1xAuthMultiSessionOctetsTx
Counter64,
rldot1xAuthMultiSessionFramesRx
Counter32,
rldot1xAuthMultiSessionFramesTx
Counter32,
rldot1xAuthMultiSessionId
SnmpAdminString,
---------- rldot1xAuthMultiSessionAuthenticMethod
---------- INTEGER,
rldot1xAuthMultiSessionTime
TimeTicks,
---------- rldot1xAuthMultiSessionTerminateCause
---------- INTEGER,
rldot1xAuthMultiSessionUserName
SnmpAdminString,
rldot1xAuthMultiSessionRadiusAttrVlan
INTEGER,
rldot1xAuthMultiSessionRadiusAttrFilterId
SnmpAdminString,
rldot1xAuthMultiSessionRadiusAttrSecondFilterId
SnmpAdminString,
rlDot1xAuthMultiSessionMonitorResultsReason
INTEGER,
rlDot1xAuthMultiSessionMethodType
INTEGER }
rldot1xAuthMultiSessionStatsPortNumber OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Port Number."
::= { rldot1xAuthMultiSessionStatsEntry 1 }
rldot1xAuthMultiSessionStatsSourceMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Mac of the authentication session."
::= { rldot1xAuthMultiSessionStatsEntry 2 }
rldot1xAuthMultiSessionOctetsRx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of octets received in user data
frames on this Port during the session."
REFERENCE
"9.4.4, Session Octets Received"
::= { rldot1xAuthMultiSessionStatsEntry 3 }
rldot1xAuthMultiSessionOctetsTx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of octets transmitted in user data
frames on this Port during the session."
REFERENCE
"9.4.4, Session Octets Transmitted"
::= { rldot1xAuthMultiSessionStatsEntry 4 }
rldot1xAuthMultiSessionFramesRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of user data frames received
on this Port during the session."
REFERENCE
"9.4.4, Session Frames Received"
::= { rldot1xAuthMultiSessionStatsEntry 5 }
rldot1xAuthMultiSessionFramesTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of user data frames transmitted
on this Port during the session."
REFERENCE
"9.4.4, Session Frames Transmitted"
::= { rldot1xAuthMultiSessionStatsEntry 6 }
rldot1xAuthMultiSessionId 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"
::= { rldot1xAuthMultiSessionStatsEntry 7 }
rldot1xAuthMultiSessionTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The duration of the session in seconds."
REFERENCE
"9.4.4, Session Time"
::= { rldot1xAuthMultiSessionStatsEntry 8 }
rldot1xAuthMultiSessionUserName 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"
::= { rldot1xAuthMultiSessionStatsEntry 9 }
rldot1xAuthMultiSessionRadiusAttrVlan OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"VLAN ID that received from Radius attributes."
::= { rldot1xAuthMultiSessionStatsEntry 10 }
rldot1xAuthMultiSessionRadiusAttrFilterId OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"First filter ID that received from Radius attributes."
::= { rldot1xAuthMultiSessionStatsEntry 11 }
rldot1xAuthMultiSessionRadiusAttrSecondFilterId OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Second filter ID that received from Radius attributes."
::= { rldot1xAuthMultiSessionStatsEntry 12 }
rlDot1xAuthMultiSessionMonitorResultsReason OBJECT-TYPE
SYNTAX INTEGER {
notRejected(0),
aclNotExst(1), -- ACL sent by radius Server does not exist on the device
aclOvrfl(2), -- ACL sent by radius server can not be applied because of TCAM overflow
authErr(3), -- Rejected by Radius due wrong user name or password in Radius server
fltrErr(4), -- Radius accept message contains more than 2 filter-id
ipv6WithMac(5), -- Radius accept message contains filter with IPv6 DIP and MAC addresses
ipv6WithNotIp(6), -- Radius accept message contains IPv6 and not IP simultaneously
polBasicMode(7), -- Policy Map is not supported in the QoS basic mode
aclDel(8), -- ACL was deleted by user
polDel(9), -- Policy Map was deleted by user
vlanDfly(10), -- VLAN sent by radius server can not be applied because it is the Default VLAN
vlanDynam(11), -- VLAN sent by radius server can not be applied because it is a Dynamic VLAN
vlanGuest(12), -- VLAN sent by radius server can not be applied because it is the Guest VLAN
vlanNoInMsg(13), -- VLAN was not sent by Radius
vlanNotExst(14), -- VLAN sent by radius Server does not exist on the device
vlanOvfl(15), -- VLAN sent by radius server can not be applied because of TCAM overflow
vlanVoice(16), -- VLAN sent by radius server can not be applied because it is a Voice VLAN
vlanUnauth(17), -- VLAN sent by radius server can not be applied because it is a
-- Unauthenticated VLAN
frsMthDeny(18), -- First method is "deny"
radApierr(19), -- RADIUS API returned error (e.g. No RADIUS server is configured).
radInvlres(20), -- RADIUS server returned invalid packet (e.g. EAP Attribute is missing)
radNoresp(21), -- RADIUS server is not responding
aclEgress(22), -- ACL sent by radius Server is already bound as egress acl
maxHosts(23), -- Max hosts allowed per port are reached
noActivity(24) -- There is no traffic from this host
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The monitor result reason of the session."
::= { rldot1xAuthMultiSessionStatsEntry 13 }
rlDot1xAuthMultiSessionMethodType OBJECT-TYPE
SYNTAX INTEGER {
eapol(1),
mac(2),
web(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current session method type."
::= { rldot1xAuthMultiSessionStatsEntry 14 }
--------------------------------------------------------------
-- The Authenticator Configuration Table
--------------------------------------------------------------
rldot1xAuthMultiConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF Rldot1xAuthMultiConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains the configuration objects for the
Authenticator PAE associated with each port and MAC.
An entry appears in this table for each port and MAC that may
authenticate access to itself."
REFERENCE
"9.4.1 Authenticator Configuration"
::= { rldot1x 14 }
rldot1xAuthMultiConfigEntry OBJECT-TYPE
SYNTAX Rldot1xAuthMultiConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The configuration information for an Authenticator
PAE."
INDEX { rldot1xAuthMultiPortNumber, rldot1xAuthMultiSourceMac }
::= { rldot1xAuthMultiConfigTable 1 }
Rldot1xAuthMultiConfigEntry ::=
SEQUENCE {
rldot1xAuthMultiPortNumber
INTEGER,
rldot1xAuthMultiSourceMac
MacAddress,
rldot1xAuthMultiPaeState
INTEGER,
rldot1xAuthMultiBackendAuthState
INTEGER,
rldot1xAuthMultiControlledPortStatus
PaeControlledPortStatus
}
rldot1xAuthMultiPortNumber OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Port Number."
::= { rldot1xAuthMultiConfigEntry 1 }
rldot1xAuthMultiSourceMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Mac of the authentication session."
::= { rldot1xAuthMultiConfigEntry 2 }
rldot1xAuthMultiPaeState 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 Authenticator PAE state
machine."
REFERENCE
"9.4.1, Authenticator PAE state"
::= { rldot1xAuthMultiConfigEntry 3 }
rldot1xAuthMultiBackendAuthState 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"
::= { rldot1xAuthMultiConfigEntry 4 }
rldot1xAuthMultiControlledPortStatus OBJECT-TYPE
SYNTAX PaeControlledPortStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current value of the controlled Port
status parameter for the Port."
REFERENCE
"9.4.1, AuthControlledPortStatus"
::= { rldot1xAuthMultiConfigEntry 5 }
rldot1xBpduFilteringEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specify that when 802.1x is globally disabled,
802.1x BPDU packets would be filtered or bridged."
::= { rldot1x 15 }
rldot1xRadiusAttributesErrorsAclReject OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specify ACL error handling for the Radius attributes feature."
::= { rldot1x 18 }
----------------------------------------------------------------
-- Added guest vlan timeout interval VeredK 15-04-2007, 19:39 --
----------------------------------------------------------------
rldot1xGuestVlanTimeInterval OBJECT-TYPE
SYNTAX INTEGER (0..180)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"indicate the guest vlan timeout interval."
::= { rldot1x 19 }
rldot1xMacAuthSuccessTrapEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specify if sending traps when a MAC address is successfully
authenticated by the 802.1X mac-authentication access control."
::= { rldot1x 20 }
rldot1xMacAuthFailureTrapEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specify if sending traps when MAC address was failed
in authentication of the 802.1X MAC authentication access control."
::= { rldot1x 21 }
--------------------------------------------------------------
-- The Legacy Port Table
--------------------------------------------------------------
rldot1xLegacyPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF Rldot1xLegacyPortEntry
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."
::= { rldot1x 22 }
rldot1xLegacyPortEntry OBJECT-TYPE
SYNTAX Rldot1xLegacyPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Port number and leagcy mode"
INDEX { dot1xPaePortNumber }
::= { rldot1xLegacyPortTable 1 }
Rldot1xLegacyPortEntry::=
SEQUENCE {
rldot1xLegacyPortModeEnabled
TruthValue
}
rldot1xLegacyPortModeEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether in multiple sessions mode
work according to legacy devices mode or not."
::= { rldot1xLegacyPortEntry 1 }
rldot1xSystemAuthControlMonitorVlan OBJECT-TYPE
SYNTAX INTEGER (0..4094)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"VLAN Tag of 802.1x monitoring VLAN in the System.
value of 0 means that the monitoring mode is disabled."
::= { rldot1x 23 }
rldot1xClearPortMibCounters OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Each bit that is set in this portList represent a port that
its mib counters should be reset."
::= { rldot1x 24 }
rldot1xWebQuietFailureTrapEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specify if sending traps when a client is set in quiet state
after the maximum sequential attempts of login."
::= { rldot1x 25 }
rldot1xMacWebAuthSuccessTrapEnabled OBJECT-TYPE
SYNTAX INTEGER {
none(0),
eapolOnly(1),
macAndEapol(2),
macOnly(3),
webOnly(4),
webAndEapol(5),
webAndMac(6),
webAndMacAndEapol(7)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specify if sending traps per authentication method
when a session is successfully authenticated."
::= { rldot1x 26 }
rldot1xMacWebAuthFailureTrapEnabled OBJECT-TYPE
SYNTAX INTEGER {
none(0),
eapolOnly(1),
macAndEapol(2),
macOnly(3),
webOnly(4),
webAndEapol(5),
webAndMac(6),
webAndMacAndEapol(7)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specify if sending traps per authentication method when a session was failed."
::= { rldot1x 27 }
--------------------------------------------------------------
-- The Locked Cients Table
--------------------------------------------------------------
rldot1xLockedCientsTable OBJECT-TYPE
SYNTAX SEQUENCE OF Rldot1xLockedCientsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains the locked clients information for Web-based authentication."
REFERENCE
"9.4.2 Authenticator Statistics"
::= { rldot1x 28 }
rldot1xLockedCientsEntry OBJECT-TYPE
SYNTAX Rldot1xLockedCientsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The locked clients entry that entered silence period timeout for Web-based authentication."
INDEX { rldot1xLockedCientsPortNumber, rldot1xLockedCientsSourceMac }
::= { rldot1xLockedCientsTable 1 }
Rldot1xLockedCientsEntry ::=
SEQUENCE {
rldot1xLockedCientsPortNumber
INTEGER,
rldot1xLockedCientsSourceMac
MacAddress,
rldot1xLockedCientsRemainedTime
INTEGER,
rldot1xLockedCientsRowStatus
RowStatus
}
rldot1xLockedCientsPortNumber OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Port Number."
::= { rldot1xLockedCientsEntry 1 }
rldot1xLockedCientsSourceMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Mac of the locked client."
::= { rldot1xLockedCientsEntry 2 }
rldot1xLockedCientsRemainedTime OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time that is remained till the expiry of silence period."
::= { rldot1xLockedCientsEntry 3 }
rldot1xLockedCientsRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Row status."
::= { rldot1xLockedCientsEntry 4 }
END
|