-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathCISCO-IKE-CONFIGURATION-MIB-V1SMI.my
1396 lines (1291 loc) · 41 KB
/
CISCO-IKE-CONFIGURATION-MIB-V1SMI.my
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
-- MIB file created 28-Oct-2004 13:35:17, by
-- SMICng version 2.2.11-beta(PRO)(Solaris), January 20, 2001. Enterprise key cisco.com
CISCO-IKE-CONFIGURATION-MIB DEFINITIONS ::= BEGIN
-- From file: "CISCO-IKE-CONFIGURATION-MIB.my"
-- Compile options "4 7 F H N O W 03 06 0B 0G 0N 0T"
IMPORTS
RowStatus, TruthValue
FROM SNMPv2-TC-v1
InetAddress, InetAddressType, InetAddressPrefixLength
FROM INET-ADDRESS-MIB
CIPsecPhase1PeerIdentityType, CIPsecIkeAuthMethod,
CIPsecDiffHellmanGrp, CIPsecIkeHashAlgorithm,
CIPsecEncryptAlgorithm, CIPsecIkePRFAlgorithm, CIKEIsakmpDoi,
CIKELifetime, CIPsecControlProtocol, CIKELifesize
FROM CISCO-IPSEC-TC
ciscoMgmt
FROM CISCO-SMI
Gauge
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212
TRAP-TYPE
FROM RFC-1215;
ciscoIkeConfigMIB OBJECT IDENTIFIER ::= { ciscoMgmt 423 }
-- MODULE-IDENTITY
-- LastUpdated
-- 200409160000Z
-- OrgName
-- Cisco Systems
-- ContactInfo
-- Cisco Systems
-- Customer Service
--
-- Postal: 170 W Tasman Drive
-- San Jose, CA 95134
-- USA
--
-- Tel: +1 800 553-NETS
--
-- E-mail: [email protected]
-- Descr
-- This is a MIB Module for configuring and viewing IKE
-- parameters and policies.
--
-- Acronyms
-- The following acronyms are used in this document:
--
-- IPsec: Secure IP Protocol
--
-- VPN: Virtual Private Network
--
-- ISAKMP: Internet Security Association and Key Exchange
-- Protocol
--
-- IKE: Internet Key Exchange Protocol
--
-- DOI: Domain of Interpretation (of the attributes
-- of IKE protocol in the context of a specific
-- Phase-2 protocol).
--
-- SA: Security Association
-- (ref: rfc2408).
--
-- SPI: Security Parameter Index is the pointer or
-- identifier used in accessing SA attributes
-- (ref: rfc2408).
--
-- MM: Main Mode - the process of setting up
-- a Phase 1 SA to secure the exchanges
-- required to setup Phase 2 SAs
--
-- Phase 1 Tunnel:
-- An ISAKMP SA can be regarded as representing
-- a flow of ISAKMP/IKE traffic. Hence an ISAKMP
-- is referred to as a 'Phase 1 Tunnel' in this
-- document.
--
-- Phase 2 Tunnel:
-- A Phase 2 Tunnel is an instance of a
-- non-ISAKMP SA bundle in which all the SA
-- share the same proxy identifiers (IDii,IDir)
-- and protect the same stream of application
-- traffic.
-- Note that a Phase 2 tunnel may comprise one
-- SA bundle at any given point of time, but
-- the SA bundle changes with time due to
-- key refresh.
--
--
-- History of the MIB
-- This MIB was originally written as CISCO-IPSEC-MIB
-- which combined the configuration of IKE and IPsec
-- protocols into a single MIB.
-- RevDate
-- 200409160000Z
-- RevDescr
-- Initial version of this MIB module.
cicIkeConfigMIBNotifs OBJECT IDENTIFIER ::= { ciscoIkeConfigMIB 0 }
cicIkeConfigMIBObjects OBJECT IDENTIFIER ::= { ciscoIkeConfigMIB 1 }
cicIkeConfigMIBConform OBJECT IDENTIFIER ::= { ciscoIkeConfigMIB 2 }
cicIkeCfgOperations OBJECT IDENTIFIER ::= { cicIkeConfigMIBObjects 1 }
cicIkeCfgIdentities OBJECT IDENTIFIER ::= { cicIkeConfigMIBObjects 2 }
cicIkeCfgFailureRecovery OBJECT IDENTIFIER ::= { cicIkeConfigMIBObjects 3 }
cicIkeCfgPeerAuth OBJECT IDENTIFIER ::= { cicIkeConfigMIBObjects 4 }
cicIkeCfgPskAuthConfig OBJECT IDENTIFIER ::= { cicIkeCfgPeerAuth 1 }
cicIkeCfgNonceAuthConfig OBJECT IDENTIFIER ::= { cicIkeCfgPeerAuth 2 }
cicIkeCfgPkiAuthConfig OBJECT IDENTIFIER ::= { cicIkeCfgPeerAuth 3 }
cicIkeCfgPolicies OBJECT IDENTIFIER ::= { cicIkeConfigMIBObjects 5 }
cicIkeCfgServiceControl OBJECT IDENTIFIER ::= { cicIkeConfigMIBObjects 6 }
cicIkeCfgCallAdmssionnCtrl OBJECT IDENTIFIER ::= { cicIkeCfgServiceControl 1 }
cicIkeCfgQoSControl OBJECT IDENTIFIER ::= { cicIkeCfgServiceControl 2 }
cicIkeConfigMibNotifCntl OBJECT IDENTIFIER ::= { cicIkeConfigMIBObjects 7 }
cicIkeCfgMIBGroups OBJECT IDENTIFIER ::= { cicIkeConfigMIBConform 1 }
cicIkeCfgMIBCompliances OBJECT IDENTIFIER ::= { cicIkeConfigMIBConform 2 }
CicIkeConfigPskIndex ::= Gauge(1..65535)
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- An arbitrary unique value identifying the
-- configured pre-shared keys.
CicIkeConfigInitiatorIndex ::= Gauge(1..65535)
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- An arbitrary unique value identifying the
-- configured IKE version initiator.
cicIkeEnabled OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"
This object reflects the operational status (enabled/
disabled) of the IKE entity on the managed device.
'true' - IKE is enabled.
'false' - IKE is disabled."
::= { cicIkeCfgOperations 1 }
cicIkeAggressModeEnabled OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"
This object reflects if the IKE entity on the managed
device performs aggressive mode negotiations.
'true' - IKE entity performs aggressive mode
negotiations.
'false' - IKE entity does not perform aggressive mode
negotiations."
::= { cicIkeCfgOperations 2 }
cicIkeCfgIdentityTable OBJECT-TYPE
SYNTAX SEQUENCE OF CicIkeCfgIdentityEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"
The table containing the list of Phase-1 identities
used by the IKE protocol for the different Phase-2
DOIs it operates in."
::= { cicIkeCfgIdentities 1 }
cicIkeCfgIdentityEntry OBJECT-TYPE
SYNTAX CicIkeCfgIdentityEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"
Each entry represents a Phase-1 identity
used by IKE for a specific Phase-2 DOI."
INDEX { cicIkeCfgIdentityDoi }
::= { cicIkeCfgIdentityTable 1 }
CicIkeCfgIdentityEntry ::= SEQUENCE {
cicIkeCfgIdentityDoi CIKEIsakmpDoi,
cicIkeCfgIdentityType CIPsecPhase1PeerIdentityType
}
cicIkeCfgIdentityDoi OBJECT-TYPE
SYNTAX CIKEIsakmpDoi
-- Rsyntax INTEGER {
-- isakmpDoiUnknown(1),
-- isakmpDoiOther(2),
-- isakmpDoiIPsec(3),
-- isakmpDoiFcsp(4),
-- isakmpDoiCps(5),
-- isakmpDoiFcCtAuth(6)
-- }
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"
This is the DOI type that is supported
by this IKE entity on the managed device and
for which the Phase-1 identity corresponding to this
conceptual row is being defined."
::= { cicIkeCfgIdentityEntry 1 }
cicIkeCfgIdentityType OBJECT-TYPE
SYNTAX CIPsecPhase1PeerIdentityType
-- Rsyntax INTEGER {
-- idOther(1),
-- idIpv4Addr(2),
-- idFqdn(3),
-- idDn(4),
-- idIpv6Addr(5),
-- idUserFqdn(6),
-- idIpv4AddrSubnet(7),
-- idIpv6AddrSubnet(8),
-- idIpv4AddrRange(9),
-- idIpv6AddrRange(10),
-- idDerAsn1Gn(11),
-- idKeyId(12),
-- idWwn(13)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"
The Phase I identity type used by the Phase-2 DOI
corresponding to this conceptual row."
::= { cicIkeCfgIdentityEntry 2 }
cicIkeCfgInitiatorNextAvailTable OBJECT-TYPE
SYNTAX SEQUENCE OF CicIkeCfgInitiatorNextAvailEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"
The table providing the next available index for
the cicIkeCfgInitiatorTable, in a domain of
interpretation(DOI), identified by
cicIkeCfgIdentityDoi. This value is only a
recommended value, but the user can choose to
use a different value to create an entry
in the cicIkeCfgInitiatorTable. "
::= { cicIkeCfgIdentities 2 }
cicIkeCfgInitiatorNextAvailEntry OBJECT-TYPE
SYNTAX CicIkeCfgInitiatorNextAvailEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"
Each entry represents a next available index
for the cicIkeCfgInitiatorTable."
INDEX { cicIkeCfgIdentityDoi }
-- Augments cicIkeCfgIdentityEntry
::= { cicIkeCfgInitiatorNextAvailTable 1 }
CicIkeCfgInitiatorNextAvailEntry ::= SEQUENCE {
cicIkeCfgInitiatorNextAvailIndex CicIkeConfigInitiatorIndex
}
cicIkeCfgInitiatorNextAvailIndex OBJECT-TYPE
SYNTAX CicIkeConfigInitiatorIndex
-- Rsyntax Gauge(1..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"
The object specifies the next available index for
object cicIkeCfgInitiatorIndex which can be used for
creating an entry in cicIkeCfgInitiatorTable."
::= { cicIkeCfgInitiatorNextAvailEntry 1 }
cicIkeCfgInitiatorTable OBJECT-TYPE
SYNTAX SEQUENCE OF CicIkeCfgInitiatorEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The table containing the IKE version initiators
for peers. "
::= { cicIkeCfgIdentities 3 }
cicIkeCfgInitiatorEntry OBJECT-TYPE
SYNTAX CicIkeCfgInitiatorEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry represents the IKE protocol version
initiated when connecting to a remote peer."
INDEX { cicIkeCfgIdentityDoi, cicIkeCfgInitiatorIndex }
::= { cicIkeCfgInitiatorTable 1 }
CicIkeCfgInitiatorEntry ::= SEQUENCE {
cicIkeCfgInitiatorIndex CicIkeConfigInitiatorIndex,
cicIkeCfgInitiatorPAddrType CIPsecPhase1PeerIdentityType,
cicIkeCfgInitiatorPAddr OCTET STRING,
cicIkeCfgInitiatorVer CIPsecControlProtocol,
cicIkeCfgInitiatorStatus RowStatus
}
cicIkeCfgInitiatorIndex OBJECT-TYPE
SYNTAX CicIkeConfigInitiatorIndex
-- Rsyntax Gauge(1..65535)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An arbitrary value identifying the configured
IKE version initiated for a peer in this domain of
interpretation, identified by cicIkeCfgIdentityDoi,
on a managed device. This object could have the
same value as cicIkeCfgInitiatorNextAvailIndex."
::= { cicIkeCfgInitiatorEntry 1 }
cicIkeCfgInitiatorPAddrType OBJECT-TYPE
SYNTAX CIPsecPhase1PeerIdentityType
-- Rsyntax INTEGER {
-- idOther(1),
-- idIpv4Addr(2),
-- idFqdn(3),
-- idDn(4),
-- idIpv6Addr(5),
-- idUserFqdn(6),
-- idIpv4AddrSubnet(7),
-- idIpv6AddrSubnet(8),
-- idIpv4AddrRange(9),
-- idIpv6AddrRange(10),
-- idDerAsn1Gn(11),
-- idKeyId(12),
-- idWwn(13)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"
The Phase 1 ID type of the remote peer for which
this IKE protocol initiator is configured.
This object cannot be modified while the
corresponding value of cicIkeCfgInitiatorStatus is
equal to 'active'."
::= { cicIkeCfgInitiatorEntry 2 }
cicIkeCfgInitiatorPAddr OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1..255))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object represents the address of the remote
peer corresponding to this conceptual row.
This object cannot be modified while the
corresponding value of cicIkeCfgInitiatorStatus is
equal to 'active'."
::= { cicIkeCfgInitiatorEntry 3 }
cicIkeCfgInitiatorVer OBJECT-TYPE
SYNTAX CIPsecControlProtocol
-- Rsyntax INTEGER {
-- cpUnknown(1),
-- cpAll(2),
-- cpOther(3),
-- cpManual(4),
-- cpIkev1(5),
-- cpIkev2(6),
-- cpKink(7),
-- cpPhoturis(8)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object represents the IKE protocol version
used when connecting to a remote peer specified in
cicIkeCfgInitiatorPAddr.
This object cannot be modified while the
corresponding value of cicIkeCfgInitiatorStatus is
equal to 'active'."
::= { cicIkeCfgInitiatorEntry 4 }
cicIkeCfgInitiatorStatus OBJECT-TYPE
SYNTAX RowStatus
-- Rsyntax INTEGER {
-- active(1),
-- notInService(2),
-- notReady(3),
-- createAndGo(4),
-- createAndWait(5),
-- destroy(6)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The status of this conceptual row. To configure an
IKE version initiator entry, the NMS must do a
multivarbind set containing
cicIkeCfgInitiatorPAddrType, cicIkeCfgInitiatorPAddr
and cicIkeCfgInitiatorVer.
Creation of row can only be done via 'createAndGo'.
To remove a row, set this object value to 'destroy'."
::= { cicIkeCfgInitiatorEntry 5 }
cicIkeCfgFailureRecovConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF CicIkeCfgFailureRecovConfigEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The table containing the failure recovery
configuration for IKE per supported DOI in the
managed entity."
::= { cicIkeCfgFailureRecovery 1 }
cicIkeCfgFailureRecovConfigEntry OBJECT-TYPE
SYNTAX CicIkeCfgFailureRecovConfigEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry represents a Phase I failure recovery
configuration for the Phase 2 DOI corresponding
to the conceptual row."
INDEX { cicIkeCfgIdentityDoi }
-- Augments cicIkeCfgIdentityEntry
::= { cicIkeCfgFailureRecovConfigTable 1 }
CicIkeCfgFailureRecovConfigEntry ::= SEQUENCE {
cicIkeKeepAliveEnabled TruthValue,
cicIkeKeepAliveType INTEGER,
cicIkeKeepAliveInterval Gauge,
cicIkeKeepAliveRetryInterval Gauge,
cicIkeInvalidSpiNotify TruthValue
}
cicIkeKeepAliveEnabled OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"
This object reflects if the IKE entity in the
managed device performs keepalives with all the
peers for the DOI corresponding to this
conceptual row.
'true' - keepalives are performed.
'false' - no keepalives are performed."
::= { cicIkeCfgFailureRecovConfigEntry 1 }
cicIkeKeepAliveType OBJECT-TYPE
SYNTAX INTEGER {
none(1),
periodic(2),
ondemand(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"
This object reflects the type of keepalives to be used
by the IKE entity on the managed device with all the
peers for the DOI corresponding to this conceptual row."
::= { cicIkeCfgFailureRecovConfigEntry 2 }
cicIkeKeepAliveInterval OBJECT-TYPE
SYNTAX Gauge(1..86400)
-- Units
-- seconds
ACCESS read-write
STATUS mandatory
DESCRIPTION
"
This object reflects the keepalive interval in
seconds used by the IKE entity on the managed
device with all the peers for the DOI corresponding
to this conceptual row."
::= { cicIkeCfgFailureRecovConfigEntry 3 }
cicIkeKeepAliveRetryInterval OBJECT-TYPE
SYNTAX Gauge(1..600)
-- Units
-- seconds
ACCESS read-write
STATUS mandatory
DESCRIPTION
"
This object reflects the keepalive retry interval
in seconds used by the IKE entity on the managed
device with all the peers for the DOI corresponding
to this conceptual row."
::= { cicIkeCfgFailureRecovConfigEntry 4 }
cicIkeInvalidSpiNotify OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"
This object reflects if the IKE entity on the managed
device notifies any peer when an IPsec Phase-1 or
Phase-2 packet with an invalid SPI is received from
that peer for the DOI corresponding to this
conceptual row.
'true' - IKE entity notifies peer.
'false' - IKE entity does not notify peer."
::= { cicIkeCfgFailureRecovConfigEntry 5 }
cicIkeCfgPskNextAvailTable OBJECT-TYPE
SYNTAX SEQUENCE OF CicIkeCfgPskNextAvailEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"
The table providing the next available index for the
cicIkeCfgPskTable, in a domain of interpretation(DOI),
identified by cicIkeCfgIdentityDoi.
This value is only a recommended value, but the user
can choose to use a different value to create an
entry in the cicIkeCfgPskTable. "
::= { cicIkeCfgPskAuthConfig 1 }
cicIkeCfgPskNextAvailEntry OBJECT-TYPE
SYNTAX CicIkeCfgPskNextAvailEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"
Each entry represents a next available index for the
cicIkeCfgPskTable."
INDEX { cicIkeCfgIdentityDoi }
-- Augments cicIkeCfgIdentityEntry
::= { cicIkeCfgPskNextAvailTable 1 }
CicIkeCfgPskNextAvailEntry ::= SEQUENCE {
cicIkeCfgPskNextAvailIndex CicIkeConfigPskIndex
}
cicIkeCfgPskNextAvailIndex OBJECT-TYPE
SYNTAX CicIkeConfigPskIndex
-- Rsyntax Gauge(1..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"
The object specifies the next available index for
object cicIkeCfgPskIndex which can be used for
creating an entry in cicIkeCfgPskTable."
::= { cicIkeCfgPskNextAvailEntry 1 }
cicIkeCfgPskTable OBJECT-TYPE
SYNTAX SEQUENCE OF CicIkeCfgPskEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"
The table containing the list of pre shared
authentication keys configured to be used by
IKE protocol catalogued by the DOI and the peer
identity. It is possible to have
multiple peers per DOI."
::= { cicIkeCfgPskAuthConfig 2 }
cicIkeCfgPskEntry OBJECT-TYPE
SYNTAX CicIkeCfgPskEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"
Each entry represents a configured pre-shared
authentication key for a specific peer."
INDEX { cicIkeCfgIdentityDoi, cicIkeCfgPskIndex }
::= { cicIkeCfgPskTable 1 }
CicIkeCfgPskEntry ::= SEQUENCE {
cicIkeCfgPskIndex CicIkeConfigPskIndex,
cicIkeCfgPskKey OCTET STRING,
cicIkeCfgPskRemIdentType CIPsecPhase1PeerIdentityType,
cicIkeCfgPskRemIdentTypeStand InetAddressType,
cicIkeCfgPskRemIdentity OCTET STRING,
cicIkeCfgPskRemIdAddrOrRg1OrSn InetAddress,
cicIkeCfgPskRemIdAddrRange2 InetAddress,
cicIkeCfgPskRemIdSubnetMask InetAddressPrefixLength,
cicIkeCfgPskStatus RowStatus
}
cicIkeCfgPskIndex OBJECT-TYPE
SYNTAX CicIkeConfigPskIndex
-- Rsyntax Gauge(1..65535)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"
An arbitrary value identifying the configured
pre-shared keys for IKE entity in this domain of
interpretation, identified by cicIkeCfgIdentityDoi,
on a managed device. This object could have the
same value as cicIkeCfgPskNextAvailIndex."
::= { cicIkeCfgPskEntry 1 }
cicIkeCfgPskKey OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1..255))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"
The pre-shared authorization key used in
authenticating the peer corresponding to this
conceptual row.
This object cannot be modified while the
corresponding value of cicIkeCfgPskStatus is equal
to 'active'. "
::= { cicIkeCfgPskEntry 2 }
cicIkeCfgPskRemIdentType OBJECT-TYPE
SYNTAX CIPsecPhase1PeerIdentityType
-- Rsyntax INTEGER {
-- idOther(1),
-- idIpv4Addr(2),
-- idFqdn(3),
-- idDn(4),
-- idIpv6Addr(5),
-- idUserFqdn(6),
-- idIpv4AddrSubnet(7),
-- idIpv6AddrSubnet(8),
-- idIpv4AddrRange(9),
-- idIpv6AddrRange(10),
-- idDerAsn1Gn(11),
-- idKeyId(12),
-- idWwn(13)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"
The Phase 1 ID type of the remote peer identity for
which this preshared key is configured.
This object cannot be modified while the
corresponding value of cicIkeCfgPskStatus is equal
to 'active'. "
::= { cicIkeCfgPskEntry 3 }
cicIkeCfgPskRemIdentTypeStand OBJECT-TYPE
SYNTAX InetAddressType
-- Rsyntax INTEGER {
-- ?? enum value of zero may cause problems
-- unknown(0),
-- ipv4(1),
-- ipv6(2),
-- ipv4z(3),
-- ipv6z(4),
-- dns(16)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"If the object 'cicIkeCfgPskRemIdentType' is one
of
idIpv4Addr
idIpv6Addr
idIpv4AddrRange
idIpv6AddrRange
idIpv4AddrSubnet
idIpv6AddrSubnet
then this object contains the type of InetAddress
for the corresponding value(s) of
cicIkeCfgPskRemIdAddrOrRg1OrSn,
cicIkeCfgPskRemIdAddrRange2 and/or
cicIkeCfgPskRemIdSubnetMask.
This object would have a value 'unknown', for other
values of cicIkeCfgPskRemIdentType. "
::= { cicIkeCfgPskEntry 4 }
cicIkeCfgPskRemIdentity OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1..255))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"
The Phase 1 ID identity of the peer for which
this preshared key is configured on the local entity.
This object cannot be modified while the
corresponding value of cicIkeCfgPskStatus is equal to
'active'. "
::= { cicIkeCfgPskEntry 5 }
cicIkeCfgPskRemIdAddrOrRg1OrSn OBJECT-TYPE
SYNTAX InetAddress
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"
If the object cicIkeCfgPskRemIdentType is one
of
idIpv4Addr
idIpv6Addr
idIpv4AddrRange
idIpv6AddrRange
idIpv4AddrSubnet
idIpv6AddrSubnet
then this object contains the first or only
component of the Phase 1 identity. Otherwise, the
value contained in this object will be a zero
length string which should be disregarded."
::= { cicIkeCfgPskEntry 6 }
cicIkeCfgPskRemIdAddrRange2 OBJECT-TYPE
SYNTAX InetAddress
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"
If the object cicIkeCfgPskRemIdentType is one
of
idIpv4AddrRange
idIpv6AddrRange
then this object contains the second component of
the Phase 1 identity. Otherwise, the
value contained in this object will be a zero
length string which should be disregarded."
::= { cicIkeCfgPskEntry 7 }
cicIkeCfgPskRemIdSubnetMask OBJECT-TYPE
SYNTAX InetAddressPrefixLength
-- Rsyntax Gauge
ACCESS read-write
STATUS mandatory
DESCRIPTION
"
If the object 'cicIkeCfgPskRemIdentType' is one of
idIpv4AddrSubnet
idIpv6AddrSubnet
then this object contains the second component of
the Phase 1 identity.
Otherwise, the value contained in this object will
be zero which should be disregarded."
::= { cicIkeCfgPskEntry 8 }
cicIkeCfgPskStatus OBJECT-TYPE
SYNTAX RowStatus
-- Rsyntax INTEGER {
-- active(1),
-- notInService(2),
-- notReady(3),
-- createAndGo(4),
-- createAndWait(5),
-- destroy(6)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The status of this conceptual row. To configure
an pre shared authentication key entry, the NMS must
do a multivarbind set containing cicIkeCfgPskKey,
cicIkeCfgPskRemIdentType,cicIkeCfgPskRemIdentity.
Creation of row can only be done via 'createAndGo'.
To remove a row, set this object value to 'destroy'."
::= { cicIkeCfgPskEntry 9 }
cicIkeCfgPolicyTable OBJECT-TYPE
SYNTAX SEQUENCE OF CicIkeCfgPolicyEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"
The table containing the list of all
ISAKMP policy entries configured by the operator."
::= { cicIkeCfgPolicies 1 }
cicIkeCfgPolicyEntry OBJECT-TYPE
SYNTAX CicIkeCfgPolicyEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"
Each entry contains the attributes associated with
a single ISAKMP Policy entry."
INDEX { cicIkeCfgIdentityDoi, cicIkeCfgPolicyPriority }
::= { cicIkeCfgPolicyTable 1 }
CicIkeCfgPolicyEntry ::= SEQUENCE {
cicIkeCfgPolicyPriority Gauge,
cicIkeCfgPolicyEncr CIPsecEncryptAlgorithm,
cicIkeCfgPolicyHash CIPsecIkeHashAlgorithm,
cicIkeCfgPolicyPRF CIPsecIkePRFAlgorithm,
cicIkeCfgPolicyAuth CIPsecIkeAuthMethod,
cicIkeCfgPolicyDHGroup CIPsecDiffHellmanGrp,
cicIkeCfgPolicyLifetime CIKELifetime,
cicIkeCfgPolicyLifesize CIKELifesize,
cicIkeCfgPolicyStatus RowStatus
}
cicIkeCfgPolicyPriority OBJECT-TYPE
SYNTAX Gauge(1..65534)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"
The priority of this ISAKMP Policy entry. The policy
with lower value would take precedence over
the policy with higher value in the same DOI. "
::= { cicIkeCfgPolicyEntry 1 }
cicIkeCfgPolicyEncr OBJECT-TYPE
SYNTAX CIPsecEncryptAlgorithm
-- Rsyntax INTEGER {
-- none(1),
-- other(2),
-- espDes(3),
-- esp3des(4),
-- espRc5(5),
-- espIdea(6),
-- espCast(7),
-- espTwofish(8),
-- espBlowfish(9),
-- esp3idea(10),
-- espRc4(11),
-- espNull(12),
-- espAes128(13),
-- espAes192(14),
-- espAes256(15),
-- espAesCtr128(16),
-- espAesCtr192(17),
-- espAesCtr256(18)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"
The encryption transform specified by this
ISAKMP policy specification. The Internet Key
Exchange (IKE) tunnels setup using this policy item
would use the specified encryption transform to protect
the ISAKMP PDUs."
DEFVAL { esp3des }
::= { cicIkeCfgPolicyEntry 2 }
cicIkeCfgPolicyHash OBJECT-TYPE
SYNTAX CIPsecIkeHashAlgorithm
-- Rsyntax INTEGER {
-- none(1),
-- other(2),
-- md5(3),
-- sha(4),
-- tiger(5),
-- sha256(6),
-- sha384(7),
-- sha512(8),
-- aesMac(9)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"
The hash transform specified by this
ISAKMP policy specification. The IKE tunnels
setup using this policy item would use the
specified hash transform to protect the
ISAKMP PDUs."
DEFVAL { sha }
::= { cicIkeCfgPolicyEntry 3 }
cicIkeCfgPolicyPRF OBJECT-TYPE
SYNTAX CIPsecIkePRFAlgorithm
-- Rsyntax INTEGER {
-- none(1),
-- other(2),
-- prfHmacMd5(3),
-- prfHmacSha1(4)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"
The Pseudo Random Function algorithm specified by
this ISAKMP policy specification. The value of this
object would only be used for IKEv2."
DEFVAL { prfHmacSha1 }
::= { cicIkeCfgPolicyEntry 4 }
cicIkeCfgPolicyAuth OBJECT-TYPE
SYNTAX CIPsecIkeAuthMethod
-- Rsyntax INTEGER {
-- other(1),
-- preSharedKey(2),
-- rsaSignature(3),
-- rsaEncryption(4),
-- revRsaEncryption(5),
-- dssSignature(6),
-- elGamalEncryption(7),
-- revElGamalEncryption(8),
-- ecsdaSignature(9),
-- gssApiV1(10),
-- gssApiV2(11)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"
The peer authentication method specified by
this ISAKMP policy specification. If this policy
entity is selected for negotiation with a peer,
the local entity would authenticate the peer using
the method specified by this object."
DEFVAL { preSharedKey }
::= { cicIkeCfgPolicyEntry 5 }
cicIkeCfgPolicyDHGroup OBJECT-TYPE
SYNTAX CIPsecDiffHellmanGrp
-- Rsyntax INTEGER {
-- other(1),
-- notDH(2),
-- modp768(3),
-- modp1024(4),
-- ec2nGP155(5),
-- ec2nGP185(6),
-- modp1536(7),
-- ec2nGF163(8),
-- ec2nGF283(9),
-- ec2nGF409(10),
-- ec2nGF571(11),
-- modp2048(12)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"
This object specifies the Oakley group used
for Diffie Hellman exchange in the Main Mode.
If this policy item is selected to negotiate
Main Mode with an IKE peer, the local entity
chooses the group specified by this object to
perform Diffie Hellman exchange with the
peer."
DEFVAL { modp1024 }
::= { cicIkeCfgPolicyEntry 6 }
cicIkeCfgPolicyLifetime OBJECT-TYPE
SYNTAX CIKELifetime
-- Rsyntax Gauge(60..86400)
-- Units
-- seconds
ACCESS read-write
STATUS mandatory
DESCRIPTION
"
This object specifies the lifetime in seconds
of the IKE tunnels generated using this
policy specification."
DEFVAL { 86400 }
::= { cicIkeCfgPolicyEntry 7 }
cicIkeCfgPolicyLifesize OBJECT-TYPE
SYNTAX CIKELifesize
-- Rsyntax Gauge(2560..4294967295)
-- Units
-- kbytes
ACCESS read-write
STATUS mandatory
DESCRIPTION
"
This object specifies the life size in Kbytes
of the IKE tunnels generated using this
policy specification."
DEFVAL { 2560 }
::= { cicIkeCfgPolicyEntry 8 }
cicIkeCfgPolicyStatus OBJECT-TYPE
SYNTAX RowStatus
-- Rsyntax INTEGER {
-- active(1),
-- notInService(2),
-- notReady(3),
-- createAndGo(4),
-- createAndWait(5),