-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathCISCO-IPSEC-FLOW-MONITOR-MIB-V1SMI.my
6004 lines (5500 loc) · 170 KB
/
CISCO-IPSEC-FLOW-MONITOR-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 20-Nov-2007 11:55:09, by
-- SMICng version 2.2.11-beta(PRO)(Solaris), January 20, 2001. Enterprise key cisco.com
CISCO-IPSEC-FLOW-MONITOR-MIB DEFINITIONS ::= BEGIN
-- From file: "CISCO-IPSEC-FLOW-MONITOR-MIB.my"
-- Compile options "4 7 F H N O W 03 06 0B 0G 0N 0T"
IMPORTS
DisplayString, TimeStamp, TimeInterval, TruthValue
FROM SNMPv2-TC-v1
cmgwIndex
FROM CISCO-MEDIA-GATEWAY-MIB
ciscoMgmt
FROM CISCO-SMI
Counter, Gauge
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212
TRAP-TYPE
FROM RFC-1215;
ciscoIpSecFlowMonitorMIB OBJECT IDENTIFIER ::= { ciscoMgmt 171 }
-- MODULE-IDENTITY
-- LastUpdated
-- 200710240000Z
-- OrgName
-- Tivoli Systems and Cisco Systems
-- ContactInfo
-- Tivoli Systems
-- Research Triangle Park, NC
--
-- Cisco Systems
-- 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 monitoring the
-- structures in IPSec-based Virtual Private Networks.
-- The MIB has been designed to be adopted as an IETF
-- standard. Hence Cisco-specific features of IPSec
-- protocol are excluded from this MIB.
--
-- 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
--
-- SA: Security Association
--
-- MM: Main Mode - the process of setting up
-- a Phase 1 SA to secure the exchanges
-- required to setup Phase 2 SAs
--
-- QM: Quick Mode - the process of setting up
-- Phase 2 Security Associations using
-- a Phase 1 SA.
--
--
-- Overview of IPsec MIB
--
-- The MIB contains six major groups of objects which are
-- used to manage the IPSec Protocol. These groups include
-- a Levels Group, a Phase-1 Group, a Phase-2 Group,
-- a History Group, a Failure Group and a TRAP Control Group.
-- The following table illustrates the structure of the
-- IPSec MIB.
--
-- The Phase 1 group models objects pertaining to
-- IKE negotiations and tunnels.
--
-- The Phase 2 group models objects pertaining to
-- IPSec data tunnels.
--
-- The History group is to aid applications that do
-- trending analysis.
--
-- The Failure group is to enable an operator to
-- do troubleshooting and debugging of the VPN Router.
-- Further, counters are supported to aid Intrusion
-- Detection.
--
-- In addition to the five major MIB Groups, there are
-- a number of Notifications. The following table
-- illustrates the name and description of the
-- IPSec TRAPs.
--
-- For a detailed discussion, please refer to the IETF
-- draft draft-ietf-ipsec-flow-monitoring-mib-00.txt.
-- RevDate
-- 200710240000Z
-- RevDescr
-- In the description of cipSecTunHistHcInDecompOctets,
-- cipSecTunHcInOctets has been changed to
-- cipSecTunHistHcInOctets.
--
-- In the description of cipSecTunHistOutUncompOctets,
-- cipSecTunOutOctets has been changed to
-- cipSecTunHistOutOctets.
--
-- In the description of cipSecTunHistHcOutUncompOctets,
-- cipSecTunHcOutOctets has been changed to
-- cipSecTunHistHcOutOctets.
--
-- In the description of cipSecTunHistInDecompOctets,
-- cipSecTunInOctets has been changed to
-- cipSecTunHistInOctets.
-- RevDate
-- 200410120000Z
-- RevDescr
-- Added two table for media gateway stats
-- information:
-- cikePhase1GWStatsTable (phase-1 IKE)
-- cipSecPhase2GWStatsTable (phase-2 IPsec)
-- RevDate
-- 200010131800Z
-- RevDescr
-- Changed cipSecSpiValue to Unsigned32.
-- Changed Protocol ranges to
-- start at 0 instead of 1.
-- Removed comment(s) incorrectly indicating
-- this MIB was CiscoExperiment.
-- RevDate
-- 200008171259Z
-- RevDescr
-- Initial version of this MIB module.
cipSecMIBObjects OBJECT IDENTIFIER ::= { ciscoIpSecFlowMonitorMIB 1 }
cipSecLevels OBJECT IDENTIFIER ::= { cipSecMIBObjects 1 }
cipSecPhaseOne OBJECT IDENTIFIER ::= { cipSecMIBObjects 2 }
cipSecPhaseTwo OBJECT IDENTIFIER ::= { cipSecMIBObjects 3 }
cipSecHistory OBJECT IDENTIFIER ::= { cipSecMIBObjects 4 }
cipSecFailures OBJECT IDENTIFIER ::= { cipSecMIBObjects 5 }
cipSecTrapCntl OBJECT IDENTIFIER ::= { cipSecMIBObjects 6 }
cikeGlobalStats OBJECT IDENTIFIER ::= { cipSecPhaseOne 1 }
cipSecGlobalStats OBJECT IDENTIFIER ::= { cipSecPhaseTwo 1 }
cipSecHistGlobal OBJECT IDENTIFIER ::= { cipSecHistory 1 }
cipSecHistPhaseOne OBJECT IDENTIFIER ::= { cipSecHistory 2 }
cipSecHistPhaseTwo OBJECT IDENTIFIER ::= { cipSecHistory 3 }
cipSecHistGlobalCntl OBJECT IDENTIFIER ::= { cipSecHistGlobal 1 }
cipSecFailGlobal OBJECT IDENTIFIER ::= { cipSecFailures 1 }
cipSecFailPhaseOne OBJECT IDENTIFIER ::= { cipSecFailures 2 }
cipSecFailPhaseTwo OBJECT IDENTIFIER ::= { cipSecFailures 3 }
cipSecFailGlobalCntl OBJECT IDENTIFIER ::= { cipSecFailGlobal 1 }
cipSecMIBNotificationPrefix OBJECT IDENTIFIER ::= { ciscoIpSecFlowMonitorMIB 2 }
cipSecMIBNotifications OBJECT IDENTIFIER ::= { cipSecMIBNotificationPrefix 0 }
cipSecMIBConformance OBJECT IDENTIFIER ::= { ciscoIpSecFlowMonitorMIB 3 }
cipSecMIBGroups OBJECT IDENTIFIER ::= { cipSecMIBConformance 1 }
cipSecMIBCompliances OBJECT IDENTIFIER ::= { cipSecMIBConformance 2 }
IPSIpAddress ::= OCTET STRING(SIZE(4|16))
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- An IP V4 or V6 Address.
IkePeerType ::= INTEGER {
ipAddrPeer(1),
namePeer(2)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- The type of IPsec Phase-1 IKE peer identity.
-- The IKE peer may be identified by:
-- 1. an IP address, or
-- 2. a host name.
IkeNegoMode ::= INTEGER {
main(1),
aggressive(2)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- The IPsec Phase-1 IKE negotiation mode.
IkeHashAlgo ::= INTEGER {
none(1),
md5(2),
sha(3)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- The hash algorithm used in IPsec Phase-1
-- IKE negotiations.
IkeAuthMethod ::= INTEGER {
none(1),
preSharedKey(2),
rsaSig(3),
rsaEncrypt(4),
revPublicKey(5)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- The authentication method used in IPsec Phase-1 IKE
-- negotiations.
DiffHellmanGrp ::= INTEGER {
none(1),
dhGroup1(2),
dhGroup2(3)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- The Diffie Hellman Group used in negotiations.
KeyType ::= INTEGER {
ike(1),
manual(2)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- The type of key used by an IPsec Phase-2 Tunnel.
EncapMode ::= INTEGER {
tunnel(1),
transport(2)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- The encapsulation mode used by an IPsec Phase-2
-- Tunnel.
EncryptAlgo ::= INTEGER {
none(1),
des(2),
des3(3)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- The encryption algorithm used in negotiations.
AuthAlgo ::= INTEGER {
none(1),
hmacMd5(2),
hmacSha(3)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- The authentication algorithm used by a
-- security association of an IPsec Phase-2 Tunnel.
CompAlgo ::= INTEGER {
none(1),
ldf(2)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- The compression algorithm used by a
-- security association of an IPsec Phase-2 Tunnel.
EndPtType ::= INTEGER {
singleIpAddr(1),
ipAddrRange(2),
ipSubnet(3)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- The type of identity use to specify an IPsec End Point.
TunnelStatus ::= INTEGER {
active(1),
destroy(2)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- The status of a Tunnel. Objects of this type may
-- be used to bring the tunnel down by setting
-- value of this object to destroy(2). Objects of this
-- type cannot be used to create a Tunnel.
TrapStatus ::= INTEGER {
enabled(1),
disabled(2)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- The administrative status for sending a TRAP.
cipSecMibLevel OBJECT-TYPE
SYNTAX INTEGER(1..4096)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The level of the IPsec MIB."
::= { cipSecLevels 1 }
cikeGlobalActiveTunnels OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of currently active IPsec
Phase-1 IKE Tunnels."
::= { cikeGlobalStats 1 }
cikeGlobalPreviousTunnels OBJECT-TYPE
SYNTAX Counter
-- Units
-- SAs
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of previously active
IPsec Phase-1 IKE Tunnels."
::= { cikeGlobalStats 2 }
cikeGlobalInOctets OBJECT-TYPE
SYNTAX Counter
-- Units
-- Octets
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of octets received by all currently
and previously active IPsec Phase-1 IKE Tunnels."
::= { cikeGlobalStats 3 }
cikeGlobalInPkts OBJECT-TYPE
SYNTAX Counter
-- Units
-- Packets
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of packets received by all
currently and previously active IPsec
Phase-1 IKE Tunnels."
::= { cikeGlobalStats 4 }
cikeGlobalInDropPkts OBJECT-TYPE
SYNTAX Counter
-- Units
-- Packets
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of packets which were
dropped during receive processing by all
currently and previously
active IPsec Phase-1 IKE Tunnels."
::= { cikeGlobalStats 5 }
cikeGlobalInNotifys OBJECT-TYPE
SYNTAX Counter
-- Units
-- Notification Payloads
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of notifys received by
all currently and previously active IPsec
Phase-1 IKE Tunnels."
::= { cikeGlobalStats 6 }
cikeGlobalInP2Exchgs OBJECT-TYPE
SYNTAX Counter
-- Units
-- SA Payloads
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of IPsec Phase-2 exchanges
received by all currently and previously
active IPsec Phase-1 IKE Tunnels."
::= { cikeGlobalStats 7 }
cikeGlobalInP2ExchgInvalids OBJECT-TYPE
SYNTAX Counter
-- Units
-- SA Payloads
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of IPsec Phase-2 exchanges
which were received and found to be invalid
by all currently and previously active IPsec
Phase-1 IKE Tunnels."
::= { cikeGlobalStats 8 }
cikeGlobalInP2ExchgRejects OBJECT-TYPE
SYNTAX Counter
-- Units
-- SA Payloads
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of IPsec Phase-2 exchanges
which were received and rejected by all
currently and previously active IPsec Phase-1
IKE Tunnels."
::= { cikeGlobalStats 9 }
cikeGlobalInP2SaDelRequests OBJECT-TYPE
SYNTAX Counter
-- Units
-- Notification Payloads
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of IPsec Phase-2 security
association delete requests received by all
currently and previously
active and IPsec Phase-1 IKE Tunnels."
::= { cikeGlobalStats 10 }
cikeGlobalOutOctets OBJECT-TYPE
SYNTAX Counter
-- Units
-- Octets
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of octets sent by all currently
and previously active and IPsec Phase-1
IKE Tunnels."
::= { cikeGlobalStats 11 }
cikeGlobalOutPkts OBJECT-TYPE
SYNTAX Counter
-- Units
-- Packets
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of packets sent by all currently
and previously active and IPsec Phase-1
Tunnels."
::= { cikeGlobalStats 12 }
cikeGlobalOutDropPkts OBJECT-TYPE
SYNTAX Counter
-- Units
-- Packets
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of packets which were dropped
during send processing by all currently
and previously
active IPsec Phase-1 IKE Tunnels."
::= { cikeGlobalStats 13 }
cikeGlobalOutNotifys OBJECT-TYPE
SYNTAX Counter
-- Units
-- Notification Payloads
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of notifys sent by all currently
and previously active IPsec Phase-1 IKE Tunnels."
::= { cikeGlobalStats 14 }
cikeGlobalOutP2Exchgs OBJECT-TYPE
SYNTAX Counter
-- Units
-- SA Payloads
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of IPsec Phase-2 exchanges
which were sent by all currently and previously
active IPsec Phase-1 IKE Tunnels."
::= { cikeGlobalStats 15 }
cikeGlobalOutP2ExchgInvalids OBJECT-TYPE
SYNTAX Counter
-- Units
-- SA Payloads
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of IPsec Phase-2 exchanges
which were sent and found to be invalid by
all currently and previously active IPsec Phase-1
Tunnels."
::= { cikeGlobalStats 16 }
cikeGlobalOutP2ExchgRejects OBJECT-TYPE
SYNTAX Counter
-- Units
-- SA Payloads
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of IPsec Phase-2 exchanges
which were sent and rejected by all currently and
previously active IPsec Phase-1 IKE Tunnels."
::= { cikeGlobalStats 17 }
cikeGlobalOutP2SaDelRequests OBJECT-TYPE
SYNTAX Counter
-- Units
-- Notification Payloads
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of IPsec Phase-2 SA
delete requests sent by all currently and
previously active IPsec Phase-1 IKE Tunnels."
::= { cikeGlobalStats 18 }
cikeGlobalInitTunnels OBJECT-TYPE
SYNTAX Counter
-- Units
-- SAs
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of IPsec Phase-1 IKE
Tunnels which were locally initiated."
::= { cikeGlobalStats 19 }
cikeGlobalInitTunnelFails OBJECT-TYPE
SYNTAX Counter
-- Units
-- SAs
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of IPsec Phase-1 IKE Tunnels
which were locally initiated and failed to activate."
::= { cikeGlobalStats 20 }
cikeGlobalRespTunnelFails OBJECT-TYPE
SYNTAX Counter
-- Units
-- SAs
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of IPsec Phase-1 IKE Tunnels
which were remotely initiated and failed to activate."
::= { cikeGlobalStats 21 }
cikeGlobalSysCapFails OBJECT-TYPE
SYNTAX Counter
-- Units
-- Failures
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of system capacity failures
which occurred during processing of all current
and previously active IPsec Phase-1 IKE Tunnels."
::= { cikeGlobalStats 22 }
cikeGlobalAuthFails OBJECT-TYPE
SYNTAX Counter
-- Units
-- Failures
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of authentications which ended
in failure by all current and previous IPsec Phase-1
IKE Tunnels."
::= { cikeGlobalStats 23 }
cikeGlobalDecryptFails OBJECT-TYPE
SYNTAX Counter
-- Units
-- Failures
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of decryptions which ended
in failure by all current and previous IPsec Phase-1
IKE Tunnels."
::= { cikeGlobalStats 24 }
cikeGlobalHashValidFails OBJECT-TYPE
SYNTAX Counter
-- Units
-- Failures
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of hash validations which ended
in failure by all current and previous IPsec Phase-1
IKE Tunnels."
::= { cikeGlobalStats 25 }
cikeGlobalNoSaFails OBJECT-TYPE
SYNTAX Counter
-- Units
-- Failures
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of non-existent Security Association
in failures which occurred during processing of
all current and previous IPsec Phase-1 IKE Tunnels."
::= { cikeGlobalStats 26 }
cikePeerTable OBJECT-TYPE
SYNTAX SEQUENCE OF CikePeerEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The IPsec Phase-1 Internet Key Exchange Peer Table.
There is one entry in this table for each IPsec
Phase-1 IKE peer association which is currently
associated with an active IPsec Phase-1 Tunnel.
The IPsec Phase-1 IKE Tunnel associated with this
IPsec Phase-1 IKE peer association may or may not
be currently active."
::= { cipSecPhaseOne 2 }
cikePeerEntry OBJECT-TYPE
SYNTAX CikePeerEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry contains the attributes associated
with an IPsec Phase-1 IKE peer association."
INDEX { cikePeerLocalType, cikePeerLocalValue, cikePeerRemoteType, cikePeerRemoteValue, cikePeerIntIndex }
::= { cikePeerTable 1 }
CikePeerEntry ::= SEQUENCE {
cikePeerLocalType IkePeerType,
cikePeerLocalValue DisplayString,
cikePeerRemoteType IkePeerType,
cikePeerRemoteValue DisplayString,
cikePeerIntIndex INTEGER,
cikePeerLocalAddr IPSIpAddress,
cikePeerRemoteAddr IPSIpAddress,
cikePeerActiveTime TimeInterval,
cikePeerActiveTunnelIndex INTEGER
}
cikePeerLocalType OBJECT-TYPE
SYNTAX IkePeerType
-- Rsyntax INTEGER {
-- ipAddrPeer(1),
-- namePeer(2)
-- }
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The type of local peer identity. The local peer
may be identified by:
1. an IP address, or
2. a host name."
::= { cikePeerEntry 1 }
cikePeerLocalValue OBJECT-TYPE
SYNTAX DisplayString
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The value of the local peer identity.
If the local peer type is an IP Address, then this
is the IP Address used to identify the local peer.
If the local peer type is a host name, then this is
the host name used to identify the local peer."
::= { cikePeerEntry 2 }
cikePeerRemoteType OBJECT-TYPE
SYNTAX IkePeerType
-- Rsyntax INTEGER {
-- ipAddrPeer(1),
-- namePeer(2)
-- }
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The type of remote peer identity. The remote peer
may be identified by:
1. an IP address, or
2. a host name."
::= { cikePeerEntry 3 }
cikePeerRemoteValue OBJECT-TYPE
SYNTAX DisplayString
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The value of the remote peer identity.
If the remote peer type is an IP Address, then this
is the IP Address used to identify the remote peer.
If the remote peer type is a host name, then this is
the host name used to identify the remote peer."
::= { cikePeerEntry 4 }
cikePeerIntIndex OBJECT-TYPE
SYNTAX INTEGER(1..2147483647)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The internal index of the local-remote
peer association. This internal index is used
to uniquely identify multiple associations between
the local and remote peer."
::= { cikePeerEntry 5 }
cikePeerLocalAddr OBJECT-TYPE
SYNTAX IPSIpAddress
-- Rsyntax OCTET STRING(SIZE(4|16))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The IP address of the local peer."
::= { cikePeerEntry 6 }
cikePeerRemoteAddr OBJECT-TYPE
SYNTAX IPSIpAddress
-- Rsyntax OCTET STRING(SIZE(4|16))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The IP address of the remote peer."
::= { cikePeerEntry 7 }
cikePeerActiveTime OBJECT-TYPE
SYNTAX TimeInterval
-- Rsyntax INTEGER(0..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The length of time that the peer association has
existed in hundredths of a second."
::= { cikePeerEntry 8 }
cikePeerActiveTunnelIndex OBJECT-TYPE
SYNTAX INTEGER(1..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The index of the active IPsec Phase-1 IKE Tunnel
(cikeTunIndex in the cikeTunnelTable) for this peer
association. If an IPsec Phase-1 IKE Tunnel is
not currently active, then the value of this
object will be zero."
::= { cikePeerEntry 9 }
cikeTunnelTable OBJECT-TYPE
SYNTAX SEQUENCE OF CikeTunnelEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The IPsec Phase-1 Internet Key Exchange Tunnel Table.
There is one entry in this table for each active IPsec
Phase-1 IKE Tunnel."
::= { cipSecPhaseOne 3 }
cikeTunnelEntry OBJECT-TYPE
SYNTAX CikeTunnelEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry contains the attributes associated with
an active IPsec Phase-1 IKE Tunnel."
INDEX { cikeTunIndex }
::= { cikeTunnelTable 1 }
CikeTunnelEntry ::= SEQUENCE {
cikeTunIndex INTEGER,
cikeTunLocalType IkePeerType,
cikeTunLocalValue DisplayString,
cikeTunLocalAddr IPSIpAddress,
cikeTunLocalName DisplayString,
cikeTunRemoteType IkePeerType,
cikeTunRemoteValue DisplayString,
cikeTunRemoteAddr IPSIpAddress,
cikeTunRemoteName DisplayString,
cikeTunNegoMode IkeNegoMode,
cikeTunDiffHellmanGrp DiffHellmanGrp,
cikeTunEncryptAlgo EncryptAlgo,
cikeTunHashAlgo IkeHashAlgo,
cikeTunAuthMethod IkeAuthMethod,
cikeTunLifeTime INTEGER,
cikeTunActiveTime TimeInterval,
cikeTunSaRefreshThreshold INTEGER,
cikeTunTotalRefreshes Counter,
cikeTunInOctets Counter,
cikeTunInPkts Counter,
cikeTunInDropPkts Counter,
cikeTunInNotifys Counter,
cikeTunInP2Exchgs Counter,
cikeTunInP2ExchgInvalids Counter,
cikeTunInP2ExchgRejects Counter,
cikeTunInP2SaDelRequests Counter,
cikeTunOutOctets Counter,
cikeTunOutPkts Counter,
cikeTunOutDropPkts Counter,
cikeTunOutNotifys Counter,
cikeTunOutP2Exchgs Counter,
cikeTunOutP2ExchgInvalids Counter,
cikeTunOutP2ExchgRejects Counter,
cikeTunOutP2SaDelRequests Counter,
cikeTunStatus TunnelStatus
}
cikeTunIndex OBJECT-TYPE
SYNTAX INTEGER(1..2147483647)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The index of the IPsec Phase-1 IKE Tunnel Table.
The value of the index is a number which begins
at one and is incremented with each tunnel that
is created. The value of this object will
wrap at 2,147,483,647."
::= { cikeTunnelEntry 1 }
cikeTunLocalType OBJECT-TYPE
SYNTAX IkePeerType
-- Rsyntax INTEGER {
-- ipAddrPeer(1),
-- namePeer(2)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The type of local peer identity. The local
peer may be identified by:
1. an IP address, or
2. a host name."
::= { cikeTunnelEntry 2 }
cikeTunLocalValue OBJECT-TYPE
SYNTAX DisplayString
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The value of the local peer identity.
If the local peer type is an IP Address, then this
is the IP Address used to identify the local peer.
If the local peer type is a host name, then this is
the host name used to identify the local peer."
::= { cikeTunnelEntry 3 }
cikeTunLocalAddr OBJECT-TYPE
SYNTAX IPSIpAddress
-- Rsyntax OCTET STRING(SIZE(4|16))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The IP address of the local endpoint for the IPsec
Phase-1 IKE Tunnel."
::= { cikeTunnelEntry 4 }
cikeTunLocalName OBJECT-TYPE
SYNTAX DisplayString
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The DNS name of the local IP address for
the IPsec Phase-1 IKE Tunnel. If the DNS
name associated with the local tunnel endpoint
is not known, then the value of this
object will be a NULL string."
::= { cikeTunnelEntry 5 }
cikeTunRemoteType OBJECT-TYPE
SYNTAX IkePeerType
-- Rsyntax INTEGER {
-- ipAddrPeer(1),
-- namePeer(2)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The type of remote peer identity.
The remote peer may be identified by:
1. an IP address, or
2. a host name."
::= { cikeTunnelEntry 6 }
cikeTunRemoteValue OBJECT-TYPE
SYNTAX DisplayString
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The value of the remote peer identity.
If the remote peer type is an IP Address, then this
is the IP Address used to identify the remote peer.
If the remote peer type is a host name, then
this is the host name used to identify the
remote peer."
::= { cikeTunnelEntry 7 }
cikeTunRemoteAddr OBJECT-TYPE
SYNTAX IPSIpAddress
-- Rsyntax OCTET STRING(SIZE(4|16))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The IP address of the remote endpoint for the IPsec
Phase-1 IKE Tunnel."
::= { cikeTunnelEntry 8 }
cikeTunRemoteName OBJECT-TYPE
SYNTAX DisplayString
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The DNS name of the remote IP address of IPsec Phase-1
IKE Tunnel. If the DNS name associated with the remote
tunnel endpoint is not known, then the value of this
object will be a NULL string."
::= { cikeTunnelEntry 9 }
cikeTunNegoMode OBJECT-TYPE
SYNTAX IkeNegoMode
-- Rsyntax INTEGER {
-- main(1),
-- aggressive(2)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The negotiation mode of the IPsec Phase-1 IKE Tunnel."
::= { cikeTunnelEntry 10 }
cikeTunDiffHellmanGrp OBJECT-TYPE
SYNTAX DiffHellmanGrp
-- Rsyntax INTEGER {
-- none(1),
-- dhGroup1(2),
-- dhGroup2(3)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Diffie Hellman Group used in IPsec Phase-1 IKE
negotiations."
::= { cikeTunnelEntry 11 }
cikeTunEncryptAlgo OBJECT-TYPE
SYNTAX EncryptAlgo
-- Rsyntax INTEGER {
-- none(1),
-- des(2),
-- des3(3)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The encryption algorithm used in IPsec Phase-1 IKE
negotiations."
::= { cikeTunnelEntry 12 }
cikeTunHashAlgo OBJECT-TYPE
SYNTAX IkeHashAlgo
-- Rsyntax INTEGER {
-- none(1),