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
|
-- =================================================================
-- Copyright (C) 2003 by HUAWEI TECHNOLOGIES. All rights reserved.
--
-- Description:HUAWEI-BRAS-GRE-MIB DEFINITIONS
-- Reference:
-- Version: V1.0
-- History:
--
-- =================================================================
HUAWEI-BRAS-GRE-MIB DEFINITIONS ::= BEGIN
IMPORTS
hwBRASMib
FROM HUAWEI-MIB
RowStatus
FROM SNMPv2-TC;
hwGRE MODULE-IDENTITY
LAST-UPDATED "200508101200Z"
ORGANIZATION
"HAUWEI MIB Standard community.
"
CONTACT-INFO
"Floor 5, Block 4, R&D Building,
Huawei Longgang Production Base,
Shenzhen, P.R.C.
http://www.huawei.com
Zip:518057
"
DESCRIPTION
"V1.00.
The GRE mib is for all datacomm product.
"
::= { hwBRASMib 13 }
hwhwGREMibObjects OBJECT IDENTIFIER ::= { hwGRE 1 }
hwQueryGreGroupTable OBJECT-TYPE
SYNTAX SEQUENCE OF HWQueryGreGroupEntry
ACCESS not-accessible
STATUS current
::= { hwhwGREMibObjects 1 }
hwQueryGreGroupEntry OBJECT-TYPE
SYNTAX HWQueryGreGroupEntry
ACCESS not-accessible
STATUS current
DESCRIPTION "An entry of hwQueryGreGroupTable."
INDEX { hwQueryGreGroupName }
::= { hwQueryGreGroupTable 1 }
HWQueryGreGroupEntry ::=
SEQUENCE {
hwQueryGreGroupName
OCTET STRING,
hwQueryGreGroupCounter
Integer32,
hwQueryGreGroupActiveTunnel
OCTET STRING,
hwQueryGreGroupTunnel1Name
OCTET STRING,
hwQueryGreGroupTunnel2Name
OCTET STRING,
hwQueryGreGroupTunnel3Name
OCTET STRING,
hwQueryGreGroupTunnel4Name
OCTET STRING,
hwQueryGreGroupTunnel1Preference
Integer32,
hwQueryGreGroupTunnel2Preference
Integer32,
hwQueryGreGroupTunnel3Preference
Integer32,
hwQueryGreGroupTunnel4Preference
Integer32
}
hwQueryGreGroupName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..32))
ACCESS read-only
STATUS current
DESCRIPTION "The name of the gre-group."
::= { hwQueryGreGroupEntry 1 }
hwQueryGreGroupCounter OBJECT-TYPE
SYNTAX Integer32(0..4)
ACCESS read-only
STATUS current
DESCRIPTION "The number of interfaces that the gre-group bound."
::= { hwQueryGreGroupEntry 2 }
hwQueryGreGroupActiveTunnel OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..64))
ACCESS read-only
STATUS current
DESCRIPTION "The name of the active tunnel of the gre-group."
::= { hwQueryGreGroupEntry 3 }
hwQueryGreGroupTunnel1Name OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..64))
ACCESS read-only
STATUS current
DESCRIPTION "The name of the first tunnel of the gre-group."
::= { hwQueryGreGroupEntry 4 }
hwQueryGreGroupTunnel2Name OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..64))
ACCESS read-only
STATUS current
DESCRIPTION "The name of the second tunnel of the gre-group."
::= { hwQueryGreGroupEntry 5 }
hwQueryGreGroupTunnel3Name OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..64))
ACCESS read-only
STATUS current
DESCRIPTION "The name of the third tunnel of the gre-group."
::= { hwQueryGreGroupEntry 6}
hwQueryGreGroupTunnel4Name OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..64))
ACCESS read-only
STATUS current
DESCRIPTION "The name of the fourth tunnel of the gre-group."
::= { hwQueryGreGroupEntry 7 }
hwQueryGreGroupTunnel1Preference OBJECT-TYPE
SYNTAX Integer32(0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The preference of the first tunnel."
::= { hwQueryGreGroupEntry 8 }
hwQueryGreGroupTunnel2Preference OBJECT-TYPE
SYNTAX Integer32(0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The preference of the second tunnel."
::= { hwQueryGreGroupEntry 9 }
hwQueryGreGroupTunnel3Preference OBJECT-TYPE
SYNTAX Integer32(0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The preference of the third tunnel."
::= { hwQueryGreGroupEntry 10 }
hwQueryGreGroupTunnel4Preference OBJECT-TYPE
SYNTAX Integer32(0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The preference of the fourth tunnel."
::= { hwQueryGreGroupEntry 11 }
-- ============== conformance information ==============
hwQueryGreConformance OBJECT IDENTIFIER ::= { hwGRE 2 }
hwQueryGreCompliances OBJECT IDENTIFIER ::= { hwQueryGreConformance 1 }
hwQueryGreCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for systems supporting
the this module."
MODULE -- this module
MANDATORY-GROUPS {hwQueryGrePolicyGroup}
::= { hwQueryGreCompliances 1 }
-- ============== groups ==============
hwQueryGreGroups OBJECT IDENTIFIER ::= { hwQueryGreConformance 2 }
hwQueryGrePolicyGroup OBJECT-GROUP
OBJECTS { hwQueryGreGroupName, hwQueryGreGroupCounter, hwQueryGreGroupActiveTunnel,
hwQueryGreGroupTunnel1Name, hwQueryGreGroupTunnel2Name, hwQueryGreGroupTunnel3Name,
hwQueryGreGroupTunnel4Name, hwQueryGreGroupTunnel1Preference, hwQueryGreGroupTunnel2Preference,
hwQueryGreGroupTunnel3Preference, hwQueryGreGroupTunnel4Preference}
STATUS current
DESCRIPTION
"The query gre policy group."
::= { hwQueryGreGroups 1 }
-- ============== conformance information define end ==============
END
|