-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathA3COM-HUAWEI-IKE-MONITOR-MIB
1602 lines (1440 loc) · 62.6 KB
/
A3COM-HUAWEI-IKE-MONITOR-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
-- ====================================================================
-- Copyright (C) 2004 by HUAWEI-3COM TECHNOLOGIES. All rights reserved.
--
-- Description: The MIB is designed to get IKE tunnels' statistic information.
--
-- Reference: Huawei Enterprise MIB
-- Version: 1.3
-- History:
-- V1.0: The initial version created by Caixiansen, Renweichun and Maoyu.
-- V1.1: modified by liguanmin.2005.1.19
-- In order to describe DPD work parameters if a tunnel enable
-- DPD function, two nodes have added in H3cIKETunnelEntry .those nodes are
-- h3cIKETunDpdIntervalTime and h3cIKETunDpdTimeOut.
-- V1.2: Modified by Caixiansen Mar.3 2005
-- Two values 'modp1536(5)' and 'modp2048(14)'are added for data type
-- 'H3cDiffHellmanGrp' .
-- V1.3: Modified by Liukan Dec.8 2008
-- Three values 'aesCbc128(8)', 'aesCbc192(9)' and 'aesCbc256(10)' are added
-- to data type 'H3cEncryptAlgo'.
-- Value description of data type 'H3cIKENegoMode' is changed from 'aggressive(4)' to
-- 'aggressiveMode(4)'.
-- =====================================================================
A3COM-HUAWEI-IKE-MONITOR-MIB DEFINITIONS ::= BEGIN
IMPORTS
ifIndex
FROM RFC1213-MIB
DisplayString,TEXTUAL-CONVENTION
FROM SNMPv2-TC
IpAddress, Integer32, Counter32, Counter64, OBJECT-TYPE, MODULE-IDENTITY,
Gauge32, NOTIFICATION-TYPE
FROM SNMPv2-SMI
MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
FROM SNMPv2-CONF
h3cCommon
FROM A3COM-HUAWEI-OID-MIB;
h3cIKEMonitor MODULE-IDENTITY
LAST-UPDATED "200410260000Z" -- Oct. 26, 2004 GMT
ORGANIZATION
"Huawei-3COM Technologies Co., Ltd."
CONTACT-INFO
"Huawei 3Com Technologies Co.,Ltd.
Shang-Di Information Industry Base,
Hai-Dian District Beijing P.R. China
http://www.huawei-3com.com
Zip:100085"
DESCRIPTION
"The MIB is designed to get statistic information of
IKE tunnels. With this MIB, we can get information of a certain IKE tunnel
or all IKE tunnels"
::= { h3cCommon 30 }
H3cIKENegoMode ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The IKE negotiation mode."
SYNTAX INTEGER {
mainMode(2),
aggressiveMode(4),
quickMode(32)
}
H3cIKEAuthMethod ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The authentication method used in IKE negotiations."
SYNTAX INTEGER {
preSharedKey(1),
rsaSignatures(3)
}
H3cDiffHellmanGrp ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The Diffie Hellman Group used in IKE and IPSec negotiations."
SYNTAX INTEGER {
modp768(1),
modp1024(2),
modp1536(5),
modp2048(14)
}
H3cEncryptAlgo ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The encryption algorithm used in IKE and IPSec negotiations."
SYNTAX INTEGER {
none(0),
desCbc(1),
ideaCbc(2),
blowfishCbc(3),
rc5R16B64Cbc(4),
tripleDesCbc(5),
castCbc(6),
aesCbc(7),
aesCbc128(8),
aesCbc192(9),
aesCbc256(10)
}
H3cAuthAlgo ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The authentication algorithm used in IKE negotiations."
SYNTAX INTEGER {
none(0),
md5(1),
sha(2)
}
H3cSaProtocol ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The protocol of security association."
SYNTAX INTEGER {
reserved(0),
isakmp(1),
ah(2),
esp(3),
ipcomp(4)
}
H3cTrapStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The switch which determines whether send a trap or not."
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
H3cIKEIDType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The type of IKE Identity."
SYNTAX INTEGER {
reserved(0),
ipv4Addr(1),
fqdn(2), -- fully-qualified domain name
userFqdn(3), -- fully-qualified username
ipv4AddrSubnet(4),
ipv6Addr(5),
ipv6AddrSubnet(6),
ipv4AddrRange(7),
ipv6AddrRange(8),
derAsn1Dn(9), -- the binary DER encoding of an ASN.1 X.500 Distinguished Name
-- [X.501] of the principal whose certificates are being exchanged
-- to establish the SA.
derAsn1Gn(10), -- the binary DER encoding of an ASN.1 X.500 GeneralName [X.509]
-- of the principal whose certificates are being exchanged to
-- establish the SA.
keyId(11) -- specifies an opaque byte stream which may be used to pass
-- vendor-specific information necessary to identify which
-- pre-shared key should be used to authenticate Aggressive
-- mode negotiations.
}
H3cTrafficType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The type of the data flow."
SYNTAX INTEGER {
ipv4Addr(1),
ipv4AddrSubnet(4),
ipv6Addr(5),
ipv6AddrSubnet(6),
ipv4AddrRange(7),
ipv6AddrRange(8)
}
H3cIKETunnelState ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The state of the IKE tunnel."
SYNTAX INTEGER {
active(1),
timeout(2)
}
-- ========================================================================
-- Node definitions
-- ========================================================================
--Begin the node of h3cIKEObjects.
h3cIKEObjects OBJECT IDENTIFIER ::= { h3cIKEMonitor 1 }
-- ================================================
-- Begin the table of h3cIKETunnelTable.
-- ================================================
h3cIKETunnelTable OBJECT-TYPE
SYNTAX SEQUENCE OF H3cIKETunnelEntry
MAX-ACCESS not-accessible
STATUS current
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."
::= { h3cIKEObjects 1 }
h3cIKETunnelEntry OBJECT-TYPE
SYNTAX H3cIKETunnelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry contains the information about h3cIKETunnelTable, such as negotiate mode,
encryption algorithm and authentication algorithm, etc."
INDEX { h3cIKETunIndex }
::= { h3cIKETunnelTable 1 }
H3cIKETunnelEntry ::=
SEQUENCE {
h3cIKETunIndex
Integer32,
h3cIKETunLocalType
H3cIKEIDType,
h3cIKETunLocalValue1
DisplayString,
h3cIKETunLocalValue2
DisplayString,
h3cIKETunLocalAddr
IpAddress,
h3cIKETunRemoteType
H3cIKEIDType,
h3cIKETunRemoteValue1
DisplayString,
h3cIKETunRemoteValue2
DisplayString,
h3cIKETunRemoteAddr
IpAddress,
h3cIKETunInitiator
INTEGER,
h3cIKETunNegoMode
H3cIKENegoMode,
h3cIKETunDiffHellmanGrp
H3cDiffHellmanGrp,
h3cIKETunEncryptAlgo
H3cEncryptAlgo,
h3cIKETunHashAlgo
H3cAuthAlgo,
h3cIKETunAuthMethod
H3cIKEAuthMethod,
h3cIKETunLifeTime
Integer32,
h3cIKETunActiveTime
Integer32,
h3cIKETunRemainTime
Integer32,
h3cIKETunTotalRefreshes
Counter32,
h3cIKETunState
H3cIKETunnelState,
h3cIKETunDpdIntervalTime
Integer32,
h3cIKETunDpdTimeOut
Integer32
}
h3cIKETunIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
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."
::= { h3cIKETunnelEntry 1 }
h3cIKETunLocalType OBJECT-TYPE
SYNTAX H3cIKEIDType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of local peer identity."
::= { h3cIKETunnelEntry 2 }
h3cIKETunLocalValue1 OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
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. If the local
peer type is IP subnet, then this is the
value of the subnet. If the local peer type
is IP address range, then this is the value
of beginning IP address of the range."
::= { h3cIKETunnelEntry 3 }
h3cIKETunLocalValue2 OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The second specification of local peer's IP address.
If the local peer type is single IP address or
single name, then this is zero-length. If the local peer
type is IP subnet, then this is the value of the
subnet mask. If the local peer type is IP
address range, then this is the value of ending
IP address of the range."
::= { h3cIKETunnelEntry 4 }
h3cIKETunLocalAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address of the local endpoint for the IPSec
Phase-1 IKE Tunnel."
::= { h3cIKETunnelEntry 5 }
h3cIKETunRemoteType OBJECT-TYPE
SYNTAX H3cIKEIDType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of remote peer identity.
The remote peer may be identified
by: 1. an IP address, or 2. a host name."
::= { h3cIKETunnelEntry 6 }
h3cIKETunRemoteValue1 OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
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. If the remote peer type is IP
subnet, then this is the value of the subnet. If the
remote peer type is IP address range, then this is the
value of beginning IP address of the range."
::= { h3cIKETunnelEntry 7 }
h3cIKETunRemoteValue2 OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The second specification of remote peer's IP address. If
the remote peer type is single IP address or single name,
then this is zero-length. If the remote peer type is IP subnet,
then this is the value of the subnet mask. If the remote
peer type is IP address range, then this is the value of
ending IP address of the range."
::= { h3cIKETunnelEntry 8 }
h3cIKETunRemoteAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address of the remote peer for the IPSec
Phase-1 IKE Tunnel."
::= { h3cIKETunnelEntry 9 }
h3cIKETunInitiator OBJECT-TYPE
SYNTAX INTEGER {
local(1),
remote(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The initiator of this tunnel."
::= { h3cIKETunnelEntry 10 }
h3cIKETunNegoMode OBJECT-TYPE
SYNTAX H3cIKENegoMode
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The negotiation mode of the IPSec Phase-1 IKE Tunnel."
::= { h3cIKETunnelEntry 11 }
h3cIKETunDiffHellmanGrp OBJECT-TYPE
SYNTAX H3cDiffHellmanGrp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Diffie Hellman Group used in the IPSec Phase-1 IKE
negotiations."
::= { h3cIKETunnelEntry 12 }
h3cIKETunEncryptAlgo OBJECT-TYPE
SYNTAX H3cEncryptAlgo
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The encryption algorithm used in the IPSec Phase-1 IKE
negotiations."
::= { h3cIKETunnelEntry 13 }
h3cIKETunHashAlgo OBJECT-TYPE
SYNTAX H3cAuthAlgo
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The hash algorithm used in the IPSec Phase-1 IKE
negotiations."
::= { h3cIKETunnelEntry 14 }
h3cIKETunAuthMethod OBJECT-TYPE
SYNTAX H3cIKEAuthMethod
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The authentication method used in the IPSec Phase-1
IKE negotiations."
::= { h3cIKETunnelEntry 15 }
h3cIKETunLifeTime OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The negotiated LifeTime of the IPSec Phase-1
IKE Tunnel in seconds."
::= { h3cIKETunnelEntry 16 }
h3cIKETunActiveTime OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The duration the IPSec Phase-1 IKE tunnel
has been active in seconds."
::= { h3cIKETunnelEntry 17 }
h3cIKETunRemainTime OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The security association remaining time in
seconds."
::= { h3cIKETunnelEntry 18 }
h3cIKETunTotalRefreshes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of security association
refreshing performed."
::= { h3cIKETunnelEntry 19 }
h3cIKETunState OBJECT-TYPE
SYNTAX H3cIKETunnelState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The State of IKE Tunnel."
::= { h3cIKETunnelEntry 20 }
h3cIKETunDpdIntervalTime OBJECT-TYPE
SYNTAX Integer32
UNITS "second"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time that trigger DPD request.
If ipsec message is expected to be sent out
and the interval time between current time
and the last time receiving peer's IPSec
message is bigger than this time, DPD request
would be triggered."
DEFVAL { 10 }
::= { h3cIKETunnelEntry 21 }
h3cIKETunDpdTimeOut OBJECT-TYPE
SYNTAX Integer32
UNITS "second"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The overtime of single DPD request.
If DPD requests are refused three times, all
security associations related would be deleted."
DEFVAL { 5 }
::= { h3cIKETunnelEntry 22 }
-- =======================================
-- begin the table of h3cIKETunnelStatTable.
-- =======================================
h3cIKETunnelStatTable OBJECT-TYPE
SYNTAX SEQUENCE OF H3cIKETunnelStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IPsec Phase-1 IKE Tunnel Statistic Table."
::= { h3cIKEObjects 2 }
h3cIKETunnelStatEntry OBJECT-TYPE
SYNTAX H3cIKETunnelStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry contains the information of h3cIKETunnelStatTable,
such as the number of packets sent and received by the
IKE tunnel, etc."
INDEX { h3cIKETunIndex }
::= { h3cIKETunnelStatTable 1 }
H3cIKETunnelStatEntry ::=
SEQUENCE {
h3cIKETunInOctets
Counter64,
h3cIKETunInPkts
Counter64,
h3cIKETunInDropPkts
Counter64,
h3cIKETunInP2Exchgs
Counter64,
h3cIKETunInP2ExchgRejets
Counter64,
h3cIKETunInP2SaDelRequests
Counter64,
h3cIKETunInP1SaDelRequests
Counter64,
h3cIKETunInNotifys
Counter32,
h3cIKETunOutOctets
Counter64,
h3cIKETunOutPkts
Counter64,
h3cIKETunOutDropPkts
Counter64,
h3cIKETunOutP2Exchgs
Counter64,
h3cIKETunOutP2ExchgRejects
Counter64,
h3cIKETunOutP2SaDelRequests
Counter64,
h3cIKETunOutP1SaDelRequests
Counter64,
h3cIKETunOutNotifys
Counter32
}
h3cIKETunInOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of octets received by
this IPSec Phase-1 IKE Tunnel."
::= { h3cIKETunnelStatEntry 1 }
h3cIKETunInPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets received by
this IPSec Phase-1 IKE Tunnel."
::= { h3cIKETunnelStatEntry 2 }
h3cIKETunInDropPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets dropped by this
IPSec Phase-1 IKE Tunnel during receiving process."
::= { h3cIKETunnelStatEntry 3 }
h3cIKETunInP2Exchgs OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of IPSec Phase-2 exchanges
received by this IPSec Phase-1 IKE Tunnel."
::= { h3cIKETunnelStatEntry 4 }
h3cIKETunInP2ExchgRejets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of IPSec Phase-2 exchanges
received and rejected by this IPSec Phase-1 Tunnel."
::= { h3cIKETunnelStatEntry 5 }
h3cIKETunInP2SaDelRequests OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of IPSec Phase-2 security association
deleting requests received by this IPSec Phase-1 IKE Tunnel."
::= { h3cIKETunnelStatEntry 6 }
h3cIKETunInP1SaDelRequests OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of IPSec Phase-1
security association deleting requests."
::= { h3cIKETunnelStatEntry 7 }
h3cIKETunInNotifys OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of notifications received by this
IPSec Phase-1 IKE Tunnel."
::= { h3cIKETunnelStatEntry 8 }
h3cIKETunOutOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of octets sent by this IPSec
Phase-1 IKE Tunnel."
::= { h3cIKETunnelStatEntry 9 }
h3cIKETunOutPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets sent by this IPSec
Phase-1 IKE Tunnel."
::= { h3cIKETunnelStatEntry 10 }
h3cIKETunOutDropPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets dropped by this
IPSec Phase-1 IKE Tunnel during sending process."
::= { h3cIKETunnelStatEntry 11 }
h3cIKETunOutP2Exchgs OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of IPSec Phase-2 exchanges sent
by this IPSec Phase-1 IKE Tunnel."
::= { h3cIKETunnelStatEntry 12 }
h3cIKETunOutP2ExchgRejects OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of IPSec Phase-2 exchanges sent
and rejected by this IPSec Phase-1 IKE Tunnel."
::= { h3cIKETunnelStatEntry 13 }
h3cIKETunOutP2SaDelRequests OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of IPSec Phase-2 security
association deleting requests sent by this
IPSec Phase-1 IKE Tunnel."
::= { h3cIKETunnelStatEntry 14 }
h3cIKETunOutP1SaDelRequests OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of IPSec Phase-1 security
association deleting requests sent by this
IPSec Phase-1 IKE Tunnel."
::= { h3cIKETunnelStatEntry 15 }
h3cIKETunOutNotifys OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of notifications sent by this IPSec
Phase-1 Tunnel."
::= { h3cIKETunnelStatEntry 16 }
-- =======================================
-- Begin the h3cIKEGlobalStats.
-- =======================================
h3cIKEGlobalStats OBJECT IDENTIFIER ::= { h3cIKEObjects 3 }
h3cIKEGlobalActiveTunnels OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of currently active IPSec Phase-1 IKE Tunnels."
::= { h3cIKEGlobalStats 1 }
h3cIKEGlobalInOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of octets received by all currently and
previously active IPSec Phase-1 IKE Tunnels."
::= { h3cIKEGlobalStats 2 }
h3cIKEGlobalInPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets received by all
currently and previously active IPSec Phase-1 IKE Tunnels."
::= { h3cIKEGlobalStats 3 }
h3cIKEGlobalInDropPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets which were dropped during receiving
process by all currently and previously active IPSec Phase-1
IKE Tunnels."
::= { h3cIKEGlobalStats 4 }
h3cIKEGlobalInP2Exchgs OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of IPSec Phase-2 exchanges received by all
currently and previously active IPSec Phase-1 IKE Tunnels."
::= { h3cIKEGlobalStats 5 }
h3cIKEGlobalInP2ExchgRejects OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
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."
::= { h3cIKEGlobalStats 6 }
h3cIKEGlobalInP2SaDelRequests OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of IPSec Phase-2 security association
deleting requests received by all currently and previously
active IPSec Phase-1 IKE Tunnels."
::= { h3cIKEGlobalStats 7 }
h3cIKEGlobalInNotifys OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of notifications received by all IPSec
Phase-1 IKE Tunnels."
::= { h3cIKEGlobalStats 8 }
h3cIKEGlobalOutOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of octets sent by all currently
and previously active and IPSec Phase-1 IKE Tunnels. "
::= { h3cIKEGlobalStats 9 }
h3cIKEGlobalOutPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets sent by all currently
and previously active and IPSec Phase-1 Tunnels."
::= { h3cIKEGlobalStats 10 }
h3cIKEGlobalOutDropPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets which were dropped during
sending process by all currently and previously active
IPSec Phase-1 IKE Tunnels."
::= { h3cIKEGlobalStats 11 }
h3cIKEGlobalOutP2Exchgs OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of IPSec Phase-2 exchanges which were
sent by all currently and previously active IPSec
Phase-1 IKE Tunnels."
::= { h3cIKEGlobalStats 12 }
h3cIKEGlobalOutP2ExchgRejects OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
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."
::= { h3cIKEGlobalStats 13 }
h3cIKEGlobalOutP2SaDelRequests OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of IPSec Phase-2 SA deleting requests sent
by all currently and previously active IPSec Phase-1 IKE Tunnels."
::= { h3cIKEGlobalStats 14 }
h3cIKEGlobalOutNotifys OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of notifications sent by all active IPSec
Phase-1 IKE Tunnels."
::= { h3cIKEGlobalStats 15 }
h3cIKEGlobalInitTunnels OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of IPSec Phase-1 IKE Tunnels which
were locally initiated."
::= { h3cIKEGlobalStats 16 }
h3cIKEGlobalInitTunnelFails OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of IPSec Phase-1 IKE Tunnels which
were locally initiated and failed to activate."
::= { h3cIKEGlobalStats 17 }
h3cIKEGlobalRespTunnels OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of IPSec Phase-1 IKE Tunnels which
were remotely initiated."
::= { h3cIKEGlobalStats 18 }
h3cIKEGlobalRespTunnelFails OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of IPSec Phase-1 IKE Tunnels which
were remotely initiated and failed to activate."
::= { h3cIKEGlobalStats 19 }
h3cIKEGlobalAuthFails OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of authentications which ended in
failure by all current and previous IPSec Phase-1 IKE Tunnels."
::= { h3cIKEGlobalStats 20 }
h3cIKEGlobalNoSaFails OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
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."
::= { h3cIKEGlobalStats 21 }
h3cIKEGlobalInvalidCookieFails OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of invalid cookie in failures which
occurred during processing of all current and previous
IPSec Phase-1 IKE Tunnels."
::= { h3cIKEGlobalStats 22 }
h3cIKEGlobalAttrNotSuppFails OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of attributes not supported in failures
which occurred during processing of all current and previous
IPSec Phase-1 IKE Tunnels."
::= { h3cIKEGlobalStats 23 }
h3cIKEGlobalNoProposalChosenFails OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of no proposal chosen in failures which
occurred during processing of all current and previous
IPSec Phase-1 IKE Tunnels."
::= { h3cIKEGlobalStats 24 }
h3cIKEGlobalUnsportExchTypeFails OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of unsupported exchange type in failures
which occurred during processing of all current and
previous IPSec Phase-1 IKE Tunnels."
::= { h3cIKEGlobalStats 25 }
h3cIKEGlobalInvalidIdFails OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of invalid id Information in failures
which occurred during processing of all current and
previous IPSec Phase-1 IKE Tunnels."
::= { h3cIKEGlobalStats 26 }
h3cIKEGlobalInvalidProFails OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of invalid protocol id in failures which
occurred during processing of all current and previous
IPSec Phase-1 IKE Tunnels."
::= { h3cIKEGlobalStats 27 }
h3cIKEGlobalCertTypeUnsuppFails OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of certificate type unsupported in failures
which occurred during processing of all current and
previous IPSec Phase-1 IKE Tunnels."
::= { h3cIKEGlobalStats 28 }
h3cIKEGlobalInvalidCertAuthFails OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of failures because of invalid certificate authority
which occurred during processing of all current and
previous IPSec Phase-1 IKE Tunnels."
::= { h3cIKEGlobalStats 29 }
h3cIKEGlobalInvalidSignFails OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of failures because of the invalid signature which
occurred during processing of all current and previous
IPSec Phase-1 IKE Tunnels."
::= { h3cIKEGlobalStats 30 }
h3cIKEGlobalCertUnavailableFails OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of certificate unavailable in failures