-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathCISCO-NAC-NAD-MIB.mib
2058 lines (1761 loc) · 74.2 KB
/
CISCO-NAC-NAD-MIB.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
-- *****************************************************************
-- Cisco NAD-NAC MIB
--
-- July, 2005 Liwei Lue
--
-- Copyright (c) 2005,-2007 by Cisco Systems, Inc.
--
-- All rights reserved.
-- *****************************************************************
-- %DNP
CISCO-NAC-NAD-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
Unsigned32,
Integer32
FROM SNMPv2-SMI
MODULE-COMPLIANCE,
OBJECT-GROUP
FROM SNMPv2-CONF
StorageType,
RowStatus,
TruthValue,
MacAddress,
TimeStamp
FROM SNMPv2-TC
ifIndex,
InterfaceIndex,
InterfaceIndexOrZero
FROM IF-MIB
InetPortNumber,
InetAddressType,
InetAddressPrefixLength,
InetAddress
FROM INET-ADDRESS-MIB
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
CiscoURLString
FROM CISCO-TC
CpgPolicyNameOrEmpty
FROM CISCO-POLICY-GROUP-MIB
CnnEouPostureToken,
CnnEouPostureTokenString,
CnnEouState,
CnnEouAuthType,
CnnEouDeviceType
FROM CISCO-NAC-TC-MIB
ciscoMgmt
FROM CISCO-SMI;
ciscoNacNadMIB MODULE-IDENTITY
LAST-UPDATED "200702230000Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
"Cisco Systems
Customer Service
Postal: 170 W Tasman Drive
San Jose, CA 95134
USA
Tel: +1 800 553-NETS
E-mail: [email protected], [email protected]"
DESCRIPTION
"This MIB module is for the configuration of a Network
Access Device (NAD) on the Cisco Network Admission
Control (NAC) system.
EndPoint -------------- NAD ------- AAA ------ PVS
(SecurApp) EAPoUDP/802.1x RADIUS HCAP
(Plugin)
(PA)
Cisco NAC system
The Cisco Network Admission Control (NAC) security
solution offers a systems approach to customers for
ensuring endpoint device compliancy and vulnerability
checks prior to production access to the network. Cisco
refers to these compliancy checks as posture
validations. The intent of this systems approach is to
prevent the spread of works, viruses, and rogue
applications across the network. This systems approach
requires integration with third party end point security
applications, as well as endpoint security servers.
The Network Access Device (NAD) enforces network access
control privileges by controlling which endpoint devices
have access to network destinations and services
reachable through that NAD. Endpoint devices that do
not have the PA installed, enabled, or cannot otherwise
respond to the NAD posture challenges are considered
non-responsive hosts. Upon recognition of an incoming
endpoint device at L2 or L3, the NAD issues a challenge
to the endpoint device for posture credentials. Endpoint
devices with a PA will recognize the challenge and
respond with the necessary posture credentials. The NAD
acts as a relay agent between the endpoint device and
AAA server for all messages in the posture validation
exchange. Once the validation is complete, the NAD
enforces the access policy profile downloaded from the
AAA Server, e.g. (i) provide full access (ii) deny all
access through the NAD restrict access (quarantine) or
(iii) some intermediate level of network access
restriction or quarantine. Between posture
revalidations, the NAD may issue periodic status queries
to determine that the each endpoint device using the NAD
is still the same device that was first postured, and
that the endpoint device's posture credentials have not
changed. This mechanism is a challenge response protocol
that does not involve the AAA Server nor does it require
the posture plugins to resend any credentials. It is
used to trigger a full posture revalidation with the AAA
Server when the endpoint device's credentials have
changed (e.g. to revalidate the host endpoint device
after remediation), or a new host endpoint device
connects with a previously authorized IP address. The
NAD supports a local exception list based on IP, MAC
address or device type so that certain endpoint devices
can bypass the posture validation process based on
system administrator configuration. Also, the NAD may be
configured to query the AAA server for access policies
associated with endpoint devices that do not have a
Posture Agent installed, clientless host endpoint
devices.
Posture Validation occurs when a NAC-enabled network
access device (NAC) detects an endpoint device
attempting to connect or use its network resources and
it issues the endpoint device a posture challenge. An
endpoint device with a resident posture agent will
respond to the challenge with sets of posture
credentials from one or more posture plugins which can
detail the state of the various hardware and software
components on the endpoint device. The posture agent
response is forwarded by the network access device to an
AAA server which may in turn delegate parts of the
decision to posture validation server. Evaluation of the
credentials against posture validation policies results
in an authorization decision or posture token,
representing the endpoint device's relative compliance
to the network compliance policy. The AAA server then
sends the respective network access profile to the
network access device for enforcement of the endpoint
device authorization.
The Cisco Technology consists of the following:
Endpoint Device - Any host attempting to connect or use
the resource of a network. - e.g., a personal computer,
personal data digital assistant, or data server, or
other network attached device.
NAD - Network Access Device that enforces network
access control policies through layer 2 or layer 3
challenge-responses with a network enabled Endpoint
device.
PC - Posture Credentials that describe the state of
an application and/or operating system that is running
on an endpoint device at the time a layer 2 or layer 3
challenge response is issued by a NAD.
PP - Posture Plugin. A module implemented by an
application or agent provider that is responsible for
supplying the relevant posture credentials for the
application or agent.
PA - Posture Agent. Host agent software that serves as
a broker on the host for aggregating credential from
potentially multiple posture plugins and communicating
with the network.
CTA - Cisco Trust Agent. Cisco's implementation of
the posture agent.
EAP - Extensible Authentication Protocol. An extension
to PPP.
EOU - Extensible Authentication Protocol over UDP.
ACS/AAA - Cisco Secure Access Control Server. The
primary authorization server that is the network policy
decision point and is extended to support posture
validation.
PVS - Posture Validation Server.
UCT - Un Conditional Transition.
Clientless - Client without Cisco Posture Agent."
REVISION "200702230000Z"
DESCRIPTION
"Move all the TEXTUAL-CONVENTION to CISCO-NAC-TC-MIB;
Modify cnnEouHostValidateAction object to add
the following enum values:
initializePostureTokenStr(23),
revalidatePostureTokenStr(24),
noRevalidatePostureTokenStr(25)
to deprecate the following enum values:
initializePostureToken(8),
revalidatePostureToken(15),
noRevalidatePostureToken(22)
Modify cnnEouHostQueryMask object to add
postureTokenString(9) enum value to deprecate
postureToken(7) enum value
Add the following objects:
cnnEouHostValidatePostureTokenStr,
cnnEouHostQueryPostureTokenStr,
cnnEouHostResultPostureTokenStr,
to deprecate the following objects:
cnnEouHostValidatePostureToken,
cnnEouHostQueryPostureToken,
cnnEouHostResultPostureToken
Add ciscoNacNadEouHostGroup to deprecate
ciscoNacNadEouHostGrp
Add the following MIB groups:
ciscoNacNadEouIfAaaFailPolicyGrp
cnnIpDeviceTrackingConfigGrp
cnnEouCriticalRecoveryDelayGrp"
REVISION "200506280000Z"
DESCRIPTION
"Initial version of this MIB module."
::= { ciscoMgmt 484 }
ciscoNacNadMIBNotifs OBJECT IDENTIFIER
::= { ciscoNacNadMIB 0 }
ciscoNacNadMIBObjects OBJECT IDENTIFIER
::= { ciscoNacNadMIB 1 }
ciscoNacNadMIBConformance OBJECT IDENTIFIER
::= { ciscoNacNadMIB 2 }
cnnEouGlobalObjects OBJECT IDENTIFIER
::= { ciscoNacNadMIBObjects 1 }
cnnEouAuthorizeLists OBJECT IDENTIFIER
::= { ciscoNacNadMIBObjects 2 }
cnnEouIfMIBObjects OBJECT IDENTIFIER
::= { ciscoNacNadMIBObjects 3 }
cnnEouHostMIBObjects OBJECT IDENTIFIER
::= { ciscoNacNadMIBObjects 4 }
cnnIpDeviceTrackingObjects OBJECT IDENTIFIER
::= { ciscoNacNadMIBObjects 5 }
-- The cnnEouGlobalObjects group
cnnEouVersion OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The version of EOU in use on the local system.
Value zero indicates the version can not be determined."
::= { cnnEouGlobalObjects 1 }
cnnEouEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether the posture validation via EOU is globally
enabled or disabled in the device."
::= { cnnEouGlobalObjects 2 }
cnnEouAllowClientless OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether to allow authentication of clientless
hosts (system that does not run Cisco Trust Agent)."
::= { cnnEouGlobalObjects 3 }
cnnEouAllowIpStationId OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"It indicates whether to send the host IP address in the
calling station ID field of Radius request."
::= { cnnEouGlobalObjects 4 }
cnnEouLoggingEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"To enable or disable EOU system logging events.
Set to 'true' to enable syslog message at an informational level
(syslog level 6)."
::= { cnnEouGlobalObjects 5 }
cnnEouMaxRetry OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The number of maximum retry attempts for EOU."
::= { cnnEouGlobalObjects 6 }
cnnEouPort OBJECT-TYPE
SYNTAX InetPortNumber
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The UDP port for EOU. The port cannot conflict with
other UDP application."
::= { cnnEouGlobalObjects 7 }
cnnEouRateLimit OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of clients that can be simultaneously
validated.
Set the rate limit to 0 (zero), rate limiting will be
turned off.
If the rate limit is set to 100 and there are 101 clients,
validation will not occur until one drop off."
::= { cnnEouGlobalObjects 8 }
cnnEouTimeoutAAA OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Timeout period used by NAD with AAA (Authentication,
Authorization and Accounting."
::= { cnnEouGlobalObjects 9 }
cnnEouTimeoutHoldPeriod OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Length of time that can elapse before the client sessions
are purged from the system due to client inactivity."
::= { cnnEouGlobalObjects 10 }
cnnEouTimeoutRetransmit OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The timeout period for the EOU message retransmitted."
::= { cnnEouGlobalObjects 11 }
cnnEouTimeoutRevalidation OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The timeout period for the revalidation. Setting this object
to 0 will globally disable periodic revalidation on this
device."
::= { cnnEouGlobalObjects 12 }
cnnEouTimeoutStatusQuery OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The timeout period for the status query after revalidation."
::= { cnnEouGlobalObjects 13 }
cnnEouCriticalRecoveryDelay OBJECT-TYPE
SYNTAX Unsigned32
UNITS "milliseconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the EOU critical recovery delay time for
the device. A value of zero indicates that critical recovery
delay feature is disabled."
::= { cnnEouGlobalObjects 14 }
-- The cnnIpDeviceTrackingObjects group
cnnIpDeviceTrackingEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies whether the IP device tracking feature is globally
enabled or disabled on this device."
::= { cnnIpDeviceTrackingObjects 1 }
cnnIpDeviceTrackingProbeCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the number of times that this device sends the ARP
probe to an IP device before removing the IP device from the IP
device tracking table."
::= { cnnIpDeviceTrackingObjects 2 }
cnnIpDeviceTrackingProbeInterval OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the number of the seconds that this device waits
before resending the ARP probe."
::= { cnnIpDeviceTrackingObjects 3 }
-- statically authorized device
cnnEouAuthIpTable OBJECT-TYPE
SYNTAX SEQUENCE OF CnnEouAuthIpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of statically authorized IP devices in the system."
::= { cnnEouAuthorizeLists 1 }
cnnEouAuthIpEntry OBJECT-TYPE
SYNTAX CnnEouAuthIpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing the associated policy information of
the statically authorized IP device. An entry can be created,
or deleted by using cnnEouAuthIpRowStatus.
Each statically authorized IP device is associated with a
policy. By creating, deleting or modifying an entry in this
table, users can add, delete or modify a policy for a particular
statically authorized IP device.
In order to add the statically authorized IP device into
exception-list and associate with the specific policy, user has
to create an entry for the device."
INDEX {
cnnEouAuthIpAddrType,
cnnEouAuthIpAddr
}
::= { cnnEouAuthIpTable 1 }
CnnEouAuthIpEntry ::= SEQUENCE {
cnnEouAuthIpAddrType InetAddressType,
cnnEouAuthIpAddr InetAddress,
cnnEouAuthIpAddrMask InetAddressPrefixLength,
cnnEouAuthIpPolicy SnmpAdminString,
cnnEouAuthIpStorageType StorageType,
cnnEouAuthIpRowStatus RowStatus
}
cnnEouAuthIpAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The type of Internet address by which the statically
authorized IP device is reachable."
::= { cnnEouAuthIpEntry 1 }
cnnEouAuthIpAddr OBJECT-TYPE
SYNTAX InetAddress (SIZE (1..64))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Internet address for the statically authorized IP device.
The type of this address is determined by the value of the
cnnEouAuthIpAddrType object."
::= { cnnEouAuthIpEntry 2 }
cnnEouAuthIpAddrMask OBJECT-TYPE
SYNTAX InetAddressPrefixLength
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Using 'inverse mask' to support IP wildcards. The mask used
with the source IP address will specify what traffic is exempted
from EAP validation.
e.g. cnnEouAuthIpAddr: 10.0.0.0
cnnEouAuthIpAddrMask: 0.255.255.255
This exempts any IP in the subnet at 10.x.x.x from posture
validation.
cnnEouAuthIpAddr: 10.1.2.1
cnnEouAuthIpAddrMask: 0.0.0.0
This exempts host IP 10.1.2.1 from posture validation.
cnnEouAuthIpAddr: 10.0.0.0
cnnEouAuthIpAddrMask: 255.255.255.255
Mask value of 255.255.255.255 will exempt ALL hosts from
posture validation."
::= { cnnEouAuthIpEntry 3 }
cnnEouAuthIpPolicy OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The policy associate with the statically authorized IP
device. The policy needs to be present in the policy-database
before an statically authorized IP device can be associated
to it."
::= { cnnEouAuthIpEntry 4 }
cnnEouAuthIpStorageType OBJECT-TYPE
SYNTAX StorageType
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The storage type for this conceptual row."
DEFVAL { nonVolatile }
::= { cnnEouAuthIpEntry 5 }
cnnEouAuthIpRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this conceptual row.
To create an entry, users set the value of this object to
'createAndGo'.
The transition from 'active' to 'notInService' may not be
supported.
A row may be deleted by setting the RowStatus to 'destroy'.
Once a row becomes active, values within the row cannot be
modified, except by deleting and re-creating the row."
::= { cnnEouAuthIpEntry 6 }
-- Mac Exception list
cnnEouAuthMacTable OBJECT-TYPE
SYNTAX SEQUENCE OF CnnEouAuthMacEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of static authorized devices identified by MAC address."
::= { cnnEouAuthorizeLists 2 }
cnnEouAuthMacEntry OBJECT-TYPE
SYNTAX CnnEouAuthMacEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing the associated policy information of
the statically authorized device identified by MAC address.
The entry is created, and deleted by using
cnnEouAuthMacRowStatus."
INDEX { cnnEouAuthMacAddr }
::= { cnnEouAuthMacTable 1 }
CnnEouAuthMacEntry ::= SEQUENCE {
cnnEouAuthMacAddr MacAddress,
cnnEouAuthMacAddrMask MacAddress,
cnnEouAuthMacPolicy SnmpAdminString,
cnnEouAuthMacStorageType StorageType,
cnnEouAuthMacRowStatus RowStatus
}
cnnEouAuthMacAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The MAC address of the static authorized device."
::= { cnnEouAuthMacEntry 1 }
cnnEouAuthMacAddrMask OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Using 'inverse mask' support MAC wildcards. The mask used
with the source MAC address will specify what traffic is
exempted from EAP validation.
e.g. cnnEouAuthMacAddr: 00:0d:bc:ef:eb:bd
cnnEouAuthMacAddrMask: 00:00:ff:ff:ff:ff
This exempts any MAC in the range 00:0d:00:00:00:00 from
posture validation.
cnnEouAuthMacAddr: 00:0d:bc:ef:eb:bd
cnnEouAuthMacAddrMask: 00:00:00:00:00:00
This exempts specific MAC 00:0d:bc:ef:eb:bd from posture
validation.
cnnEouAuthMacAddr: 00:0d:bc:ef:eb:bd
cnnEouAuthMacAddrMask: ff:ff:ff:ff:ff:ff
This exempts all MAC address from posture validation."
::= { cnnEouAuthMacEntry 2 }
cnnEouAuthMacPolicy OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The policy associate with the statically authorized device
identified by MAC address. The policy needs to be present
in the policy-database before an device can be associated to
it."
::= { cnnEouAuthMacEntry 3 }
cnnEouAuthMacStorageType OBJECT-TYPE
SYNTAX StorageType
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The storage type for this conceptual row."
DEFVAL { nonVolatile }
::= { cnnEouAuthMacEntry 4 }
cnnEouAuthMacRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this conceptual row.
To create an entry, users set the value of this object to
'createAndGo'.
The transition from 'active' to 'notInService' may not be
supported.
A row may be deleted by setting the RowStatus to 'destroy'.
Once a row becomes active, values within the row cannot be
modified, except by deleting and re-creating the row."
::= { cnnEouAuthMacEntry 5 }
-- DeviceType Exception list
cnnEouAuthDeviceTypeTable OBJECT-TYPE
SYNTAX SEQUENCE OF CnnEouAuthDeviceTypeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of static authorized devices indexed by device type."
::= { cnnEouAuthorizeLists 3 }
cnnEouAuthDeviceTypeEntry OBJECT-TYPE
SYNTAX CnnEouAuthDeviceTypeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing the information of the static authorized
device indexed by device type."
INDEX { cnnEouAuthDeviceType }
::= { cnnEouAuthDeviceTypeTable 1 }
CnnEouAuthDeviceTypeEntry ::= SEQUENCE {
cnnEouAuthDeviceType CnnEouDeviceType,
cnnEouAuthDeviceTypeStorageType StorageType,
cnnEouAuthDeviceTypeRowStatus RowStatus
}
cnnEouAuthDeviceType OBJECT-TYPE
SYNTAX CnnEouDeviceType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The static authorize device type."
::= { cnnEouAuthDeviceTypeEntry 1 }
cnnEouAuthDeviceTypeStorageType OBJECT-TYPE
SYNTAX StorageType
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The storage type for this conceptual row."
DEFVAL { nonVolatile }
::= { cnnEouAuthDeviceTypeEntry 2 }
cnnEouAuthDeviceTypeRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to create or delete an entry in the
cnnEouAuthDeviceTypeTable.
A row may be created using the 'CreateAndGo' option.
A row may be deleted by setting the RowStatus to 'destroy'.
Once a row becomes active, values within the row cannot be
modified, except by deleting and re-creating the row."
::= { cnnEouAuthDeviceTypeEntry 3 }
-- EAPoUDP Interface Configuration
cnnEouIfConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF CnnEouIfConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of EOU configurations for the EOU capable interfaces."
::= { cnnEouIfMIBObjects 1 }
cnnEouIfConfigEntry OBJECT-TYPE
SYNTAX CnnEouIfConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing the EOU configuration information for a
particular EOU capable interface."
INDEX { ifIndex }
::= { cnnEouIfConfigTable 1 }
CnnEouIfConfigEntry ::= SEQUENCE {
cnnEouIfAdminStatus INTEGER ,
cnnEouIfMaxRetry Integer32,
cnnEouIfValidateAction INTEGER ,
cnnEouIfTimeoutGlobalConfig BITS,
cnnEouIfTimeoutAAA Unsigned32,
cnnEouIfTimeoutHoldPeriod Unsigned32,
cnnEouIfTimeoutRetransmit Unsigned32,
cnnEouIfTimeoutRevalidation Unsigned32,
cnnEouIfTimeoutStatusQuery Unsigned32,
cnnEouIfAaaFailPolicy CpgPolicyNameOrEmpty
}
cnnEouIfAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
auto(1),
disabled(2),
bypass(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Setting this object to 'auto' means the Posture Validation via
EOU ability at this interface would be enabled if a end point
device is found.
If the value of this object is 'disabled' then the interface
will act as it would if it had no posture validation via EOU
ability.
Setting this object to 'bypass' allows the host connected
to this interface this interface to bypass the Posture
Validation and directly download the host network access policy
from AAA server. "
::= { cnnEouIfConfigEntry 1 }
cnnEouIfMaxRetry OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The maximum number of retry by EOU for this interface."
::= { cnnEouIfConfigEntry 2 }
cnnEouIfValidateAction OBJECT-TYPE
SYNTAX INTEGER {
none(1),
initialize(2),
revalidate(3),
noRevalidate(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"An EOU validate action to the devices associated with the
interface.
This object always has the value 'none' when read.
none(1) no operation is performed.
initialize(2) Manually initiates reauthentication of all
the endpoint devices associated with the
interface.
revalidate(3) Revalidate EOU posture credentials of the
devices associated with a specify interface.
noRevalidate(4) Disable the revalidation of all the device
associated with the interface."
::= { cnnEouIfConfigEntry 3 }
cnnEouIfTimeoutGlobalConfig OBJECT-TYPE
SYNTAX BITS {
aaa(0),
holdPeriod(1),
retransmit(2),
revalidation(3),
statusQuery(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates whether the timeout configurations on
this interface are based on the corresponding global
timeout configurations or not.
aaa(0) If this bit is set, the value of
cnnEouIfTimeoutAAA is based on the
value of cnnEouTimeoutAAA.
holdPeriod(1) If this bit is set, the value of
cnnEouIfTimeoutHoldPeriod is based on the
value of cnnEouTimeoutHoldPeriod.
retransmit(2) If this bit is set, the value of
cnnEouIfTimeoutRetransmit is based on the
value of cnnEouTimeoutRetransmit.
revalidation(3) If this bit is set, the value of
cnnEouIfTimeoutRevalidation is based on the
value of cnnEouTimeoutRevalidation.
statusQuery(4) If this bit is set, the value of
cnnEouIfTimeoutStatusQuery is based on the
value of cnnEouTimeoutStatusQuery.
If a bit is not set, the value of the corresponding object
in the same conceptual row is not based on its corresponding
global object.
If users configure object which is covered by
cnnEouIfTimeoutGlobalConfig in the same conceptual row
while the corresponding bit is set, the corresponding bit will
be unset in order to reflect that such configuration is not
from its corresponding global object."
::= { cnnEouIfConfigEntry 4 }
cnnEouIfTimeoutAAA OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The timeout period used by EOU for the AAA server
connection on this interface."
::= { cnnEouIfConfigEntry 5 }
cnnEouIfTimeoutHoldPeriod OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The hold period of this interface. The hold period
is the length of the time that can elapse before the client
session entries are purged from the system due to client
inactivity."
::= { cnnEouIfConfigEntry 6 }
cnnEouIfTimeoutRetransmit OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The timeout period for the EOU message retransmitted at this
interface."
::= { cnnEouIfConfigEntry 7 }
cnnEouIfTimeoutRevalidation OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The timeout period for the revalidation at this interface.
Setting this object to 0 will disable periodic revalidation on
this device."
::= { cnnEouIfConfigEntry 8 }
cnnEouIfTimeoutStatusQuery OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The timeout period for the status query after revalidation at
this interface."
::= { cnnEouIfConfigEntry 9 }
cnnEouIfAaaFailPolicy OBJECT-TYPE
SYNTAX CpgPolicyNameOrEmpty
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specified the name of the policy template to be applied when
cnnEouHostResultState is 'aaaFail'. The specified policy name
must exist in cpgPolicyTable if it is not empty string."
::= { cnnEouIfConfigEntry 10 }
-- Validation Action: Initialize, Revalidate, noRevalidate
cnnEouHostValidateAction OBJECT-TYPE
SYNTAX INTEGER {
none(1),
initializeAll(2),
initializeAuthClientless(3),
initializeAuthEap(4),
initializeAuthStatic(5),
initializeIp(6),
initializeMac(7),
initializePostureToken(8),
revalidateAll(9),
revalidateAuthClientless(10),
revalidateAuthEap(11),
revalidateAuthStatic(12),
revalidateIp(13),
revalidateMac(14),
revalidatePostureToken(15),
noRevalidateAll(16),
noRevalidateAuthClientless(17),
noRevalidateAuthEap(18),
noRevalidateAuthStatic(19),
noRevalidateIp(20),
noRevalidateMac(21),
noRevalidatePostureToken(22),
initializePostureTokenStr(23),
revalidatePostureTokenStr(24),
noRevalidatePostureTokenStr(25)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"An EOU validate action to the devices.
Initialize: When a device is initialized, all previous state
information about that host is deleted and the admission
control process for that host will start with no state.
Revalidate: When a host is revalidated, state information about
that host is retained so that the host still has its' normal
access during the revalidation process.
This object always has the value 'none' when read.
none(1) - no operation is performed.
initializeAll(2) - to manually initiates reauthentication of
all endpoint devices on the system.
initializeAuthClientless(3) - to manually initiates
reauthentication of all clientless endpoint devices.
initializeAuthEap(4) - to manually initiates reauthentication of
all the endpoint devices authorized by Extensive
Authentication Protocol.
initializeAuthStatic(5) - to manually initiates reauthentication
of all the statically authorized endpoint devices.
initializeIp(6) - to manually initiates reauthentication of a
specific IP device. The value in
cnnEouHostValidateIpAddrType and
cnnEouHostValidateIpAddr are used by this operation.
initializeMac(7) - to manually initiates reauthentication of the
endpoint device identified by MAC address. The value
in cnnEouHostValidateMacAddr is used by this
operation.
initializePostureToken(8) - to manually initiates
reauthentication of the endpoint device(s) with a
specify posture token assigned. The value in
cnnEouHostValidatePostureToken is used by this
operation.
This enumerated integer is deprecated and replaced by
initializePostureTokenStr(23).
revalidateAll(9) - to revalidate EOU posture credentials of all
devices on the system.
revalidateAuthClientless(10) - to revalidate EOU posture
credentials of all clientless devices on the system.
revalidateAuthEap(11) - to revalidate EOU posture credentials of
the devices authorized by EAP on the system.
revalidateAuthStatic(12) - to revalidate EOU posture credentials