forked from AlexandreYang/snmp-mibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
A3COM-HUAWEI-IPSEC-MONITOR-MIB
executable file
·1653 lines (1494 loc) · 55.6 KB
/
A3COM-HUAWEI-IPSEC-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 IPSec tunnels' statistic information.
-- Reference: Huawei Enterprise MIB
-- Version: 1.5
-- History:
-- V1.0: The initial version created by Caixiansen, Renweichun and
-- Maoyu.
-- V1.1: Modified by Caixiansen Mar.3 2005
-- Two values 'modp1536(5)' and 'modp2048(14)'are added for data
-- type 'H3cDiffHellmanGrp'.
-- V1.2: Modified by Sunludong Sep.1 2005
-- Descriptions of node 'h3cIPSecTunIKETunnelIndex', 'h3cIPSecTunLocalAddr',
-- 'h3cIPSecTunRemoteAddr', 'h3cIPSecTunLifeSize', 'h3cIPSecTunLifeTime',
-- 'h3cIPSecTunRemainTime', 'h3cIPSecTunActiveTime', 'h3cIPSecTunRemainSize'
-- are modified.
-- Ranges of node 'h3cIPSecTunRemainTime', 'h3cIPSecTunActiveTime',
-- 'h3cIPSecTunRemainSize' are modified.
-- Ranges of data type 'H3cIPSecNegoType', 'H3cEncapMode',
-- 'H3cEncryptAlgo', 'H3cAuthAlgo', 'H3cDiffHellmanGrp' are modified.
-- V1.3: Modified by Sunludong Feb.23 2006
-- Range and description of node 'h3cIPSecTunInitiator' are modified.
-- V1.4: Modified by liukan Jan.12 2007
-- Range of data type 'H3cEncryptAlgo' are modified.
-- V1.5: Modified by Liukan Dec.8 2008
-- Three values 'aesCbc128(9)', 'aesCbc192(10)' and 'aesCbc256(11)' are added
-- to data type 'H3cEncryptAlgo'.
-- Data type of node 'h3cIPSecTunLifeSize' and 'h3cIPSecTunRemainSize' are modified
-- from Integer32 to Gauge32.
-- =====================================================================
A3COM-HUAWEI-IPSEC-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, Unsigned32
FROM SNMPv2-SMI
MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
FROM SNMPv2-CONF
h3cCommon
FROM A3COM-HUAWEI-OID-MIB;
h3cIPSecMonitor 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
IPSec tunnels. With this MIB, we can get information of a certain
tunnel or all tunnels."
::= { h3cCommon 7 }
H3cDiffHellmanGrp ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The Diffie Hellman Group used in the IKE and IPSec negotiations.
invalidGroup(2147483647) is defined as invalid value."
SYNTAX INTEGER {
none(0),
modp768(1),
modp1024(2),
modp1536(5),
modp2048(14),
invalidGroup(2147483647)
}
H3cEncapMode ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The encapsulation mode used by an IPSec Phase-2 Tunnel.
invalidMode(2147483647) is defined as invalid value."
SYNTAX INTEGER {
tunnel(1),
transport(2),
invalidMode(2147483647)
}
H3cEncryptAlgo ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The encryption algorithm used in the IKE and IPSec negotiations.
invalidAlg(2147483647) is defined as invalid value."
SYNTAX INTEGER {
none(0),
desCbc(1),
ideaCbc(2),
blowfishCbc(3),
rc5R16B64Cbc(4),
tripledesCbc(5),
castCbc(6),
aesCbc(7),
nsaCbc(8),
aesCbc128(9),
aesCbc192(10),
aesCbc256(11),
invalidAlg(2147483647)
}
H3cAuthAlgo ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The authentication algorithm used in the IKE negotiations.
invalidAlg(2147483647) is defined as invalid value."
SYNTAX INTEGER {
none(0),
md5(1),
sha(2),
invalidAlg(2147483647)
}
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)
}
H3cIPSecIDType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The type of IPSec 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)
}
H3cIPSecNegoType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The type of key used by an IPSec Phase-2 Tunnel. invalidType(2147483647)
is defined as invalid value."
SYNTAX INTEGER {
ike(1),
manual(2),
invalidType(2147483647)
}
H3cIPSecTunnelState ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The state of IPSec tunnel."
SYNTAX INTEGER {
active(1),
timeout(2)
}
-- ========================================================================
-- Node definitions
-- ========================================================================
--Begin the node of h3cIPSecObjects.
h3cIPSecObjects OBJECT IDENTIFIER ::= { h3cIPSecMonitor 1 }
-- ===============================================
-- Begin the table of h3cIPSecTunnelTable.
-- ===============================================
h3cIPSecTunnelTable OBJECT-TYPE
SYNTAX SEQUENCE OF H3cIPSecTunnelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IPSec Phase-2 Tunnel Table. There is one
entry in this table for each active IPSec Phase-2 Tunnel."
::= { h3cIPSecObjects 1 }
h3cIPSecTunnelEntry OBJECT-TYPE
SYNTAX H3cIPSecTunnelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about h3cIPSecTunnelTable."
INDEX { h3cIPSecTunIfIndex, h3cIPSecTunEntryIndex,h3cIPSecTunIndex }
::= { h3cIPSecTunnelTable 1 }
H3cIPSecTunnelEntry ::=
SEQUENCE {
h3cIPSecTunIfIndex
Integer32,
h3cIPSecTunEntryIndex
Integer32,
h3cIPSecTunIndex
Integer32,
h3cIPSecTunIKETunnelIndex
Integer32,
h3cIPSecTunLocalAddr
IpAddress,
h3cIPSecTunRemoteAddr
IpAddress,
h3cIPSecTunKeyType
H3cIPSecNegoType,
h3cIPSecTunEncapMode
H3cEncapMode,
h3cIPSecTunInitiator
INTEGER,
h3cIPSecTunLifeSize
Gauge32,
h3cIPSecTunLifeTime
Integer32,
h3cIPSecTunRemainTime
Integer32,
h3cIPSecTunActiveTime
Integer32,
h3cIPSecTunRemainSize
Gauge32,
h3cIPSecTunTotalRefreshes
Counter32,
h3cIPSecTunCurrentSaInstances
Gauge32,
h3cIPSecTunInSaEncryptAlgo
H3cEncryptAlgo,
h3cIPSecTunInSaAhAuthAlgo
H3cAuthAlgo,
h3cIPSecTunInSaEspAuthAlgo
H3cAuthAlgo,
h3cIPSecTunDiffHellmanGrp
H3cDiffHellmanGrp,
h3cIPSecTunOutSaEncryptAlgo
H3cEncryptAlgo,
h3cIPSecTunOutSaAhAuthAlgo
H3cAuthAlgo,
h3cIPSecTunOutSaEspAuthAlgo
H3cAuthAlgo,
h3cIPSecTunPolicyName
DisplayString,
h3cIPSecTunPolicyNum
Integer32,
h3cIPSecTunStatus
INTEGER
}
h3cIPSecTunIfIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The interface index( the ifIndex of ifTable )."
::= { h3cIPSecTunnelEntry 1 }
h3cIPSecTunEntryIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of IPSec policy applied in the interface."
::= { h3cIPSecTunnelEntry 2 }
h3cIPSecTunIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of IPSec Phase-2 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."
::= { h3cIPSecTunnelEntry 3 }
h3cIPSecTunIKETunnelIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index of the associated IPSec Phase-1 IKE Tunnel
(IKETunIndex in the IKETunnelTable). 2147483647 is defined as
invalid value. "
::= { h3cIPSecTunnelEntry 4 }
h3cIPSecTunLocalAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address of the local peer for the IPSec Phase-2
Tunnel. 0.0.0.0 is defined as invalid value."
::= { h3cIPSecTunnelEntry 5 }
h3cIPSecTunRemoteAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address of the remote peer for the IPSec Phase-2
Tunnel. 0.0.0.0 is defined as invalid value."
::= { h3cIPSecTunnelEntry 6 }
h3cIPSecTunKeyType OBJECT-TYPE
SYNTAX H3cIPSecNegoType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The key negotiate mode used by the IPSec Phase-2 Tunnel."
::= { h3cIPSecTunnelEntry 7 }
h3cIPSecTunEncapMode OBJECT-TYPE
SYNTAX H3cEncapMode
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The encapsulation mode used by the IPSec Phase-2 Tunnel."
::= { h3cIPSecTunnelEntry 8 }
h3cIPSecTunInitiator OBJECT-TYPE
SYNTAX INTEGER
{
local(1),
remote(2),
none(2147483647)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The initiator of this IPSec tunnel. Value none is used for manual
IPsec tunnel, for there is no initiator or responder in this method."
::= { h3cIPSecTunnelEntry 9 }
h3cIPSecTunLifeSize OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The negotiated LifeSize of the IPSec Phase-2 Tunnel in kilobytes.
0 is defined as invalid value."
::= { h3cIPSecTunnelEntry 10 }
h3cIPSecTunLifeTime OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The negotiated LifeTime of the IPSec Phase-2 Tunnel in seconds.
2147483647 is defined as invalid value."
::= { h3cIPSecTunnelEntry 11 }
h3cIPSecTunRemainTime OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The remain time of SA in seconds. 2147483647 is defined as invalid
value."
::= { h3cIPSecTunnelEntry 12 }
h3cIPSecTunActiveTime OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The duration the IPSec Phase-2 Tunnel has been active in
hundredths of seconds. 2147483647 is defined as invalid value."
::= { h3cIPSecTunnelEntry 13 }
h3cIPSecTunRemainSize OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The remain LifeSize of SA in kilobytes. 0 is defined as
invalid value."
::= { h3cIPSecTunnelEntry 14 }
h3cIPSecTunTotalRefreshes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of security association refreshing performed."
::= { h3cIPSecTunnelEntry 15 }
h3cIPSecTunCurrentSaInstances OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of security associations which are currently active
or expiring."
::= { h3cIPSecTunnelEntry 16 }
h3cIPSecTunInSaEncryptAlgo OBJECT-TYPE
SYNTAX H3cEncryptAlgo
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The encryption algorithm used by the inbound security association
of the IPSec Phase-2 Tunnel."
::= { h3cIPSecTunnelEntry 17 }
h3cIPSecTunInSaAhAuthAlgo OBJECT-TYPE
SYNTAX H3cAuthAlgo
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The authentication algorithm used by the inbound authentication
header (AH) security association of the IPSec Phase-2 Tunnel."
::= { h3cIPSecTunnelEntry 18 }
h3cIPSecTunInSaEspAuthAlgo OBJECT-TYPE
SYNTAX H3cAuthAlgo
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The authentication algorithm used by the inbound encapsulation
security protocol(ESP) security association of the IPSec
Phase-2 Tunnel."
::= { h3cIPSecTunnelEntry 19 }
h3cIPSecTunDiffHellmanGrp OBJECT-TYPE
SYNTAX H3cDiffHellmanGrp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Diffie Hellman Group used by the security association of the
IPSec Phase-2 Tunnel."
::= { h3cIPSecTunnelEntry 20 }
h3cIPSecTunOutSaEncryptAlgo OBJECT-TYPE
SYNTAX H3cEncryptAlgo
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The encryption algorithm used by the outbound security
association of the IPSec Phase-2 Tunnel."
::= { h3cIPSecTunnelEntry 21 }
h3cIPSecTunOutSaAhAuthAlgo OBJECT-TYPE
SYNTAX H3cAuthAlgo
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The authentication algorithm used by the outbound
authentication header (AH) security association of
the IPSec Phase-2 Tunnel."
::= { h3cIPSecTunnelEntry 22 }
h3cIPSecTunOutSaEspAuthAlgo OBJECT-TYPE
SYNTAX H3cAuthAlgo
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The authentication algorithm used by the outbound encapsulation
security protocol(ESP) security association of the IPSec
Phase-2 Tunnel."
::= { h3cIPSecTunnelEntry 23 }
h3cIPSecTunPolicyName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The policy name used by this IPSec tunnel."
::= { h3cIPSecTunnelEntry 24 }
h3cIPSecTunPolicyNum OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The sequence number of policy used by this IPSec tunnel."
::= { h3cIPSecTunnelEntry 25 }
h3cIPSecTunStatus OBJECT-TYPE
SYNTAX INTEGER
{
initial(1),
ready(2),
rekeyed(3),
closed(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of the IPSec Tunnel."
::= { h3cIPSecTunnelEntry 26 }
-- ===============================================
-- Begin the table of h3cIPSecTunnelStatTable.
-- ===============================================
h3cIPSecTunnelStatTable OBJECT-TYPE
SYNTAX SEQUENCE OF H3cIPSecTunnelStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IPSec Phase-2 Tunnel Statistics Table. "
::= { h3cIPSecObjects 2 }
h3cIPSecTunnelStatEntry OBJECT-TYPE
SYNTAX H3cIPSecTunnelStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about h3cIPSecTunnelStatTable."
INDEX { h3cIPSecTunIfIndex,h3cIPSecTunEntryIndex,h3cIPSecTunIndex }
::= { h3cIPSecTunnelStatTable 1 }
H3cIPSecTunnelStatEntry ::=
SEQUENCE {
h3cIPSecTunInOctets
Counter64,
h3cIPSecTunInDecompOctets
Counter64,
h3cIPSecTunInPkts
Counter64,
h3cIPSecTunInDropPkts
Counter64,
h3cIPSecTunInReplayDropPkts
Counter32,
h3cIPSecTunInAuthFails
Counter32,
h3cIPSecTunInDecryptFails
Counter32,
h3cIPSecTunOutOctets
Counter64,
h3cIPSecTunOutUncompOctets
Counter64,
h3cIPSecTunOutPkts
Counter64,
h3cIPSecTunOutDropPkts
Counter64,
h3cIPSecTunOutEncryptFails
Counter32,
h3cIPSecTunNoMemoryDropPkts
Counter32,
h3cIPSecTunQueueFullDropPkts
Counter32,
h3cIPSecTunInvalidLenDropPkts
Counter32,
h3cIPSecTunTooLongDropPkts
Counter32,
h3cIPSecTunInvalidSaDropPkts
Counter32
}
h3cIPSecTunInOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of octets received by this IPSec Phase-2 Tunnel.
This value is accumulated BEFORE determining whether or not the
packet should be decompressed."
::= { h3cIPSecTunnelStatEntry 1 }
h3cIPSecTunInDecompOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of decompressed octets received by this IPSec
Phase-2 Tunnel. This value is accumulated AFTER the packet
is decompressed."
::= { h3cIPSecTunnelStatEntry 2 }
h3cIPSecTunInPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets received by this IPSec Phase-2 Tunnel."
::= { h3cIPSecTunnelStatEntry 3 }
h3cIPSecTunInDropPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets dropped during receiving process
by this IPSec Phase-2 Tunnel."
::= { h3cIPSecTunnelStatEntry 4 }
h3cIPSecTunInReplayDropPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets dropped during
receiving process due to Anti-Replay process
by this IPSec Phase-2 Tunnel."
::= { h3cIPSecTunnelStatEntry 5 }
h3cIPSecTunInAuthFails OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of inbound authentication's
which ended in failure by this IPSec Phase-2 Tunnel."
::= { h3cIPSecTunnelStatEntry 6 }
h3cIPSecTunInDecryptFails OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of inbound decryption's
which ended in failure by this IPSec Phase-2 Tunnel."
::= { h3cIPSecTunnelStatEntry 7 }
h3cIPSecTunOutOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of octets sent by this IPSec Phase-2 Tunnel.
This value is accumulated AFTER determining whether or not
the packet should be compressed."
::= { h3cIPSecTunnelStatEntry 8 }
h3cIPSecTunOutUncompOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of uncompressed octets sent by this IPSec Phase-2
Tunnel.This value is accumulated BEFORE the packet is compressed."
::= { h3cIPSecTunnelStatEntry 9 }
h3cIPSecTunOutPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets sent by this IPSec Phase-2 Tunnel."
::= { h3cIPSecTunnelStatEntry 10 }
h3cIPSecTunOutDropPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets dropped during sending process
by this IPSec Phase-2 Tunnel."
::= { h3cIPSecTunnelStatEntry 11 }
h3cIPSecTunOutEncryptFails OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of outbound encryption's which ended in failure
by this IPSec Phase-2 Tunnel."
::= { h3cIPSecTunnelStatEntry 12 }
h3cIPSecTunNoMemoryDropPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets dropped due to no enough memory by this
IPSec Phase-2 Tunnel."
::= { h3cIPSecTunnelStatEntry 13 }
h3cIPSecTunQueueFullDropPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets dropped due to queue full by this
IPSec Phase-2 Tunnel."
::= { h3cIPSecTunnelStatEntry 14 }
h3cIPSecTunInvalidLenDropPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets dropped due to invalid length packet
by this IPSec Phase-2 Tunnel."
::= { h3cIPSecTunnelStatEntry 15 }
h3cIPSecTunTooLongDropPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets dropped due to too long packet by this
IPSec Phase-2 Tunnel."
::= { h3cIPSecTunnelStatEntry 16 }
h3cIPSecTunInvalidSaDropPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets dropped due to invalid SA by this
IPSec Phase-2 Tunnel."
::= { h3cIPSecTunnelStatEntry 17 }
-- ===============================================
-- Begin the table of h3cIPSecSaTable.
-- ===============================================
h3cIPSecSaTable OBJECT-TYPE
SYNTAX SEQUENCE OF H3cIPSecSaEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IPSec Phase-2 Security Protection Index Table. This table
contains an entry for each active and expiring security association."
::= { h3cIPSecObjects 3 }
h3cIPSecSaEntry OBJECT-TYPE
SYNTAX H3cIPSecSaEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about h3cIPSecSaTable."
INDEX { h3cIPSecTunIfIndex,h3cIPSecTunEntryIndex,h3cIPSecTunIndex,h3cIPSecSaIndex }
::= { h3cIPSecSaTable 1 }
H3cIPSecSaEntry ::=
SEQUENCE {
h3cIPSecSaIndex
Integer32,
h3cIPSecSaDirection
INTEGER,
h3cIPSecSaValue
Unsigned32,
h3cIPSecSaProtocol
H3cSaProtocol,
h3cIPSecSaEncryptAlgo
H3cEncryptAlgo,
h3cIPSecSaAuthAlgo
H3cAuthAlgo,
h3cIPSecSaStatus
INTEGER
}
h3cIPSecSaIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The number of the Sa associated with the Phase-2 Tunnel
Table. The value of this index is a number which begins
at one and is incremented with each Sa associated with
an IPSec Phase-2 Tunnel. The value of this object will
wrap at 2,147,483,647."
::= { h3cIPSecSaEntry 1 }
h3cIPSecSaDirection OBJECT-TYPE
SYNTAX INTEGER {
in(1),
out(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The direction of the SA."
::= { h3cIPSecSaEntry 2 }
h3cIPSecSaValue OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of the SPI."
::= { h3cIPSecSaEntry 3 }
h3cIPSecSaProtocol OBJECT-TYPE
SYNTAX H3cSaProtocol
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The security protocol of the SA."
::= { h3cIPSecSaEntry 4 }
h3cIPSecSaEncryptAlgo OBJECT-TYPE
SYNTAX H3cEncryptAlgo
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The encryption algorithm used by the security association
of the IPSec Phase-2 Tunnel."
::= { h3cIPSecSaEntry 5 }
h3cIPSecSaAuthAlgo OBJECT-TYPE
SYNTAX H3cAuthAlgo
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The authentication algorithm used by the SA."
::= { h3cIPSecSaEntry 6 }
h3cIPSecSaStatus OBJECT-TYPE
SYNTAX INTEGER {
active(1),
expiring(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of the SA."
::= { h3cIPSecSaEntry 7 }
-- ===============================================
-- Begin the table of h3cIPSecTrafficTable.
-- ===============================================
h3cIPSecTrafficTable OBJECT-TYPE
SYNTAX SEQUENCE OF H3cIPSecTrafficEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IPSec Phase-2 Tunnel Traffic Table. "
::= { h3cIPSecObjects 4 }
h3cIPSecTrafficEntry OBJECT-TYPE
SYNTAX H3cIPSecTrafficEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about h3cIPSecTrafficTable."
INDEX { h3cIPSecTunIfIndex,h3cIPSecTunEntryIndex,h3cIPSecTunIndex }
::= { h3cIPSecTrafficTable 1 }
H3cIPSecTrafficEntry ::=
SEQUENCE {
h3cIPSecTrafficLocalType
H3cTrafficType,
h3cIPSecTrafficLocalAddr1
IpAddress,
h3cIPSecTrafficLocalAddr2
IpAddress,
h3cIPSecTrafficLocalProtocol
Integer32,
h3cIPSecTrafficLocalPort
Integer32,
h3cIPSecTrafficRemoteType
H3cTrafficType,
h3cIPSecTrafficRemoteAddr1
IpAddress,
h3cIPSecTrafficRemoteAddr2
IpAddress,
h3cIPSecTrafficRemoteProtocol
Integer32,
h3cIPSecTrafficRemotePort
Integer32
}
h3cIPSecTrafficLocalType OBJECT-TYPE
SYNTAX H3cTrafficType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of local peer. Possible values are: a single
IP address, or an IP address range, or an IP subnet."
::= { h3cIPSecTrafficEntry 1 }
h3cIPSecTrafficLocalAddr1 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The first specification of local peer's IP address. If
the local peer type is single IP address, then this is the
value of the IP address. 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."
::= { h3cIPSecTrafficEntry 2 }
h3cIPSecTrafficLocalAddr2 OBJECT-TYPE
SYNTAX IpAddress
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, then this is the value of the
IP address. 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."
::= { h3cIPSecTrafficEntry 3 }
h3cIPSecTrafficLocalProtocol OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The protocol number of the local peer's traffic."
::= { h3cIPSecTrafficEntry 4 }
h3cIPSecTrafficLocalPort OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The port number of the local peer's traffic."
::= { h3cIPSecTrafficEntry 5 }
h3cIPSecTrafficRemoteType OBJECT-TYPE
SYNTAX H3cTrafficType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of remote peer. Possible values are: a single
IP address, or an IP address range, or an IP subnet."
::= { h3cIPSecTrafficEntry 6 }
h3cIPSecTrafficRemoteAddr1 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The first specification of remote peer's IP address.
If the remote peer type is single IP address, then
this is the value of the IP address. 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."
::= { h3cIPSecTrafficEntry 7 }
h3cIPSecTrafficRemoteAddr2 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Single IP address, then this is the value of the IP
address. 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."
::= { h3cIPSecTrafficEntry 8 }
h3cIPSecTrafficRemoteProtocol OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The protocol number of the remote peer's traffic."
::= { h3cIPSecTrafficEntry 9 }
h3cIPSecTrafficRemotePort OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The port number of the remote peer's traffic."
::= { h3cIPSecTrafficEntry 10 }
-- ===============================================
-- Begin the h3cIPSecGlobalStats.
-- ===============================================