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
|
-- ============================================================================
-- Copyright (c) 2004-2014 New H3C Tech. Co., Ltd. All rights reserved.
--
-- Description: This MIB is used for configuration of OBJP(object policy).
-- Reference:
-- Version: V1.0
-- History:
-- V1.0 created by gaoyu.
-- ============================================================================
HH3C-OBJP-MIB DEFINITIONS ::= BEGIN
IMPORTS
hh3cCommon
FROM HH3C-OID-MIB
OBJECT-TYPE, MODULE-IDENTITY,
Unsigned32, Counter64
FROM SNMPv2-SMI;
--
-- Node definitions
--
hh3cObjp MODULE-IDENTITY
LAST-UPDATED "201403101536Z" -- Mar 10, 2014 at 15:36 GMT
ORGANIZATION
"New H3C Technologies Co., Ltd."
CONTACT-INFO
"Platform Team New H3C Technologies Co., Ltd.
Hai-Dian District Beijing P.R. China
http://www.h3c.com
Zip:100085
"
DESCRIPTION
"Object-policy management information base for managing devices
that support object policy.
"
REVISION "201403101536Z" -- Mar 10, 2014 at 15:36 GMT
DESCRIPTION
"The initial revision of this MIB module."
::= { hh3cCommon 155 }
--
-- Nodes of hh3cObjpZonePairObjects
--
hh3cObjpZonePairObjects OBJECT IDENTIFIER ::= { hh3cObjp 1 }
--
-- Nodes of hh3cObjpZonePairRunningInfoTable
--
hh3cObjpZonePairRunningInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cObjpZonePairRunningInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Object policy of zone pair running information base."
::= { hh3cObjpZonePairObjects 1 }
hh3cObjpZonePairRunningInfoEntry OBJECT-TYPE
SYNTAX Hh3cObjpZonePairRunningInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Object policy of zone pair running information entry."
INDEX
{
hh3cObjpZonePairSrcZone,
hh3cObjpZonePairDstZone,
hh3cObjpZonePairIPVersion,
hh3cObjpZonePairRuleID
}
::= { hh3cObjpZonePairRunningInfoTable 1 }
Hh3cObjpZonePairRunningInfoEntry ::=
SEQUENCE
{
hh3cObjpZonePairSrcZone
OCTET STRING,
hh3cObjpZonePairDstZone
OCTET STRING,
hh3cObjpZonePairIPVersion
INTEGER,
hh3cObjpZonePairRuleID
Unsigned32,
hh3cObjpZonePairMatchPacketCount
Counter64,
hh3cObjpZonePairLastMatchTime
Unsigned32
}
hh3cObjpZonePairSrcZone OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1..31))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Name of the source security zone."
::= { hh3cObjpZonePairRunningInfoEntry 1 }
hh3cObjpZonePairDstZone OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1..31))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Name of the destination security zone."
::= { hh3cObjpZonePairRunningInfoEntry 2 }
hh3cObjpZonePairIPVersion OBJECT-TYPE
SYNTAX INTEGER
{
ipv4(1),
ipv6(2)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"IP protocol version."
::= { hh3cObjpZonePairRunningInfoEntry 3 }
hh3cObjpZonePairRuleID OBJECT-TYPE
SYNTAX Unsigned32 (0..65534)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Rule ID of object policy."
::= { hh3cObjpZonePairRunningInfoEntry 4 }
hh3cObjpZonePairMatchPacketCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets matching the rule."
::= { hh3cObjpZonePairRunningInfoEntry 5 }
hh3cObjpZonePairLastMatchTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Interval in seconds between the last match and 1970/1/1 00:00:00."
::= { hh3cObjpZonePairRunningInfoEntry 6 }
END
|