-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathENTERASYS-MULTI-AUTH-MIB
1597 lines (1403 loc) · 59.7 KB
/
ENTERASYS-MULTI-AUTH-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-AUTH-MIB DEFINITIONS ::= BEGIN
-- enterasys-multi-auth-mib.txt
--
-- Part Number:
--
--
-- This module provides authoritative definitions for Enterasys
-- Networks' simultaneous multiple authentication functionality.
--
-- 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 March 2006 Enterasys Networks, Inc.
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE
FROM SNMPv2-SMI
Unsigned32, Integer32, Gauge32
FROM SNMPv2-SMI
TEXTUAL-CONVENTION, TruthValue, TimeStamp, DateAndTime
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
FROM SNMPv2-CONF
ifIndex
FROM IF-MIB
entPhysicalIndex
FROM ENTITY-MIB
InetAddressType, InetAddress
FROM INET-ADDRESS-MIB
StationAddressType, StationAddress
FROM ENTERASYS-UPN-TC-MIB
EnabledStatus
FROM P-BRIDGE-MIB
etsysModules
FROM ENTERASYS-MIB-NAMES;
etsysMultiAuthMIB MODULE-IDENTITY
LAST-UPDATED "200603231332Z" -- Thu Mar 23 13:32 UTC 2006
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 MIB under
the Enterasys Networks enterprise OID pertaining to
configuration of multiple authentication mechanisms
to be run simultaneously on a device."
REVISION "200603231332Z" -- Thu Mar 23 13:32 UTC 2006
DESCRIPTION
"Added etsysMultiAuthSessionVlanTunnelAttribute leaf for
RFC 3580 support."
REVISION "200602031915Z" -- Fri Feb 3 19:15 GMT 2006
DESCRIPTION
"Added NOTIFICATIONs for the system and module maximum
number of users being reached. Also added objects
to enable and disable these NOTIFICATIONs."
REVISION "200504061810Z" -- Wed Apr 6 18:10 GMT 2005
DESCRIPTION
"Added objects to control and report timeout parameters for
authentication sessions. Also added objects to report
the number of authenticated users on a per authentication
type basis."
REVISION "200408301343Z" -- Mon Aug 30 13:43 GMT 2004
DESCRIPTION
"Added read-only leaves to represent the potential for
individual chassis modules to have their own authentication
resource limits. The etsysMultiAuthCompliance group has been
deprecated in favor of etsysMultiAuthCompliance2."
REVISION "200407201943Z" -- Tue Jul 20 19:43 GMT 2004
DESCRIPTION
"Added a new authentication type for Convergence End Point
Detection. The DEFVAL clause of the
etsysMultiAuthSystemDefaultPrecedence leaf was corrected to
indicate the intended default precedence."
REVISION "200403101356Z" -- Wed Mar 10 13:56 GMT 2004
DESCRIPTION
"The initial version of this MIB module."
::= { etsysModules 46 }
-- Textual Conventions
EtsysMultiAuthTypes ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This convention enumerates the authentication types
supported by Enterasys Networks' devices."
SYNTAX INTEGER {
ieee8021x(1), -- IEEE 802.1X Port-Based Network
-- Access Control
pwa(2), -- Enterasys Port Web Authentication
macAuth(3), -- Enterasys Mac Authentication
cep(4) -- Enterasys Convergence End Point
-- Detection
}
EtsysMultiAuthTypePrecedence ::= TEXTUAL-CONVENTION
DISPLAY-HINT "1d "
STATUS current
DESCRIPTION
"The precedence by which authentication results will be applied
to network traffic. This object will have a maximum size
equal to the number of enumerations specified by the
EtsysMultiAuthTypes textual convention. Each octet in this
object represents a specific authentication type. The
first octet contains the authentication type with the highest
precedence, the second octet contains the type of the next
highest precedence, and so forth. For example, a precedence
from highest to lowest of ieee8021x(1), macAuth(3), pwa(2), cep(4)
would be represented as '01030204'H."
SYNTAX OCTET STRING (SIZE (0..32))
EtsysMultiAuthStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The status of authentication for this session. A value of
authSuccess(1) means authentication was attempted and succeeded.
A value of authFailed(2) means authentication was attempted
and failed for a reason other than communication timing out
with the authorization server. A value of authInProgress(3)
means that the authorization process has been started but
has not completed yet. A value of authServerTimeout(4)
means that the request to the authorization server for this
session timed out without a reply from the server. A value
of authTerminated(5) indicates that the session was active
or in progress and was subsequently terminated. A session
may be terminated for several reasons, including but not
limited to, session timeout, idle timeout, the ifOperStatus
of the interface on which the session was authenticated
transitioning out of the up(1) state, or explicit
administrative management action."
SYNTAX INTEGER {
authSuccess(1),
authFailed(2),
authInProgress(3),
authServerTimeout(4),
authTerminated(5)
}
-- -------------------------------------------------------------
-- MIB Objects
-- -------------------------------------------------------------
etsysMultiAuthObjects OBJECT IDENTIFIER
::= { etsysMultiAuthMIB 1 }
etsysMultiAuthSystem OBJECT IDENTIFIER
::= { etsysMultiAuthObjects 1 }
etsysMultiAuthPort OBJECT IDENTIFIER
::= { etsysMultiAuthObjects 2 }
etsysMultiAuthStation OBJECT IDENTIFIER
::= { etsysMultiAuthObjects 3 }
etsysMultiAuthSession OBJECT IDENTIFIER
::= { etsysMultiAuthObjects 4 }
etsysMultiAuthModule OBJECT IDENTIFIER
::= { etsysMultiAuthObjects 5 }
etsysMultiAuthNotification OBJECT IDENTIFIER
::= { etsysMultiAuthObjects 0 }
-- -------------------------------------------------------------
-- The Multiple Authentication System Group
-- -------------------------------------------------------------
etsysMultiAuthSystemSupportedTypes OBJECT-TYPE
SYNTAX BITS {
ieee8021x(0),
pwa(1),
macAuth(2),
cep(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies that authentication types that the
device supports. A bit will be set for each corresponding
type that is supported."
::= { etsysMultiAuthSystem 1 }
etsysMultiAuthSystemMaxNumUsers OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of users the can be actively
authenticated or have authentications in progress at one
time in the system."
::= { etsysMultiAuthSystem 2 }
etsysMultiAuthSystemCurrentNumUsers OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current number of users the are actively authenticated,
have authentications in progress, or the device is keeping
authentication termination information for in the system."
::= { etsysMultiAuthSystem 3 }
etsysMultiAuthSystemMode OBJECT-TYPE
SYNTAX INTEGER {
strictIeee8021x(1),
etsysMultiAuth(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value strictIeee8021x(1) will cause the device to
authenticate in strict adherence to IEEE Std. 802.1X-2001.
In this mode no other authentication mechanisms will be active.
While in this mode, changes may be made to other objects in the
MIB, but they will have no effect on the operation of the device
until such time as the system mode is changed to etsysMultiAuth(2).
A set of this object to a value of etsysMultiAuth(2) will cause
the device to authenticate using multiple authenticators
simultaneously."
REFERENCE
"IEEE Std. 802.1X-2001"
DEFVAL { strictIeee8021x }
::= { etsysMultiAuthSystem 4 }
etsysMultiAuthSystemDefaultPrecedence OBJECT-TYPE
SYNTAX EtsysMultiAuthTypePrecedence
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The precedence that authentication results will be applied
to network traffic by default. This object will have a size
equal to the number of enumerations specified by the
EtsysMultiAuthTypes textual convention."
DEFVAL { '01020304'h }
::= { etsysMultiAuthSystem 5 }
etsysMultiAuthSystemAdminPrecedence OBJECT-TYPE
SYNTAX EtsysMultiAuthTypePrecedence
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object allows one to modify the default precedence by
which authentication results will be applied to network traffic.
Sets to this object are not required to specify all of the types
that the device supports. If less types are specified than are
supported, then all types that were not specified will be given
an operational precedence based on that type's default precedence
relative to the last type specified. For example, if the default
precedence is '030102'H and the object is set to '02'H then
operational precedence would be '020301'H.
A set to this object of a zero length octet string will clear
the administrative precedence. In this case the operational
precedence would be equal to the default precedence."
DEFVAL { ''H }
::= { etsysMultiAuthSystem 6 }
etsysMultiAuthSystemOperPrecedence OBJECT-TYPE
SYNTAX EtsysMultiAuthTypePrecedence
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object returns the operational precedence of authentication
types as they will be applied to network traffic. The value
returned by this object is the calculated result of the
etsysMultiAuthSystemDefaultPrecedence and
etsysMultiAuthSystemAdminPrecedence objects. This object will
have a size equal to the number of enumerations specified by the
EtsysMultiAuthTypes textual convention."
::= { etsysMultiAuthSystem 7 }
etsysMultiAuthTypePropertiesTable OBJECT-TYPE
SYNTAX SEQUENCE OF EtsysMultiAuthTypePropertiesEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of properties per authentication type."
::= { etsysMultiAuthSystem 8 }
etsysMultiAuthTypePropertiesEntry OBJECT-TYPE
SYNTAX EtsysMultiAuthTypePropertiesEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing per authentication type properties."
INDEX { etsysMultiAuthType }
::= { etsysMultiAuthTypePropertiesTable 1 }
EtsysMultiAuthTypePropertiesEntry ::=
SEQUENCE {
etsysMultiAuthType
EtsysMultiAuthTypes,
etsysMultiAuthSessionTimeout
Unsigned32,
etsysMultiAuthIdleTimeout
Unsigned32,
etsysMultiAuthCurrentNumUsers
Gauge32
}
etsysMultiAuthType OBJECT-TYPE
SYNTAX EtsysMultiAuthTypes
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The authentication type the entry properties pertain to."
::= { etsysMultiAuthTypePropertiesEntry 1 }
etsysMultiAuthSessionTimeout OBJECT-TYPE
SYNTAX Unsigned32 (0|1..65535)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The maximum number of seconds an authenticated session may last
before termination of the session. A value of zero indicates
that no session timeout will be applied. This value MAY be
superseded by a session timeout value provided by the
authenticating server. For example, if a session is
authenticated by a RADIUS server, that server may encode a
Session-Timeout Attribute in its authentication response. The
operational timeout value of a given authenticated session
is specified by the etsysMultiAuthSessionSessionTimeout object."
REFERENCE
"RFC 2865, 'Remote Authentication Dial In User Service (RADIUS)',
Section 5.27"
DEFVAL { 0 }
::= { etsysMultiAuthTypePropertiesEntry 2 }
etsysMultiAuthIdleTimeout OBJECT-TYPE
SYNTAX Unsigned32 (0|1..65535)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The maximum number of consecutive seconds an authenticated
session may be idle before termination of the session. A
value of zero indicates that no idle timeout will be applied.
This value MAY be superseded by a idle timeout value provided
by the authenticating server. For example, if a session is
authenticated by a RADIUS server, that server may encode a
Idle-Timeout Attribute in its authentication response. The
operational idle timeout value of a given authenticated
session is specified by the etsysMultiAuthSessionIdleTimeout
object."
REFERENCE
"RFC 2865, 'Remote Authentication Dial In User Service (RADIUS)',
Section 5.28"
DEFVAL { 0 }
::= { etsysMultiAuthTypePropertiesEntry 3 }
etsysMultiAuthCurrentNumUsers OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current number of users the are actively authenticated or
have authentications in progress for this authentication type
in the system."
::= { etsysMultiAuthTypePropertiesEntry 4 }
etsysMultiAuthSystemMaxNumUsersReachedTrapEnable OBJECT-TYPE
SYNTAX EnabledStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object allows for the enabling or disabling the
transmission of the etsysMultiAuthSystemMaxNumUsersReached
NOTIFICATION."
DEFVAL { disabled }
::= { etsysMultiAuthSystem 9 }
-- -------------------------------------------------------------
-- The Multiple Authentication Port Group
-- -------------------------------------------------------------
etsysMultiAuthPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF EtsysMultiAuthPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of per port information and configuration for user
authentication."
::= { etsysMultiAuthPort 1 }
etsysMultiAuthPortEntry OBJECT-TYPE
SYNTAX EtsysMultiAuthPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing per port authentication data.
Only interfaces that are able to authenticate users are
represented in this table."
INDEX { ifIndex }
::= { etsysMultiAuthPortTable 1 }
EtsysMultiAuthPortEntry ::=
SEQUENCE {
etsysMultiAuthPortMode
INTEGER,
etsysMultiAuthPortMaxNumUsers
Unsigned32,
etsysMultiAuthPortNumUsersAllowed
Unsigned32,
etsysMultiAuthPortCurrentNumUsers
Gauge32,
etsysMultiAuthPortClearUsers
TruthValue,
etsysMultiAuthPortTrapEnable
BITS
}
etsysMultiAuthPortMode OBJECT-TYPE
SYNTAX INTEGER {
forceUnauthorized(1),
forceAuthorized(2),
authOptional(3),
authRequired(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the authorization mode to use for
packets received on this interface.
A value of forceUnauthorized(1) indicates that the interface
is always unauthenticated.
A value of forceAuthorized(2) indicates that users on this port
will always be considered to be authenticated.
A value of authOptional(3) indicates that authentication is
optional on this interface. Packets received from
unauthenticated users on the interface will be processed using
the static configuration of the interface. Users may promote
the policy applied to their traffic by actively authenticating
on this interface.
A value of authRequired(4) indicates that all packets received on
the interface will be dropped until authentication succeeds. Some
authentication types, such as PWA, will not be fully functional in
this mode of operation."
::= { etsysMultiAuthPortEntry 1 }
etsysMultiAuthPortMaxNumUsers OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of users that can be actively
authenticated or have authentications in progress at one
time on this interface."
::= { etsysMultiAuthPortEntry 2 }
etsysMultiAuthPortNumUsersAllowed OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The user configured number of users that can be actively
authenticated or have authentications in progress at one
time on this interface. This object has a default value
equal to the value of etsysMultiAuthPortMaxNumUsers for this
interface. If the value set to this object is less than its
current value, it will have the same effect as setting the
etsysMultiAuthPortClearUsers object to a value of true(1)."
::= { etsysMultiAuthPortEntry 3 }
etsysMultiAuthPortCurrentNumUsers OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current number of users that are actively
authenticated or have authentications in progress at one
time on this interface. By definition this value can not
exceed the value specified by etsysMultiAuthPortMaxNumUsers
for the same interface."
::= { etsysMultiAuthPortEntry 4 }
etsysMultiAuthPortClearUsers OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Setting this object to a value of true(1) will cause
all users that are currently authenticated or that
have authentications in progress on this interface to become
unauthenticated. This will cause any such entries with matching
ifIndex values in the etsysMultiAuthSessionStationTable tables to
change their authorization status to authTerminated(5).
Setting this object to a value of false(2) has no effect. This
object will always return a value of false(2)."
DEFVAL { false }
::= { etsysMultiAuthPortEntry 5 }
etsysMultiAuthPortTrapEnable OBJECT-TYPE
SYNTAX BITS {
authSuccessTrap(0),
authFailedTrap(1),
authTerminatedTrap(2),
maxNumUsersReachedTrap(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object allows for the enabling or disabling of each
trap on a per interface basis. Setting a given bit to a value
of 1 allows traps of that type to be sent for events on that
interface. Setting a given bit to a value of 0 disallows traps
of that type to be sent for events on that interface. The
individual bits correlate to specific traps as follows:
BIT NOTIFICATION
----------------------------------------------------------------
authSuccessTrap(0) etsysMultiAuthSuccess
authFailedTrap(1) etsysMultiAuthFailed
authTerminatedTrap(2) etsysMultiAuthTerminated
maxNumUsersReachedTrap(3) etsysMultiAuthMaxNumUsersReached
"
DEFVAL { { } }
::= { etsysMultiAuthPortEntry 6 }
etsysMultiAuthPortTypeTable OBJECT-TYPE
SYNTAX SEQUENCE OF EtsysMultiAuthPortTypeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of per port, per authentication type information."
::= { etsysMultiAuthPort 2 }
etsysMultiAuthPortTypeEntry OBJECT-TYPE
SYNTAX EtsysMultiAuthPortTypeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing per port, per authentication type data.
Only interfaces that are able to authenticate users are
represented in this table."
INDEX { ifIndex, etsysMultiAuthType }
::= { etsysMultiAuthPortTypeTable 1 }
EtsysMultiAuthPortTypeEntry ::=
SEQUENCE {
etsysMultiAuthPortTypeCurrentNumUsers
Gauge32
}
etsysMultiAuthPortTypeCurrentNumUsers OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current number of users the are actively authenticated or
have authentications in progress for this authentication type
on the specified port."
::= { etsysMultiAuthPortTypeEntry 1 }
-- -------------------------------------------------------------
-- The Multiple Authentication Station Group
-- -------------------------------------------------------------
etsysMultiAuthStationTable OBJECT-TYPE
SYNTAX SEQUENCE OF EtsysMultiAuthStationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of station configuration on specific interfaces."
::= { etsysMultiAuthStation 1 }
etsysMultiAuthStationEntry OBJECT-TYPE
SYNTAX EtsysMultiAuthStationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing authentication information on a per station,
per port basis. Only interfaces that are able to authenticate
users are represented in this table."
INDEX { etsysMultiAuthStationAddrType,
etsysMultiAuthStationAddr,
ifIndex }
::= { etsysMultiAuthStationTable 1 }
EtsysMultiAuthStationEntry ::=
SEQUENCE {
etsysMultiAuthStationAddrType
StationAddressType,
etsysMultiAuthStationAddr
StationAddress,
etsysMultiAuthStationClearUsers
TruthValue
}
etsysMultiAuthStationAddrType OBJECT-TYPE
SYNTAX StationAddressType
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The type of station represented by etsysMultiAuthStationAddr."
::= { etsysMultiAuthStationEntry 1 }
etsysMultiAuthStationAddr OBJECT-TYPE
SYNTAX StationAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The station address for the authenticated user."
::= { etsysMultiAuthStationEntry 2 }
etsysMultiAuthStationClearUsers OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Setting this object to a value of true(1) will cause
any users with the specified station address that are currently
authenticated or that have authentications in progress to become
unauthenticated. This will cause any entries with matching
etsysMultiAuthStationAddr values in the
etsysMultiAuthSessionStationTable tables to change their
authorization status to authTerminated(5).
Setting this object to a value of false(2) has no effect. This
object will always return a value of false(2)."
DEFVAL { false }
::= { etsysMultiAuthStationEntry 3 }
-- -------------------------------------------------------------
-- The Multiple Authentication Session Group
-- -------------------------------------------------------------
etsysMultiAuthSessionStationTable OBJECT-TYPE
SYNTAX SEQUENCE OF EtsysMultiAuthSessionStationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of session information and configuration for user
authentication. Entries in this table represent users
in various stages of authentication. Entries that do
not have a etsysMultiAuthSessionStationAuthStatus value
of authSuccess(1) or authInProgress(3) MAY be removed
by the agent as required in order to free resources for
new user authentications."
::= { etsysMultiAuthSession 1 }
etsysMultiAuthSessionStationEntry OBJECT-TYPE
SYNTAX EtsysMultiAuthSessionStationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing authentication information on a per station,
per port, per authentication agent type basis. Only interfaces
that are able to authenticate users are represented in this table."
INDEX { etsysMultiAuthStationAddrType,
etsysMultiAuthStationAddr,
ifIndex,
etsysMultiAuthSessionAgentType }
::= { etsysMultiAuthSessionStationTable 1 }
EtsysMultiAuthSessionStationEntry ::=
SEQUENCE {
etsysMultiAuthSessionAgentType
EtsysMultiAuthTypes,
etsysMultiAuthSessionStationAuthStatus
EtsysMultiAuthStatus,
etsysMultiAuthSessionAuthAttemptTime
TimeStamp,
etsysMultiAuthSessionAuthServerType
INTEGER,
etsysMultiAuthSessionAuthServerAddrType
InetAddressType,
etsysMultiAuthSessionAuthServerAddr
InetAddress,
etsysMultiAuthSessionPolicyIndex
Integer32,
etsysMultiAuthSessionIsApplied
TruthValue,
etsysMultiAuthSessionTerminationTime
DateAndTime,
etsysMultiAuthSessionSessionTimeout
Unsigned32,
etsysMultiAuthSessionIdleTimeout
Unsigned32,
etsysMultiAuthSessionDuration
Gauge32,
etsysMultiAuthSessionIdleTime
Gauge32,
etsysMultiAuthSessionVlanTunnelAttribute
Integer32
}
etsysMultiAuthSessionAgentType OBJECT-TYPE
SYNTAX EtsysMultiAuthTypes
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The type of authentication agent for this session."
::= { etsysMultiAuthSessionStationEntry 1 }
etsysMultiAuthSessionStationAuthStatus OBJECT-TYPE
SYNTAX EtsysMultiAuthStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of authentication for this session."
::= { etsysMultiAuthSessionStationEntry 2 }
etsysMultiAuthSessionAuthAttemptTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime when this session last attempted
authorization. For entries that have a value of
authInProgress(3) for etsysMultiAuthSessionStationAuthStatus
this object MAY return a value of zero."
::= { etsysMultiAuthSessionStationEntry 3 }
etsysMultiAuthSessionAuthServerType OBJECT-TYPE
SYNTAX INTEGER {
radius(1),
local(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of authentication server used to authenticate this
session. A value of radius(1) indicates that a RADIUS request
and response were attempted in order to authenticate the session.
A value of local(2) indicates that the session was authenticated
by a local file or configuration on the device itself."
::= { etsysMultiAuthSessionStationEntry 4 }
etsysMultiAuthSessionAuthServerAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of data returned by etsysMultiAuthSessionAuthServerAddr.
If the etsysMultiAuthSessionAuthServerType leaf for this entry has
a value of local(2) then this object MUST return a a value of
unknown(0)."
::= { etsysMultiAuthSessionStationEntry 5 }
etsysMultiAuthSessionAuthServerAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The network address of the authentication server for this
session. If the etsysMultiAuthSessionAuthServerType leaf for
this entry has a value of local(2) then this object MUST
return a zero length string."
::= { etsysMultiAuthSessionStationEntry 6 }
etsysMultiAuthSessionPolicyIndex OBJECT-TYPE
SYNTAX Integer32 (0|1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Policy Profile Index returned from the authentication
server for this session.
The value of zero indicates that no policy will be applied
for this session. If the etsysMultiAuthSessionStationAuthStatus
object returns a value of authSuccess(1), then a value of
zero is the result of the policy not being configured on the
authorization server. For all other values of
etsysMultiAuthSessionStationAuthStatus a value of zero for this object
is the result of authorization not succeeding or not having
completed.
All values other than zero are valid Policy Profile
Indexes that specify the policy profile the user will receive on
this interface. If a given user has been authenticated by
multiple authentication types on the same interface the policy
that is applied to the user's packets is determined by the
precedence of the agents as specified by
etsysMultiAuthSystemOperPrecedence. These indexes are suitable
for indexing in the ENTERASYS-POLICY-PROFILE-MIB."
::= { etsysMultiAuthSessionStationEntry 7 }
etsysMultiAuthSessionIsApplied OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates whether this entry and the
policy index contained within it are actively being applied
to traffic matching the interface and station address of this
entry. A value of true(1) indicates that this entry is being
applied. A value of false(2) indicates that the entry is not
being applied. Only one authentication type per
interface station address ordered pair may be applied at a
single time. The operational precedence of the various
authentication types determines which if any type will be
applied."
::= { etsysMultiAuthSessionStationEntry 8 }
etsysMultiAuthSessionTerminationTime OBJECT-TYPE
SYNTAX DateAndTime (SIZE(8))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The local date and time that the session was terminated.
If the session is not in the authTerminated(5) state
this object MUST return '00000000'H."
DEFVAL { '00000000'H }
::= { etsysMultiAuthSessionStationEntry 9 }
etsysMultiAuthSessionSessionTimeout OBJECT-TYPE
SYNTAX Unsigned32 (0|1..65535)
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of seconds this session may last before
automatic termination. A value of zero indicates
that no session timeout will be applied. This value MAY be
provided by the etsysMultiAuthSessionTimeout object or
by the authenticating server."
::= { etsysMultiAuthSessionStationEntry 10 }
etsysMultiAuthSessionIdleTimeout OBJECT-TYPE
SYNTAX Unsigned32 (0|1..65535)
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of consecutive seconds this session may
be idle before automatic termination. A value of zero
indicates that no idle timeout will be applied. This value MAY
be provided by the etsysMultiAuthIdleTimeout object or
by the authenticating server."
::= { etsysMultiAuthSessionStationEntry 11 }
etsysMultiAuthSessionDuration OBJECT-TYPE
SYNTAX Gauge32
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The length of this session in seconds. This object MAY return
zero for a session in any state other than authSuccess(1)."
::= { etsysMultiAuthSessionStationEntry 12 }
etsysMultiAuthSessionIdleTime OBJECT-TYPE
SYNTAX Gauge32
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of consecutive seconds this session has been idle.
This object MAY return zero for a session in any state other
than authSuccess(1)."
::= { etsysMultiAuthSessionStationEntry 13 }
etsysMultiAuthSessionVlanTunnelAttribute OBJECT-TYPE
SYNTAX Integer32 (0|1..4094|4095)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The VLAN Tunnel Attribute (Tunnel-Group-ID) returned from the
authentication server for this session.
This value is interpreted as the 12 bit VLAN identifier
to be applied to traffic from the session entity. Policy VLAN
classification rules have precedence in assigning VLAN,
however, in the absence of any applicable rules, this VLAN
will be used. If the traffic is already tagged, this VLAN
will only be applied if TCI overwrite has been enabled
(through Policy or ctDot1qPortReplaceTCI).
A value of zero indicates that there is no authenticated VLAN
ID for the given session (none was provided by the authentication
server). Should a session become unauthenticated this value
MUST return zero.
A value of 4095 indicates that a the session has been
authenticated, but that the VLAN returned could not be applied
to the port (possibly because of resource constraints or
misconfiguration). The traffic from the session entity will
be assigned VLAN through Policy or standard 802.1Q mechanisms."
REFERENCE
"RFC 3580, 'IEEE 802.1X Remote Authentication Dial In User Service
(RADIUS) Usage Guidelines', Section 3.31"
::= { etsysMultiAuthSessionStationEntry 14 }
etsysMultiAuthSessionPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF EtsysMultiAuthSessionPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of session information and configuration for user
authentication. This table represents the information
specified in the etsysMultiAuthSessionStationTable with
alternate indexing for faster lookups of data on per port
basis."
::= { etsysMultiAuthSession 2 }
etsysMultiAuthSessionPortEntry OBJECT-TYPE
SYNTAX EtsysMultiAuthSessionPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing authentication information on a per port,
per station, per authentication agent type basis. Only interfaces
that are able to authenticate users are represented in this table."
INDEX { ifIndex,
etsysMultiAuthStationAddrType,
etsysMultiAuthStationAddr,
etsysMultiAuthSessionAgentType }
::= { etsysMultiAuthSessionPortTable 1 }
EtsysMultiAuthSessionPortEntry ::=
SEQUENCE {
etsysMultiAuthSessionPortAuthStatus
EtsysMultiAuthStatus
}
etsysMultiAuthSessionPortAuthStatus OBJECT-TYPE
SYNTAX EtsysMultiAuthStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of authentication for this session."
::= { etsysMultiAuthSessionPortEntry 1 }
-- -------------------------------------------------------------
-- The Multiple Authentication Module Group
-- -------------------------------------------------------------
etsysMultiAuthModuleTable OBJECT-TYPE
SYNTAX SEQUENCE OF EtsysMultiAuthModuleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of per module information for user authentication."
::= { etsysMultiAuthModule 1 }
etsysMultiAuthModuleEntry OBJECT-TYPE
SYNTAX EtsysMultiAuthModuleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing per module authentication data.
Only physical indexes with a entPhysicalClass of module(9)
are represented in this table. Furthermore, each entity
represented in this table must have authentication resources
that are separate from every other entity in the table."
INDEX { entPhysicalIndex }
::= { etsysMultiAuthModuleTable 1 }
EtsysMultiAuthModuleEntry ::=
SEQUENCE {
etsysMultiAuthModuleMaxNumUsers
Unsigned32,
etsysMultiAuthModuleCurrentNumUsers
Gauge32
}
etsysMultiAuthModuleMaxNumUsers OBJECT-TYPE
SYNTAX Unsigned32