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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
|
-- ====================================================================
-- Copyright (C) 2004 New H3C Tech. Co., Ltd. All rights reserved.
--
-- Description: The MIB is designed to get IPSec tunnels' statistic information.
-- Reference:
-- 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 'Hh3cDiffHellmanGrp'.
-- V1.2: Modified by Sunludong Sep.1 2005
-- Descriptions of node 'hh3cIPSecTunIKETunnelIndex', 'hh3cIPSecTunLocalAddr',
-- 'hh3cIPSecTunRemoteAddr', 'hh3cIPSecTunLifeSize', 'hh3cIPSecTunLifeTime',
-- 'hh3cIPSecTunRemainTime', 'hh3cIPSecTunActiveTime', 'hh3cIPSecTunRemainSize'
-- are modified.
-- Ranges of node 'hh3cIPSecTunRemainTime', 'hh3cIPSecTunActiveTime',
-- 'hh3cIPSecTunRemainSize' are modified.
-- Ranges of data type 'Hh3cIPSecNegoType', 'Hh3cEncapMode',
-- 'Hh3cEncryptAlgo', 'Hh3cAuthAlgo', 'Hh3cDiffHellmanGrp' are modified.
-- V1.3: Modified by Sunludong Feb.23 2006
-- Range and description of node 'hh3cIPSecTunInitiator' are modified.
-- V1.4: Modified by liukan Jan.12 2007
-- Range of data type 'Hh3cEncryptAlgo' are modified.
-- V1.5: Modified by Liukan Dec.8 2008
-- Three values 'aesCbc128(9)', 'aesCbc192(10)' and 'aesCbc256(11)' are added
-- to data type 'Hh3cEncryptAlgo'.
-- Data type of node 'hh3cIPSecTunLifeSize' and 'hh3cIPSecTunRemainSize' are modified
-- from Integer32 to Gauge32.
-- =====================================================================
HH3C-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
hh3cCommon
FROM HH3C-OID-MIB;
hh3cIPSecMonitor MODULE-IDENTITY
LAST-UPDATED "200410260000Z" -- Oct. 26, 2004 GMT
ORGANIZATION
"New H3C Tech. Co., Ltd."
CONTACT-INFO
"Platform Team New H3C Tech. Co., Ltd.
Hai-Dian District Beijing P.R. China
http://www.h3c.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."
::= { hh3cCommon 7 }
Hh3cDiffHellmanGrp ::= 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)
}
Hh3cEncapMode ::= 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)
}
Hh3cEncryptAlgo ::= 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)
}
Hh3cAuthAlgo ::= 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)
}
Hh3cSaProtocol ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The protocol of security association."
SYNTAX INTEGER {
reserved(0),
isakmp(1),
ah(2),
esp(3),
ipcomp(4)
}
Hh3cTrapStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The switch which determines whether send a trap or not."
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
Hh3cIPSecIDType ::= 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.
}
Hh3cTrafficType ::= 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)
}
Hh3cIPSecNegoType ::= 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)
}
Hh3cIPSecTunnelState ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The state of IPSec tunnel."
SYNTAX INTEGER {
active(1),
timeout(2)
}
-- ========================================================================
-- Node definitions
-- ========================================================================
--Begin the node of hh3cIPSecObjects.
hh3cIPSecObjects OBJECT IDENTIFIER ::= { hh3cIPSecMonitor 1 }
-- ===============================================
-- Begin the table of hh3cIPSecTunnelTable.
-- ===============================================
hh3cIPSecTunnelTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cIPSecTunnelEntry
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."
::= { hh3cIPSecObjects 1 }
hh3cIPSecTunnelEntry OBJECT-TYPE
SYNTAX Hh3cIPSecTunnelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about hh3cIPSecTunnelTable."
INDEX { hh3cIPSecTunIfIndex, hh3cIPSecTunEntryIndex,hh3cIPSecTunIndex }
::= { hh3cIPSecTunnelTable 1 }
Hh3cIPSecTunnelEntry ::=
SEQUENCE {
hh3cIPSecTunIfIndex
Integer32,
hh3cIPSecTunEntryIndex
Integer32,
hh3cIPSecTunIndex
Integer32,
hh3cIPSecTunIKETunnelIndex
Integer32,
hh3cIPSecTunLocalAddr
IpAddress,
hh3cIPSecTunRemoteAddr
IpAddress,
hh3cIPSecTunKeyType
Hh3cIPSecNegoType,
hh3cIPSecTunEncapMode
Hh3cEncapMode,
hh3cIPSecTunInitiator
INTEGER,
hh3cIPSecTunLifeSize
Gauge32,
hh3cIPSecTunLifeTime
Integer32,
hh3cIPSecTunRemainTime
Integer32,
hh3cIPSecTunActiveTime
Integer32,
hh3cIPSecTunRemainSize
Gauge32,
hh3cIPSecTunTotalRefreshes
Counter32,
hh3cIPSecTunCurrentSaInstances
Gauge32,
hh3cIPSecTunInSaEncryptAlgo
Hh3cEncryptAlgo,
hh3cIPSecTunInSaAhAuthAlgo
Hh3cAuthAlgo,
hh3cIPSecTunInSaEspAuthAlgo
Hh3cAuthAlgo,
hh3cIPSecTunDiffHellmanGrp
Hh3cDiffHellmanGrp,
hh3cIPSecTunOutSaEncryptAlgo
Hh3cEncryptAlgo,
hh3cIPSecTunOutSaAhAuthAlgo
Hh3cAuthAlgo,
hh3cIPSecTunOutSaEspAuthAlgo
Hh3cAuthAlgo,
hh3cIPSecTunPolicyName
DisplayString,
hh3cIPSecTunPolicyNum
Integer32,
hh3cIPSecTunStatus
INTEGER
}
hh3cIPSecTunIfIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The interface index( the ifIndex of ifTable )."
::= { hh3cIPSecTunnelEntry 1 }
hh3cIPSecTunEntryIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of IPSec policy applied in the interface."
::= { hh3cIPSecTunnelEntry 2 }
hh3cIPSecTunIndex 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."
::= { hh3cIPSecTunnelEntry 3 }
hh3cIPSecTunIKETunnelIndex 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. "
::= { hh3cIPSecTunnelEntry 4 }
hh3cIPSecTunLocalAddr 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."
::= { hh3cIPSecTunnelEntry 5 }
hh3cIPSecTunRemoteAddr 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."
::= { hh3cIPSecTunnelEntry 6 }
hh3cIPSecTunKeyType OBJECT-TYPE
SYNTAX Hh3cIPSecNegoType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The key negotiate mode used by the IPSec Phase-2 Tunnel."
::= { hh3cIPSecTunnelEntry 7 }
hh3cIPSecTunEncapMode OBJECT-TYPE
SYNTAX Hh3cEncapMode
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The encapsulation mode used by the IPSec Phase-2 Tunnel."
::= { hh3cIPSecTunnelEntry 8 }
hh3cIPSecTunInitiator 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."
::= { hh3cIPSecTunnelEntry 9 }
hh3cIPSecTunLifeSize 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."
::= { hh3cIPSecTunnelEntry 10 }
hh3cIPSecTunLifeTime 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."
::= { hh3cIPSecTunnelEntry 11 }
hh3cIPSecTunRemainTime 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."
::= { hh3cIPSecTunnelEntry 12 }
hh3cIPSecTunActiveTime 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."
::= { hh3cIPSecTunnelEntry 13 }
hh3cIPSecTunRemainSize OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The remain LifeSize of SA in kilobytes. 0 is defined as
invalid value."
::= { hh3cIPSecTunnelEntry 14 }
hh3cIPSecTunTotalRefreshes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of security association refreshing performed."
::= { hh3cIPSecTunnelEntry 15 }
hh3cIPSecTunCurrentSaInstances OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of security associations which are currently active
or expiring."
::= { hh3cIPSecTunnelEntry 16 }
hh3cIPSecTunInSaEncryptAlgo OBJECT-TYPE
SYNTAX Hh3cEncryptAlgo
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The encryption algorithm used by the inbound security association
of the IPSec Phase-2 Tunnel."
::= { hh3cIPSecTunnelEntry 17 }
hh3cIPSecTunInSaAhAuthAlgo OBJECT-TYPE
SYNTAX Hh3cAuthAlgo
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."
::= { hh3cIPSecTunnelEntry 18 }
hh3cIPSecTunInSaEspAuthAlgo OBJECT-TYPE
SYNTAX Hh3cAuthAlgo
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."
::= { hh3cIPSecTunnelEntry 19 }
hh3cIPSecTunDiffHellmanGrp OBJECT-TYPE
SYNTAX Hh3cDiffHellmanGrp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Diffie Hellman Group used by the security association of the
IPSec Phase-2 Tunnel."
::= { hh3cIPSecTunnelEntry 20 }
hh3cIPSecTunOutSaEncryptAlgo OBJECT-TYPE
SYNTAX Hh3cEncryptAlgo
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The encryption algorithm used by the outbound security
association of the IPSec Phase-2 Tunnel."
::= { hh3cIPSecTunnelEntry 21 }
hh3cIPSecTunOutSaAhAuthAlgo OBJECT-TYPE
SYNTAX Hh3cAuthAlgo
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."
::= { hh3cIPSecTunnelEntry 22 }
hh3cIPSecTunOutSaEspAuthAlgo OBJECT-TYPE
SYNTAX Hh3cAuthAlgo
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."
::= { hh3cIPSecTunnelEntry 23 }
hh3cIPSecTunPolicyName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The policy name used by this IPSec tunnel."
::= { hh3cIPSecTunnelEntry 24 }
hh3cIPSecTunPolicyNum OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The sequence number of policy used by this IPSec tunnel."
::= { hh3cIPSecTunnelEntry 25 }
hh3cIPSecTunStatus 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."
::= { hh3cIPSecTunnelEntry 26 }
-- ===============================================
-- Begin the table of hh3cIPSecTunnelStatTable.
-- ===============================================
hh3cIPSecTunnelStatTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cIPSecTunnelStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IPSec Phase-2 Tunnel Statistics Table. "
::= { hh3cIPSecObjects 2 }
hh3cIPSecTunnelStatEntry OBJECT-TYPE
SYNTAX Hh3cIPSecTunnelStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about hh3cIPSecTunnelStatTable."
INDEX { hh3cIPSecTunIfIndex,hh3cIPSecTunEntryIndex,hh3cIPSecTunIndex }
::= { hh3cIPSecTunnelStatTable 1 }
Hh3cIPSecTunnelStatEntry ::=
SEQUENCE {
hh3cIPSecTunInOctets
Counter64,
hh3cIPSecTunInDecompOctets
Counter64,
hh3cIPSecTunInPkts
Counter64,
hh3cIPSecTunInDropPkts
Counter64,
hh3cIPSecTunInReplayDropPkts
Counter32,
hh3cIPSecTunInAuthFails
Counter32,
hh3cIPSecTunInDecryptFails
Counter32,
hh3cIPSecTunOutOctets
Counter64,
hh3cIPSecTunOutUncompOctets
Counter64,
hh3cIPSecTunOutPkts
Counter64,
hh3cIPSecTunOutDropPkts
Counter64,
hh3cIPSecTunOutEncryptFails
Counter32,
hh3cIPSecTunNoMemoryDropPkts
Counter32,
hh3cIPSecTunQueueFullDropPkts
Counter32,
hh3cIPSecTunInvalidLenDropPkts
Counter32,
hh3cIPSecTunTooLongDropPkts
Counter32,
hh3cIPSecTunInvalidSaDropPkts
Counter32
}
hh3cIPSecTunInOctets 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."
::= { hh3cIPSecTunnelStatEntry 1 }
hh3cIPSecTunInDecompOctets 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."
::= { hh3cIPSecTunnelStatEntry 2 }
hh3cIPSecTunInPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets received by this IPSec Phase-2 Tunnel."
::= { hh3cIPSecTunnelStatEntry 3 }
hh3cIPSecTunInDropPkts 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."
::= { hh3cIPSecTunnelStatEntry 4 }
hh3cIPSecTunInReplayDropPkts 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."
::= { hh3cIPSecTunnelStatEntry 5 }
hh3cIPSecTunInAuthFails 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."
::= { hh3cIPSecTunnelStatEntry 6 }
hh3cIPSecTunInDecryptFails 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."
::= { hh3cIPSecTunnelStatEntry 7 }
hh3cIPSecTunOutOctets 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."
::= { hh3cIPSecTunnelStatEntry 8 }
hh3cIPSecTunOutUncompOctets 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."
::= { hh3cIPSecTunnelStatEntry 9 }
hh3cIPSecTunOutPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets sent by this IPSec Phase-2 Tunnel."
::= { hh3cIPSecTunnelStatEntry 10 }
hh3cIPSecTunOutDropPkts 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."
::= { hh3cIPSecTunnelStatEntry 11 }
hh3cIPSecTunOutEncryptFails 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."
::= { hh3cIPSecTunnelStatEntry 12 }
hh3cIPSecTunNoMemoryDropPkts 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."
::= { hh3cIPSecTunnelStatEntry 13 }
hh3cIPSecTunQueueFullDropPkts 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."
::= { hh3cIPSecTunnelStatEntry 14 }
hh3cIPSecTunInvalidLenDropPkts 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."
::= { hh3cIPSecTunnelStatEntry 15 }
hh3cIPSecTunTooLongDropPkts 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."
::= { hh3cIPSecTunnelStatEntry 16 }
hh3cIPSecTunInvalidSaDropPkts 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."
::= { hh3cIPSecTunnelStatEntry 17 }
-- ===============================================
-- Begin the table of hh3cIPSecSaTable.
-- ===============================================
hh3cIPSecSaTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cIPSecSaEntry
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."
::= { hh3cIPSecObjects 3 }
hh3cIPSecSaEntry OBJECT-TYPE
SYNTAX Hh3cIPSecSaEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about hh3cIPSecSaTable."
INDEX { hh3cIPSecTunIfIndex,hh3cIPSecTunEntryIndex,hh3cIPSecTunIndex,hh3cIPSecSaIndex }
::= { hh3cIPSecSaTable 1 }
Hh3cIPSecSaEntry ::=
SEQUENCE {
hh3cIPSecSaIndex
Integer32,
hh3cIPSecSaDirection
INTEGER,
hh3cIPSecSaValue
Unsigned32,
hh3cIPSecSaProtocol
Hh3cSaProtocol,
hh3cIPSecSaEncryptAlgo
Hh3cEncryptAlgo,
hh3cIPSecSaAuthAlgo
Hh3cAuthAlgo,
hh3cIPSecSaStatus
INTEGER
}
hh3cIPSecSaIndex 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."
::= { hh3cIPSecSaEntry 1 }
hh3cIPSecSaDirection OBJECT-TYPE
SYNTAX INTEGER {
in(1),
out(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The direction of the SA."
::= { hh3cIPSecSaEntry 2 }
hh3cIPSecSaValue OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of the SPI."
::= { hh3cIPSecSaEntry 3 }
hh3cIPSecSaProtocol OBJECT-TYPE
SYNTAX Hh3cSaProtocol
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The security protocol of the SA."
::= { hh3cIPSecSaEntry 4 }
hh3cIPSecSaEncryptAlgo OBJECT-TYPE
SYNTAX Hh3cEncryptAlgo
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The encryption algorithm used by the security association
of the IPSec Phase-2 Tunnel."
::= { hh3cIPSecSaEntry 5 }
hh3cIPSecSaAuthAlgo OBJECT-TYPE
SYNTAX Hh3cAuthAlgo
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The authentication algorithm used by the SA."
::= { hh3cIPSecSaEntry 6 }
hh3cIPSecSaStatus OBJECT-TYPE
SYNTAX INTEGER {
active(1),
expiring(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of the SA."
::= { hh3cIPSecSaEntry 7 }
-- ===============================================
-- Begin the table of hh3cIPSecTrafficTable.
-- ===============================================
hh3cIPSecTrafficTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cIPSecTrafficEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IPSec Phase-2 Tunnel Traffic Table. "
::= { hh3cIPSecObjects 4 }
hh3cIPSecTrafficEntry OBJECT-TYPE
SYNTAX Hh3cIPSecTrafficEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about hh3cIPSecTrafficTable."
INDEX { hh3cIPSecTunIfIndex,hh3cIPSecTunEntryIndex,hh3cIPSecTunIndex }
::= { hh3cIPSecTrafficTable 1 }
Hh3cIPSecTrafficEntry ::=
SEQUENCE {
hh3cIPSecTrafficLocalType
Hh3cTrafficType,
hh3cIPSecTrafficLocalAddr1
IpAddress,
hh3cIPSecTrafficLocalAddr2
IpAddress,
hh3cIPSecTrafficLocalProtocol
Integer32,
hh3cIPSecTrafficLocalPort
Integer32,
hh3cIPSecTrafficRemoteType
Hh3cTrafficType,
hh3cIPSecTrafficRemoteAddr1
IpAddress,
hh3cIPSecTrafficRemoteAddr2
IpAddress,
hh3cIPSecTrafficRemoteProtocol
Integer32,
hh3cIPSecTrafficRemotePort
Integer32
}
hh3cIPSecTrafficLocalType OBJECT-TYPE
SYNTAX Hh3cTrafficType
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."
::= { hh3cIPSecTrafficEntry 1 }
hh3cIPSecTrafficLocalAddr1 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."
::= { hh3cIPSecTrafficEntry 2 }
hh3cIPSecTrafficLocalAddr2 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."
::= { hh3cIPSecTrafficEntry 3 }
hh3cIPSecTrafficLocalProtocol OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The protocol number of the local peer's traffic."
::= { hh3cIPSecTrafficEntry 4 }
hh3cIPSecTrafficLocalPort OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The port number of the local peer's traffic."
::= { hh3cIPSecTrafficEntry 5 }
hh3cIPSecTrafficRemoteType OBJECT-TYPE
SYNTAX Hh3cTrafficType
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."
::= { hh3cIPSecTrafficEntry 6 }
hh3cIPSecTrafficRemoteAddr1 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."
::= { hh3cIPSecTrafficEntry 7 }
hh3cIPSecTrafficRemoteAddr2 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."
::= { hh3cIPSecTrafficEntry 8 }
hh3cIPSecTrafficRemoteProtocol OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The protocol number of the remote peer's traffic."
::= { hh3cIPSecTrafficEntry 9 }
hh3cIPSecTrafficRemotePort OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The port number of the remote peer's traffic."
::= { hh3cIPSecTrafficEntry 10 }
-- ===============================================
-- Begin the hh3cIPSecGlobalStats.
-- ===============================================
hh3cIPSecGlobalStats OBJECT IDENTIFIER ::= { hh3cIPSecObjects 5 }
hh3cIPSecGlobalActiveTunnels OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of currently active IPSec Phase-2 Tunnels."
::= { hh3cIPSecGlobalStats 1 }
hh3cIPSecGlobalActiveSas OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of currently active or expiring IPSec Phase-2 SA."
::= { hh3cIPSecGlobalStats 2 }
hh3cIPSecGlobalInOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
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."
::= { hh3cIPSecGlobalStats 3 }
hh3cIPSecGlobalInDecompOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of decompressed octets received by all current
and previous IPSec Phase-2 Tunnels. This value is accumulated
AFTER the packet is decompressed."
::= { hh3cIPSecGlobalStats 4 }
hh3cIPSecGlobalInPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets received by all current and
previous IPSec Phase-2 Tunnels."
::= { hh3cIPSecGlobalStats 5 }
hh3cIPSecGlobalInDrops OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets dropped during receiving
process by all current and previous IPSec Phase-2
Tunnels. "
::= { hh3cIPSecGlobalStats 6 }
hh3cIPSecGlobalInReplayDrops 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 all
current and previous IPSec Phase-2 Tunnels."
::= { hh3cIPSecGlobalStats 7 }
hh3cIPSecGlobalInAuthFails OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of inbound authentication's which ended
in failure by all current and previous IPSec Phase-2 Tunnels."
::= { hh3cIPSecGlobalStats 8 }
hh3cIPSecGlobalInDecryptFails OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of inbound decryption's which ended in
failure by all current and previous IPSec Phase-2 Tunnels."
::= { hh3cIPSecGlobalStats 9 }
hh3cIPSecGlobalOutOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
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."
::= { hh3cIPSecGlobalStats 10 }
hh3cIPSecGlobalOutUncompOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of uncompressed octets sent by all current
and previous IPSec Phase-2 Tunnels. This value is accumulated
BEFORE the packet is compressed."
::= { hh3cIPSecGlobalStats 11 }
hh3cIPSecGlobalOutPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets sent by all current and previous
IPSec Phase-2 Tunnels."
::= { hh3cIPSecGlobalStats 12 }
hh3cIPSecGlobalOutDrops OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets dropped during sending process
by all current and previous IPSec Phase-2 Tunnels."
::= { hh3cIPSecGlobalStats 13 }
hh3cIPSecGlobalOutEncryptFails OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of outbound encryption's which ended in failure
by all current and previous IPSec Phase-2 Tunnels."
::= { hh3cIPSecGlobalStats 14 }
hh3cIPSecGlobalNoMemoryDropPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets dropped due to no enough memory
by all current and previous IPSec Phase-2 Tunnels."
::= { hh3cIPSecGlobalStats 15 }
hh3cIPSecGlobalNoFindSaDropPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets dropped due to not find SA by
all current and previous IPSec Phase-2 Tunnels."
::= { hh3cIPSecGlobalStats 16 }
hh3cIPSecGlobalQueueFullDropPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets dropped due to queue full by
all current and previous IPSec Phase-2 Tunnels."
::= { hh3cIPSecGlobalStats 17 }
hh3cIPSecGlobalInvalidLenDropPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets dropped due to invalid packet
length by all current and previous IPSec Phase-2 Tunnels."
::= { hh3cIPSecGlobalStats 18 }
hh3cIPSecGlobalTooLongDropPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets dropped due to too long packet by
all current and previous IPSec Phase-2 Tunnels."
::= { hh3cIPSecGlobalStats 19 }
hh3cIPSecGlobalInvalidSaDropPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets dropped due to invalid SA by all
current and previous IPSec Phase-2 Tunnels."
::= { hh3cIPSecGlobalStats 20 }
-- ===============================================
-- Begin the hh3cIPSecTrapObject.
-- ===============================================
hh3cIPSecTrapObject OBJECT IDENTIFIER ::= { hh3cIPSecObjects 6 }
hh3cIPSecPolicyName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The IPSec policy name with a trap."
::= { hh3cIPSecTrapObject 1 }
hh3cIPSecPolicySeqNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The IPSec policy sequence number with a trap."
::= { hh3cIPSecTrapObject 2 }
hh3cIPSecPolicySize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The number of IPSec policies with a trap."
::= { hh3cIPSecTrapObject 3 }
hh3cIPSecSpiValue OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The SPI value associated with a trap."
::= { hh3cIPSecTrapObject 4 }
-- ===============================================
-- Begin the hh3cIPSecTrapCntl.
-- ===============================================
hh3cIPSecTrapCntl OBJECT IDENTIFIER ::= { hh3cIPSecObjects 7 }
hh3cIPSecTrapGlobalCntl OBJECT-TYPE
SYNTAX Hh3cTrapStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether all IPSec traps should be generated."
::= { hh3cIPSecTrapCntl 1 }
hh3cIPSecTunnelStartTrapCntl OBJECT-TYPE
SYNTAX Hh3cTrapStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether hh3cIPSecTunnelStart traps should be generated."
::= { hh3cIPSecTrapCntl 2 }
hh3cIPSecTunnelStopTrapCntl OBJECT-TYPE
SYNTAX Hh3cTrapStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether hh3cIPSecTunnelStop traps should be generated."
::= { hh3cIPSecTrapCntl 3 }
hh3cIPSecNoSaTrapCntl OBJECT-TYPE
SYNTAX Hh3cTrapStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether hh3cIPSecNoSaFailure traps should be generated."
::= { hh3cIPSecTrapCntl 4 }
hh3cIPSecAuthFailureTrapCntl OBJECT-TYPE
SYNTAX Hh3cTrapStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether hh3cIPSecAuthFailFailure traps should be generated."
::= { hh3cIPSecTrapCntl 5 }
hh3cIPSecEncryFailureTrapCntl OBJECT-TYPE
SYNTAX Hh3cTrapStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether hh3cIPSecEncryFailFailure traps should be generated."
::= { hh3cIPSecTrapCntl 6 }
hh3cIPSecDecryFailureTrapCntl OBJECT-TYPE
SYNTAX Hh3cTrapStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether hh3cIPSecDecryFailFailure traps should be generated."
::= { hh3cIPSecTrapCntl 7 }
hh3cIPSecInvalidSaTrapCntl OBJECT-TYPE
SYNTAX Hh3cTrapStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether hh3cIPSec Invalid Sa Failure traps should be generated."
::= { hh3cIPSecTrapCntl 8 }
hh3cIPSecPolicyAddTrapCntl OBJECT-TYPE
SYNTAX Hh3cTrapStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether hh3cIPSecPolicyAdd traps should be generated."
::= { hh3cIPSecTrapCntl 9 }
hh3cIPSecPolicyDelTrapCntl OBJECT-TYPE
SYNTAX Hh3cTrapStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether hh3cIPSecPolicyDel traps should be generated."
::= { hh3cIPSecTrapCntl 10 }
hh3cIPSecPolicyAttachTrapCntl OBJECT-TYPE
SYNTAX Hh3cTrapStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether hh3cIPSecPolicyAttach traps should be generated."
::= { hh3cIPSecTrapCntl 11 }
hh3cIPSecPolicyDetachTrapCntl OBJECT-TYPE
SYNTAX Hh3cTrapStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether hh3cIPSecPolicyDetach traps should be generated."
::= { hh3cIPSecTrapCntl 12 }
-- ===============================================
-- definition of traps.
-- ===============================================
hh3cIPSecTrap OBJECT IDENTIFIER ::= { hh3cIPSecObjects 8 }
hh3cIPSecNotifications OBJECT IDENTIFIER ::= { hh3cIPSecTrap 1 }
hh3cIPSecTunnelStart NOTIFICATION-TYPE
OBJECTS { hh3cIPSecTunLocalAddr,
hh3cIPSecTunRemoteAddr,
hh3cIPSecTunLifeTime,
hh3cIPSecTunLifeSize
}
STATUS current
DESCRIPTION
"This notification is generated when an IPSec Phase-2
Tunnel is created."
::= { hh3cIPSecNotifications 1 }
hh3cIPSecTunnelStop NOTIFICATION-TYPE
OBJECTS { hh3cIPSecTunLocalAddr,
hh3cIPSecTunRemoteAddr,
hh3cIPSecTunActiveTime
}
STATUS current
DESCRIPTION
"This notification is generated when an IPSec Phase-2
Tunnel is deleted."
::= { hh3cIPSecNotifications 2 }
hh3cIPSecNoSaFailure NOTIFICATION-TYPE
OBJECTS { hh3cIPSecTunLocalAddr,
hh3cIPSecTunRemoteAddr
}
STATUS current
DESCRIPTION
"This notification is generated when an IPSec Phase-2
non-existent SA error occurs."
::= { hh3cIPSecNotifications 3 }
hh3cIPSecAuthFailFailure NOTIFICATION-TYPE
OBJECTS { hh3cIPSecTunLocalAddr,
hh3cIPSecTunRemoteAddr
}
STATUS current
DESCRIPTION
"This notification is generated when the IPSec phase-2
authentication failure occurs."
::= { hh3cIPSecNotifications 4 }
hh3cIPSecEncryFailFailure NOTIFICATION-TYPE
OBJECTS { hh3cIPSecTunLocalAddr,
hh3cIPSecTunRemoteAddr
}
STATUS current
DESCRIPTION
"This notification is generated when the IPSec phase-2
tunnel has an encrypting failure."
::= { hh3cIPSecNotifications 5 }
hh3cIPSecDecryFailFailure NOTIFICATION-TYPE
OBJECTS { hh3cIPSecTunLocalAddr,
hh3cIPSecTunRemoteAddr
}
STATUS current
DESCRIPTION
"This notification is generated when the IPSec phase-2
tunnel has a decrypting failure."
::= { hh3cIPSecNotifications 6 }
hh3cIPSecInvalidSaFailure NOTIFICATION-TYPE
OBJECTS { hh3cIPSecTunLocalAddr,
hh3cIPSecTunRemoteAddr,
hh3cIPSecSpiValue
}
STATUS current
DESCRIPTION
"This notification is generated when the IPSec phase-2
invalid SA failure occurs."
::= { hh3cIPSecNotifications 7 }
hh3cIPSecPolicyAdd NOTIFICATION-TYPE
OBJECTS { hh3cIPSecPolicyName,
hh3cIPSecPolicySeqNum,
hh3cIPSecPolicySize
}
STATUS current
DESCRIPTION
"This notification is generated when an IPSec policy is added."
::= { hh3cIPSecNotifications 8 }
hh3cIPSecPolicyDel NOTIFICATION-TYPE
OBJECTS { hh3cIPSecPolicyName,
hh3cIPSecPolicySeqNum,
hh3cIPSecPolicySize
}
STATUS current
DESCRIPTION
"This notification is generated when an IPSec policy is deleted."
::= { hh3cIPSecNotifications 9 }
hh3cIPSecPolicyAttach NOTIFICATION-TYPE
OBJECTS { hh3cIPSecPolicyName,
hh3cIPSecPolicySize,
ifIndex
}
STATUS current
DESCRIPTION
"This notification is generated when an IPSec policy is attached
with one interface."
::= { hh3cIPSecNotifications 10 }
hh3cIPSecPolicyDetach NOTIFICATION-TYPE
OBJECTS { hh3cIPSecPolicyName,
hh3cIPSecPolicySize,
ifIndex
}
STATUS current
DESCRIPTION
"This notification is generated when an IPSec policy is detached
with one interface."
::= { hh3cIPSecNotifications 11 }
-- ===============================================
-- Conformance Information
-- ===============================================
hh3cIPSecConformance OBJECT IDENTIFIER
::= { hh3cIPSecMonitor 2 }
hh3cIPSecCompliances OBJECT IDENTIFIER
::= { hh3cIPSecConformance 1 }
hh3cIPSecGroups OBJECT IDENTIFIER
::= { hh3cIPSecConformance 2 }
-- ===============================================
-- Compliance Statements
-- ===============================================
hh3cIPSecCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
" "
MODULE -- this module
MANDATORY-GROUPS
{
hh3cIPSecTunnelTableGroup,
hh3cIPSecTunnelStatGroup,
hh3cIPSecSaGroup,
hh3cIPSecTrafficTableGroup,
hh3cIPSecGlobalStatsGroup,
hh3cIPSecTrapObjectGroup,
hh3cIPSecTrapCntlGroup,
hh3cIPSecTrapGroup
}
::= { hh3cIPSecCompliances 1 }
hh3cIPSecTunnelTableGroup OBJECT-GROUP
OBJECTS {
hh3cIPSecTunIKETunnelIndex,
hh3cIPSecTunLocalAddr,
hh3cIPSecTunRemoteAddr,
hh3cIPSecTunKeyType,
hh3cIPSecTunEncapMode,
hh3cIPSecTunInitiator,
hh3cIPSecTunLifeSize,
hh3cIPSecTunLifeTime,
hh3cIPSecTunRemainTime,
hh3cIPSecTunActiveTime,
hh3cIPSecTunRemainSize,
hh3cIPSecTunTotalRefreshes,
hh3cIPSecTunCurrentSaInstances,
hh3cIPSecTunInSaEncryptAlgo,
hh3cIPSecTunInSaAhAuthAlgo,
hh3cIPSecTunInSaEspAuthAlgo,
hh3cIPSecTunDiffHellmanGrp,
hh3cIPSecTunOutSaEncryptAlgo,
hh3cIPSecTunOutSaAhAuthAlgo,
hh3cIPSecTunOutSaEspAuthAlgo,
hh3cIPSecTunPolicyName,
hh3cIPSecTunPolicyNum,
hh3cIPSecTunStatus
}
STATUS current
DESCRIPTION
"The group contains the IPSec tunnel's property information."
::= { hh3cIPSecGroups 1 }
hh3cIPSecTunnelStatGroup OBJECT-GROUP
OBJECTS {
hh3cIPSecTunInOctets,
hh3cIPSecTunInDecompOctets,
hh3cIPSecTunInPkts,
hh3cIPSecTunInDropPkts,
hh3cIPSecTunInReplayDropPkts,
hh3cIPSecTunInAuthFails,
hh3cIPSecTunInDecryptFails,
hh3cIPSecTunOutOctets,
hh3cIPSecTunOutUncompOctets,
hh3cIPSecTunOutPkts,
hh3cIPSecTunOutDropPkts,
hh3cIPSecTunOutEncryptFails,
hh3cIPSecTunNoMemoryDropPkts,
hh3cIPSecTunQueueFullDropPkts,
hh3cIPSecTunInvalidLenDropPkts,
hh3cIPSecTunTooLongDropPkts,
hh3cIPSecTunInvalidSaDropPkts
}
STATUS current
DESCRIPTION
"The group contains the IPSec tunnel's statistic information."
::= { hh3cIPSecGroups 2 }
hh3cIPSecSaGroup OBJECT-GROUP
OBJECTS {
hh3cIPSecSaDirection,
hh3cIPSecSaValue,
hh3cIPSecSaProtocol,
hh3cIPSecSaEncryptAlgo,
hh3cIPSecSaAuthAlgo,
hh3cIPSecSaStatus
}
STATUS current
DESCRIPTION
"The group contains the SA's property information."
::= { hh3cIPSecGroups 3 }
hh3cIPSecTrafficTableGroup OBJECT-GROUP
OBJECTS {
hh3cIPSecTrafficLocalType,
hh3cIPSecTrafficLocalAddr1,
hh3cIPSecTrafficLocalAddr2,
hh3cIPSecTrafficLocalProtocol,
hh3cIPSecTrafficLocalPort,
hh3cIPSecTrafficRemoteType,
hh3cIPSecTrafficRemoteAddr1,
hh3cIPSecTrafficRemoteAddr2,
hh3cIPSecTrafficRemoteProtocol,
hh3cIPSecTrafficRemotePort
}
STATUS current
DESCRIPTION
"The group contains the property information of the
data flow protected by IPSec tunnel."
::= { hh3cIPSecGroups 4 }
hh3cIPSecGlobalStatsGroup OBJECT-GROUP
OBJECTS {
hh3cIPSecGlobalActiveTunnels,
hh3cIPSecGlobalActiveSas,
hh3cIPSecGlobalInOctets,
hh3cIPSecGlobalInDecompOctets,
hh3cIPSecGlobalInPkts,
hh3cIPSecGlobalInDrops,
hh3cIPSecGlobalInReplayDrops,
hh3cIPSecGlobalInAuthFails,
hh3cIPSecGlobalInDecryptFails,
hh3cIPSecGlobalOutOctets,
hh3cIPSecGlobalOutUncompOctets,
hh3cIPSecGlobalOutPkts,
hh3cIPSecGlobalOutDrops,
hh3cIPSecGlobalOutEncryptFails,
hh3cIPSecGlobalNoMemoryDropPkts,
hh3cIPSecGlobalNoFindSaDropPkts,
hh3cIPSecGlobalQueueFullDropPkts,
hh3cIPSecGlobalInvalidLenDropPkts,
hh3cIPSecGlobalTooLongDropPkts,
hh3cIPSecGlobalInvalidSaDropPkts
}
STATUS current
DESCRIPTION
"The group contains all of the IPSec tunnel's statistic
information."
::= { hh3cIPSecGroups 5 }
hh3cIPSecTrapObjectGroup OBJECT-GROUP
OBJECTS {
hh3cIPSecPolicyName,
hh3cIPSecPolicySeqNum,
hh3cIPSecPolicySize,
hh3cIPSecSpiValue
}
STATUS current
DESCRIPTION
"The group contains all of trap objects of IPSec tunnels."
::= { hh3cIPSecGroups 6 }
hh3cIPSecTrapCntlGroup OBJECT-GROUP
OBJECTS {
hh3cIPSecTrapGlobalCntl,
hh3cIPSecTunnelStartTrapCntl,
hh3cIPSecTunnelStopTrapCntl,
hh3cIPSecNoSaTrapCntl,
hh3cIPSecAuthFailureTrapCntl,
hh3cIPSecEncryFailureTrapCntl,
hh3cIPSecDecryFailureTrapCntl,
hh3cIPSecInvalidSaTrapCntl,
hh3cIPSecPolicyAddTrapCntl,
hh3cIPSecPolicyDelTrapCntl,
hh3cIPSecPolicyAttachTrapCntl,
hh3cIPSecPolicyDetachTrapCntl
}
STATUS current
DESCRIPTION
"The group contains all of trap switches of IPSec tunnels."
::= { hh3cIPSecGroups 7 }
hh3cIPSecTrapGroup NOTIFICATION-GROUP
NOTIFICATIONS {
hh3cIPSecTunnelStart,
hh3cIPSecTunnelStop,
hh3cIPSecNoSaFailure,
hh3cIPSecAuthFailFailure,
hh3cIPSecEncryFailFailure,
hh3cIPSecDecryFailFailure,
hh3cIPSecInvalidSaFailure,
hh3cIPSecPolicyAdd,
hh3cIPSecPolicyDel,
hh3cIPSecPolicyAttach,
hh3cIPSecPolicyDetach
}
STATUS current
DESCRIPTION
"The group contains all of trap of IPSec tunnels."
::= { hh3cIPSecGroups 8 }
END
|