-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathPICO-IPSEC-FLOW-MONITOR-MIB.txt
2437 lines (2194 loc) · 75.1 KB
/
PICO-IPSEC-FLOW-MONITOR-MIB.txt
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
-- PICO IPsec Flow Monitor Product Vendor MIB
-- From file: "PICO-IPSEC-FLOW-MONITOR-MIB"
-- Copyright (c) 2001-2013 NEC Infrontia All Rights Reserved.
-- Update History
--
-- 2002/12/20 : R0.1 draft
-- 2003/03/11 : R1.0 initial release
-- 2008/10/20 : R1.1 change EncryptAlgo des3->3des
-- 2010/11/01 : R1.2 add sha2 to IkeHashAlgo,AuthAlgo
-- 2011/03/23 : R1.3 add null to EncryptAlgo
-- 2013/12/12 : R1.4 change EncryptAlgo 3des->des3
PICO-IPSEC-FLOW-MONITOR-MIB DEFINITIONS ::= BEGIN
IMPORTS
picoIpSecFlowMonitorMIB
FROM PICO-SMI
OBJECT-TYPE
FROM RFC-1212
TRAP-TYPE
FROM RFC-1215
Counter, Gauge, enterprises
FROM RFC1155-SMI
DisplayString, TimeInterval, TimeStamp, TruthValue
FROM SNMPv2-TC;
--
-- Local Textual Conventions
--
IPSIpAddress ::= OCTET STRING (SIZE(4 | 16))
IkePeerType ::= INTEGER {
idIpv4Addr(1),
idFqdn(2),
idDn(3),
idIpv6Addr(4)
}
IkeNegoMode ::= INTEGER {
main(1),
aggressive(2)
}
IkeHashAlgo ::= INTEGER {
none(1),
md5(2),
sha(3),
sha2-256(4),
sha2-384(5),
sha2-512(6)
}
IkeAuthMethod ::= INTEGER {
none(1),
preSharedKey(2),
rsaSig(3),
rsaEncrypt(4),
revPublicKey(5)
}
DiffHellmanGrp ::= INTEGER {
none(1),
modp768(2),
modp1024(3),
modp1536(4),
modp2048(5)
}
KeyType ::= INTEGER {
ike(1),
manual(2)
}
EncapMode ::= INTEGER {
tunnel(1),
transport(2)
}
EncryptAlgo ::= INTEGER {
none(1),
des(2),
des3(3),
aes(4),
null(9)
}
AuthAlgo ::= INTEGER {
none(1),
hmacMd5(2),
hmacSha(3),
hmacSha2-256(4),
hmacSha2-384(5),
hmacSha2-512(6)
}
EndPtType ::= INTEGER {
idIpv4Addr(1),
idFqdn(2),
idUserFqdn(3),
idIpv4AddrSubnet(4),
idIpv6Addr(5),
idIpv6AddrSubnet(6),
idIpv4AddrRange(7),
idIpv6AddrRange(8),
idDerAsn1Dn(9),
idDerAsn1Gn(10),
idKeyId(11)
}
TunnelStatus ::= INTEGER {
active(1),
destroy(2)
}
TrapStatus ::= INTEGER {
nabled(1),
disabled(2)
}
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- IPsec MIB Object Groups
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
pipSecMIBObjects OBJECT IDENTIFIER ::= { picoIpSecFlowMonitorMIB 1 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- IPsec Levels Group
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
pipSecLevels OBJECT IDENTIFIER ::= { pipSecMIBObjects 1 }
pipSecMibLevel OBJECT-TYPE
SYNTAX INTEGER (1..4096)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The version of the IPsec MIB."
::= { pipSecLevels 1 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- The IPsec Phase-1 Internet Key Exchange (IKE) Group
--
-- This group consists of:
-- 1) IPsec Phase-1 Global Statistics
-- 2) IPsec Phase-1 Peer Table
-- 3) IPsec Phase-1 Tunnel Table
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
pipSecPhaseOne OBJECT IDENTIFIER ::= { pipSecMIBObjects 2 }
--
-- The IPsec Phase-1 Global Statistics
--
pikeGlobalStats OBJECT IDENTIFIER ::= { pipSecPhaseOne 1 }
pikeGlobalActiveTunnels OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of currently active IPsec
Phase-1 IKE Tunnels. This is equal to the
number of ISAKMP SAs currently active."
::= { pikeGlobalStats 1 }
pikeGlobalInNotifys OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of notifys received by
all currently and previously active IPsec
Phase-1 IKE Tunnels."
::= { pikeGlobalStats 6 }
pikeGlobalInP2Exchgs OBJECT-TYPE
SYNTAX Counter
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."
::= { pikeGlobalStats 7 }
pikeGlobalInP2ExchgInvalids OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of IPsec Phase-2 exchanges
which were received and found to be contain
references to unrecognized security parameters.
This value is accumulated across all currently
and previously active IPsec ISAKMP SAs."
::= { pikeGlobalStats 8 }
pikeGlobalInP2ExchgRejects OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of IPsec Phase-2 exchanges
which were received and validated but were
rejected by the local policy. This value is
accumulated across all currently and previously
active IPsec ISAKMP SAs."
::= { pikeGlobalStats 9 }
pikeGlobalInP2SaDelRequests OBJECT-TYPE
SYNTAX Counter
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."
::= { pikeGlobalStats 10 }
pikeGlobalOutNotifys OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of notifys sent by all currently
and previously active IPsec Phase-1 IKE Tunnels."
::= { pikeGlobalStats 14 }
pikeGlobalOutP2Exchgs OBJECT-TYPE
SYNTAX Counter
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."
::= { pikeGlobalStats 15 }
pikeGlobalOutP2ExchgInvalids OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of IPsec Phase-2 exchanges
which were sent and were flagged by the peer to
contain references to unrecognized security
parameters. This value is accumulated across all
currently and previously active IPsec ISAKMP SAs."
::= { pikeGlobalStats 16 }
pikeGlobalOutP2ExchgRejects OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of IPsec Phase-2 exchanges
which were sent, validated by the peer but were
rejected by the peer's policy. This value is
accumulated across all currently and previously
active IPsec ISAKMP SAs."
::= { pikeGlobalStats 17 }
pikeGlobalOutP2SaDelRequests OBJECT-TYPE
SYNTAX Counter
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."
::= { pikeGlobalStats 18 }
pikeGlobalInitTunnels OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of IPsec Phase-1 IKE
Tunnels which were locally initiated."
::= { pikeGlobalStats 19 }
pikeGlobalInitTunnelFails OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of IPsec Phase-1 IKE Tunnels
which were locally initiated and failed to activate."
::= { pikeGlobalStats 20 }
pikeGlobalRespTunnelFails OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of IPsec Phase-1 IKE Tunnels
which were remotely initiated and failed to activate."
::= { pikeGlobalStats 21 }
pikeGlobalAuthFails OBJECT-TYPE
SYNTAX Counter
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."
::= { pikeGlobalStats 23 }
pikeGlobalDecryptFails OBJECT-TYPE
SYNTAX Counter
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."
::= { pikeGlobalStats 24 }
pikeGlobalHashValidFails OBJECT-TYPE
SYNTAX Counter
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."
::= { pikeGlobalStats 25 }
pikeGlobalRespTunnels OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of IPsec Phase-1 IKE
Tunnels which were remotely initiated."
::= { pikeGlobalStats 27 }
pikeGlobalInP1SaDelRequests OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of ISAKMP security association
delete requests received by all currently and
previously active and ISAKMP security associations."
::= { pikeGlobalStats 30 }
pikeGlobalOutP1SaDelRequests OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of ISAKMP security association
delete requests sent by all currently and
previously active and ISAKMP security associations."
::= { pikeGlobalStats 31 }
--
-- The IPsec Phase-1 Internet Key Exchange Peer Table
--
pikePeerTable OBJECT-TYPE
SYNTAX SEQUENCE OF PikePeerEntry
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.
A peer has an entry in this stable, if and only if
thjere is at least one Phase-1 or Phase-2 tunnel
terminating on the managed entity from the peer.
When all Phase-1 and Phase-2 tunnels to a peer have
expired, the entry for the peer is deleted off this
table."
::= { pipSecPhaseOne 2 }
pikePeerEntry OBJECT-TYPE
SYNTAX PikePeerEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry contains the attributes associated
with an IPsec Phase-1 IKE peer association."
INDEX { pikePeerLocalType, pikePeerLocalValue,
pikePeerRemoteType, pikePeerRemoteValue,
pikePeerIntIndex }
::= { pikePeerTable 1 }
PikePeerEntry ::= SEQUENCE {
pikePeerLocalType IkePeerType,
pikePeerLocalValue DisplayString,
pikePeerRemoteType IkePeerType,
pikePeerRemoteValue DisplayString,
pikePeerIntIndex INTEGER,
pikePeerLocalAddr IPSIpAddress,
pikePeerRemoteAddr IPSIpAddress,
pikePeerActiveTime TimeInterval,
pikePeerActiveTunnelIndex INTEGER
}
pikePeerLocalType OBJECT-TYPE
SYNTAX IkePeerType
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. or a fully qualified domain name.
3. or a distinguished name."
::= { pikePeerEntry 1 }
pikePeerLocalValue OBJECT-TYPE
SYNTAX DisplayString
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 id_fqdn, then this is
the FQDN of the local peer.
If the local peer type is id_dn, then this is
the DN string of the local peer."
::= { pikePeerEntry 2 }
pikePeerRemoteType OBJECT-TYPE
SYNTAX IkePeerType
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. or a fully qualified domain name.
3. or a distinguished name."
::= { pikePeerEntry 3 }
pikePeerRemoteValue OBJECT-TYPE
SYNTAX DisplayString
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 id_fqdn, then this is
the FQDN of the remote peer.
If the remote peer type is a id_dn, then this is
the DN string of the remote peer."
::= { pikePeerEntry 4 }
pikePeerIntIndex 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."
::= { pikePeerEntry 5 }
pikePeerLocalAddr OBJECT-TYPE
SYNTAX IPSIpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The IP address of the local peer."
::= { pikePeerEntry 6 }
pikePeerRemoteAddr OBJECT-TYPE
SYNTAX IPSIpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The IP address of the remote peer."
::= { pikePeerEntry 7 }
pikePeerActiveTime OBJECT-TYPE
SYNTAX TimeInterval
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The length of time that the peer association has
existed in hundredths of a second."
::= { pikePeerEntry 8 }
pikePeerActiveTunnelIndex OBJECT-TYPE
SYNTAX INTEGER (1..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The index of the active IPsec Phase-1 IKE Tunnel
(pikeTunIndex in the pikeTunnelTable) for this peer
association. If an IPsec Phase-1 IKE Tunnel is
not currently active, then the value of this
object will be zero."
::= { pikePeerEntry 9 }
--
-- The IPsec Phase-1 Internet Key Exchange Tunnel Table
--
pikeTunnelTable OBJECT-TYPE
SYNTAX SEQUENCE OF PikeTunnelEntry
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."
::= { pipSecPhaseOne 3 }
pikeTunnelEntry OBJECT-TYPE
SYNTAX PikeTunnelEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry contains the attributes associated with
an active IPsec Phase-1 IKE Tunnel."
INDEX { pikeTunIndex }
::= { pikeTunnelTable 1 }
PikeTunnelEntry ::= SEQUENCE {
pikeTunIndex INTEGER,
pikeTunLocalType IkePeerType,
pikeTunLocalValue DisplayString,
pikeTunLocalAddr IPSIpAddress,
pikeTunRemoteType IkePeerType,
pikeTunRemoteValue DisplayString,
pikeTunRemoteAddr IPSIpAddress,
pikeTunNegoMode IkeNegoMode,
pikeTunDiffHellmanGrp DiffHellmanGrp,
pikeTunEncryptAlgo EncryptAlgo,
pikeTunHashAlgo IkeHashAlgo,
pikeTunAuthMethod IkeAuthMethod,
pikeTunLifeTime INTEGER,
pikeTunActiveTime TimeInterval,
pikeTunSaRefreshThreshold INTEGER,
pikeTunInNotifys Counter,
pikeTunInP2Exchgs Counter,
pikeTunInP2ExchgInvalids Counter,
pikeTunInP2ExchgRejects Counter,
pikeTunInP2SaDelRequests Counter,
pikeTunOutNotifys Counter,
pikeTunOutP2Exchgs Counter,
pikeTunOutP2ExchgInvalids Counter,
pikeTunOutP2ExchgRejects Counter,
pikeTunOutP2SaDelRequests Counter,
pikeTunStatus TunnelStatus
}
pikeTunIndex 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."
::= { pikeTunnelEntry 1 }
pikeTunLocalType OBJECT-TYPE
SYNTAX IkePeerType
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. or a fully qualified domain name string.
3. or a distinguished name string."
::= { pikeTunnelEntry 2 }
pikeTunLocalValue OBJECT-TYPE
SYNTAX DisplayString
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 id_fqdn, then this is
the FQDN of the remote peer.
If the local peer type is a id_dn, then this is
the distinguished name string of the local peer."
::= { pikeTunnelEntry 3 }
pikeTunLocalAddr OBJECT-TYPE
SYNTAX IPSIpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The IP address of the local endpoint for the IPsec
Phase-1 IKE Tunnel."
::= { pikeTunnelEntry 4 }
pikeTunRemoteType OBJECT-TYPE
SYNTAX IkePeerType
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. or a fully qualified domain name string.
3. or a distinguished name string."
::= { pikeTunnelEntry 6 }
pikeTunRemoteValue OBJECT-TYPE
SYNTAX DisplayString
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 id_fqdn, then this is
the FQDN of the remote peer.
If the remote peer type is a id_dn, then this is
the distinguished named string of the remote peer."
::= { pikeTunnelEntry 7 }
pikeTunRemoteAddr OBJECT-TYPE
SYNTAX IPSIpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The IP address of the remote endpoint for the IPsec
Phase-1 IKE Tunnel."
::= { pikeTunnelEntry 8 }
pikeTunNegoMode OBJECT-TYPE
SYNTAX IkeNegoMode
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The negotiation mode of the IPsec Phase-1 IKE Tunnel."
::= { pikeTunnelEntry 10 }
pikeTunDiffHellmanGrp OBJECT-TYPE
SYNTAX DiffHellmanGrp
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Diffie Hellman Group used in IPsec Phase-1 IKE
negotiations."
::= { pikeTunnelEntry 11 }
pikeTunEncryptAlgo OBJECT-TYPE
SYNTAX EncryptAlgo
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The encryption algorithm used in IPsec Phase-1 IKE
negotiations."
::= { pikeTunnelEntry 12 }
pikeTunHashAlgo OBJECT-TYPE
SYNTAX IkeHashAlgo
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The hash algorithm used in IPsec Phase-1 IKE
negotiations."
::= { pikeTunnelEntry 13 }
pikeTunAuthMethod OBJECT-TYPE
SYNTAX IkeAuthMethod
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The authentication method used in IPsec Phase-1 IKE
negotiations."
::= { pikeTunnelEntry 14 }
pikeTunLifeTime OBJECT-TYPE
SYNTAX INTEGER (1..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The negotiated LifeTime of the IPsec Phase-1 IKE Tunnel
in seconds."
::= { pikeTunnelEntry 15 }
pikeTunActiveTime OBJECT-TYPE
SYNTAX TimeInterval
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The length of time the IPsec Phase-1 IKE tunnel has been
active in hundredths of seconds."
::= { pikeTunnelEntry 16 }
pikeTunSaRefreshThreshold OBJECT-TYPE
SYNTAX INTEGER (1..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The security assoication refresh threshold in seconds."
::= { pikeTunnelEntry 17 }
pikeTunInNotifys OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of notifys received by
this IPsec Phase-1 IKE Tunnel."
::= { pikeTunnelEntry 22 }
pikeTunInP2Exchgs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of IPsec Phase-2
exchanges received by
this IPsec Phase-1 IKE Tunnel."
::= { pikeTunnelEntry 23 }
pikeTunInP2ExchgInvalids OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of IPsec Phase-2 exchanges
received on this tunnel that were found to
contain references to unrecognized security
parameters."
::= { pikeTunnelEntry 24 }
pikeTunInP2ExchgRejects OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of IPsec Phase-2 exchanges
received on this tunnel that were validated but were
rejected by the local policy."
::= { pikeTunnelEntry 25 }
pikeTunInP2SaDelRequests OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of IPsec Phase-2
security association delete requests received
by this IPsec Phase-1 IKE Tunnel."
::= { pikeTunnelEntry 26 }
pikeTunOutNotifys OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of notifys sent by this
IPsec Phase-1 Tunnel."
::= { pikeTunnelEntry 30 }
pikeTunOutP2Exchgs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of IPsec Phase-2 exchanges sent by
this IPsec Phase-1 IKE Tunnel."
::= { pikeTunnelEntry 31 }
pikeTunOutP2ExchgInvalids OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of IPsec Phase-2 exchanges
sent on this tunnel that were found by the peer
to contain references to security parameters
not recognized by the peer."
::= { pikeTunnelEntry 32 }
pikeTunOutP2ExchgRejects OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of IPsec Phase-2 exchanges
sent on this tunnel that were validated by the peer
but were rejected by the peer's policy."
::= { pikeTunnelEntry 33 }
pikeTunOutP2SaDelRequests OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of IPsec Phase-2 security association
delete requests sent by this IPsec Phase-1 IKE Tunnel."
::= { pikeTunnelEntry 34 }
pikeTunStatus OBJECT-TYPE
SYNTAX TunnelStatus
-- ACCESS read-write
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The status of the MIB table row.
This object can be used to bring the tunnel down
by setting value of this object to destroy(2).
This object cannot be used to create
a MIB table row."
::= { pikeTunnelEntry 35 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- IPsec Phase-2 Group
--
-- This group consists of:
-- 1) IPsec Phase-2 Global Statistics
-- 2) IPsec Phase-2 Tunnel Table
-- 4) IPsec Phase-2 Security Protection Index Table
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
pipSecPhaseTwo OBJECT IDENTIFIER ::= { pipSecMIBObjects 3 }
-- The IPsec Phase-2 Global Tunnel Statistics
pipSecGlobalStats OBJECT IDENTIFIER ::= { pipSecPhaseTwo 1 }
pipSecGlobalActiveTunnels OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of currently active
IPsec Phase-2 Tunnels."
::= { pipSecGlobalStats 1 }
pipSecGlobalInOctets OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of octets received by all
current and previous IPsec Phase-2 Tunnels.
This value is
accumulated BEFORE determining whether or not
the packet should be decompressed. See also
pipSecGlobalInOctWraps for the number of times
this counter has wrapped."
::= { pipSecGlobalStats 3 }
pipSecGlobalInPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of packets received
by all current and previous
IPsec Phase-2 Tunnels."
::= { pipSecGlobalStats 9 }
pipSecGlobalInDrops OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of packets dropped
during receive processing by all current and previous
IPsec Phase-2 Tunnels. This count does
NOT include packets dropped due to
Anti-Replay processing."
::= { pipSecGlobalStats 10 }
pipSecGlobalInReplayDrops OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of packets dropped during
receive processing due to Anti-Replay
processing by all current and previous IPsec
Phase-2 Tunnels."
::= { pipSecGlobalStats 11 }
pipSecGlobalInAuths OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of inbound authentication's
performed by all current and previous IPsec
Phase-2 Tunnels."
::= { pipSecGlobalStats 12 }
pipSecGlobalInAuthFails OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of inbound authentication's
which ended in failure by all current and previous
IPsec Phase-2 Tunnels."
::= { pipSecGlobalStats 13 }
pipSecGlobalInDecrypts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of inbound decryption's
performed by all current and previous IPsec
Phase-2 Tunnels."
::= { pipSecGlobalStats 14 }
pipSecGlobalInDecryptFails OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of inbound decryption's
which ended in failure by all current and
previous IPsec Phase-2 Tunnels."
::= { pipSecGlobalStats 15 }
pipSecGlobalOutOctets OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of octets sent by all
current and previous IPsec Phase-2 Tunnels.
This value is accumulated AFTER determining
whether or not the packet should be compressed.
See also pipSecGlobalOutOctWraps for the
number of times this counter has wrapped."
::= { pipSecGlobalStats 16 }
pipSecGlobalOutPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of packets sent by all
current and previous
IPsec Phase-2 Tunnels."
::= { pipSecGlobalStats 22 }
pipSecGlobalOutDrops OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of packets dropped during send
processing by all current and previous IPsec
Phase-2 Tunnels."
::= { pipSecGlobalStats 23 }
pipSecGlobalOutAuths OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of outbound authentication's
performed by all current and previous IPsec
Phase-2 Tunnels."
::= { pipSecGlobalStats 24 }
pipSecGlobalOutAuthFails OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of outbound authentication's
which ended in failure
by all current and previous IPsec Phase-2 Tunnels."
::= { pipSecGlobalStats 25 }
pipSecGlobalOutEncrypts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of outbound encryption's performed
by all current and previous IPsec Phase-2 Tunnels."
::= { pipSecGlobalStats 26 }
pipSecGlobalOutEncryptFails OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of outbound encryption's
which ended in failure by all current and
previous IPsec Phase-2 Tunnels."
::= { pipSecGlobalStats 27 }
pipSecGlobalNoSaFails OBJECT-TYPE