summaryrefslogtreecommitdiff
path: root/MIBS/comware/HH3C-NVGRE-MIB
blob: f078abe685f9bfe6a3b4c02d29930c02798f5029 (plain)
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
-- =============================================================================
-- Copyright (c) 2004-2014 New H3C Tech. Co., Ltd. All rights reserved.
--
-- Description: The NVGRE(Network Virtualization using
--                        Generic Routing Encapsulation) MIB
-- Reference:
-- Version: V1.0
-- History:
--   V1.0 2014-03-11 Initial version created by Neng Yan
-- =============================================================================
HH3C-NVGRE-MIB DEFINITIONS ::= BEGIN
IMPORTS
        RowStatus, MacAddress
    FROM SNMPv2-TC
        MODULE-IDENTITY,
        OBJECT-TYPE,
        Unsigned32, Counter64
    FROM SNMPv2-SMI
        hh3cCommon
    FROM HH3C-OID-MIB;

-- =============================================================================
-- module identity part
-- =============================================================================
hh3cNvgre MODULE-IDENTITY
    LAST-UPDATED
        "201403110900Z"        -- Mar 11, 2014 at 09:00 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
        "The NVGRE MIB."
    REVISION
        "201403110900Z"   -- Mar 11, 2014 at 09:00 GMT
    DESCRIPTION
        "Initial version."
    ::= { hh3cCommon 156 }

-- =============================================================================
-- object definition begin
-- =============================================================================

hh3cNvgreObjects      OBJECT IDENTIFIER ::= { hh3cNvgre 1 }

hh3cNvgreScalarGroup OBJECT IDENTIFIER ::= { hh3cNvgreObjects 1 }

hh3cNvgreNextNvgreID    OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Next available NVGRE ID(identifier), in the range of 4096 to 16777214.
        The invalid value 4294967295 indicates that no ID can be set."
    ::= { hh3cNvgreScalarGroup 1 }

hh3cNvgreConfigured    OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Number of currently configured NVGREs."
    ::= { hh3cNvgreScalarGroup 2 }

-- =============================================================================
-- hh3cNvgreTable Definition
-- =============================================================================
hh3cNvgreTable  OBJECT-TYPE
    SYNTAX      SEQUENCE OF Hh3cNvgreEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "A table for NVGRE parameters."
    ::= { hh3cNvgreObjects 2 }

hh3cNvgreEntry  OBJECT-TYPE
    SYNTAX      Hh3cNvgreEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "Each entry represents the parameters of an NVGRE."
    INDEX
    {
        hh3cNvgreID
    }
    ::= { hh3cNvgreTable 1 }

Hh3cNvgreEntry ::=
    SEQUENCE
    {
        hh3cNvgreID                 Unsigned32,
        hh3cNvgreVsiIndex           Unsigned32,
        hh3cNvgreRemoteMacCount     Unsigned32,
        hh3cNvgreRowStatus          RowStatus
    }

hh3cNvgreID    OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The NVGRE ID, in the range of 4096 to 16777214."
    ::= { hh3cNvgreEntry 1 }

hh3cNvgreVsiIndex    OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "VSI index.  A unique index for the conceptual row identifying
         a VSI(Virtual Switch Instance) in the hh3cVsiTable."
    ::= { hh3cNvgreEntry 2 }

hh3cNvgreRemoteMacCount    OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "Remote MAC(Media Access Control) address count of this NVGRE."
    ::= { hh3cNvgreEntry 3 }

hh3cNvgreRowStatus     OBJECT-TYPE
    SYNTAX      RowStatus
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Operation status of this table entry.  When a row in this
         table is in active state, no objects in that row
         can be modified by the agent."
    ::= { hh3cNvgreEntry 4 }

-- =============================================================================
-- End of hh3cNvgreTable Definition
-- =============================================================================

-- =============================================================================
-- hh3cNvgreTunnelTable Definition
-- =============================================================================
hh3cNvgreTunnelTable  OBJECT-TYPE
    SYNTAX      SEQUENCE OF Hh3cNvgreTunnelEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "A table for NVGRE tunnel parameters."
    ::= { hh3cNvgreObjects 3 }

hh3cNvgreTunnelEntry  OBJECT-TYPE
    SYNTAX      Hh3cNvgreTunnelEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "Each entry represents the parameters of an NVGRE tunnel."
    INDEX
    {
        hh3cNvgreID,
        hh3cNvgreTunnelID
    }
    ::= { hh3cNvgreTunnelTable 1 }

Hh3cNvgreTunnelEntry ::=
    SEQUENCE
    {
        hh3cNvgreTunnelID             Unsigned32,
        hh3cNvgreTunnelRowStatus      RowStatus,
        hh3cNvgreTunnelOctets         Counter64,
        hh3cNvgreTunnelPackets        Counter64
    }

hh3cNvgreTunnelID    OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "A unique index for tunnel."
    ::= { hh3cNvgreTunnelEntry 1 }

hh3cNvgreTunnelRowStatus     OBJECT-TYPE
    SYNTAX      RowStatus
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Operation status of this table entry."
    ::= { hh3cNvgreTunnelEntry 2 }

hh3cNvgreTunnelOctets   OBJECT-TYPE
    SYNTAX       Counter64
    MAX-ACCESS   read-only
    STATUS       current
    DESCRIPTION
        "The number of octets that have been forwarded over the tunnel."
    ::= { hh3cNvgreTunnelEntry 3 }

hh3cNvgreTunnelPackets  OBJECT-TYPE
    SYNTAX       Counter64
    MAX-ACCESS   read-only
    STATUS       current
    DESCRIPTION
        "The number of packets that have been forwarded over the tunnel."
    ::= { hh3cNvgreTunnelEntry 4 }

-- =============================================================================
-- End of hh3cNvgreTunnelTable Definition
-- =============================================================================

-- =============================================================================
-- hh3cNvgreTunnelBoundTable Definition
-- =============================================================================
hh3cNvgreTunnelBoundTable  OBJECT-TYPE
    SYNTAX      SEQUENCE OF Hh3cNvgreTunnelBoundEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "A table for the number of NVGREs to which the tunnel is bound."
    ::= { hh3cNvgreObjects 4 }

hh3cNvgreTunnelBoundEntry  OBJECT-TYPE
    SYNTAX      Hh3cNvgreTunnelBoundEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "An entry represents the number of NVGREs to which a tunnel is bound."
    INDEX
    {
        hh3cNvgreTunnelID
    }
    ::= { hh3cNvgreTunnelBoundTable 1 }

Hh3cNvgreTunnelBoundEntry ::=
    SEQUENCE
    {
        hh3cNvgreTunnelBoundNvgreNum  Unsigned32
    }

hh3cNvgreTunnelBoundNvgreNum    OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The number of NVGREs to which this tunnel is bound."
    ::= { hh3cNvgreTunnelBoundEntry 1 }

-- =============================================================================
-- End of hh3cNvgreTunnelBoundTable Definition
-- =============================================================================

-- =============================================================================
-- hh3cNvgreMacTable Definition
-- =============================================================================
hh3cNvgreMacTable  OBJECT-TYPE
    SYNTAX      SEQUENCE OF Hh3cNvgreMacEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "A table for NVGRE remote MAC addresses."
    ::= { hh3cNvgreObjects 5 }

hh3cNvgreMacEntry  OBJECT-TYPE
    SYNTAX      Hh3cNvgreMacEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "An NVGRE remote MAC address."
    INDEX
    {
        hh3cNvgreVsiIndex,
        hh3cNvgreMacAddr
    }
    ::= { hh3cNvgreMacTable 1 }

Hh3cNvgreMacEntry ::=
    SEQUENCE
    {
        hh3cNvgreMacAddr            MacAddress,
        hh3cNvgreMacTunnelID        Unsigned32,
        hh3cNvgreMacType            INTEGER
    }

hh3cNvgreMacAddr    OBJECT-TYPE
    SYNTAX      MacAddress
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "MAC address."
    ::= { hh3cNvgreMacEntry 1 }

hh3cNvgreMacTunnelID    OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "A unique index for tunnel."
    ::= { hh3cNvgreMacEntry 2 }

hh3cNvgreMacType    OBJECT-TYPE
    SYNTAX      INTEGER{
                 selfLearned (1),
                 staticConfigured (2),
                 protocolLearned (3)
                 }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The type of an MAC address."
    ::= { hh3cNvgreMacEntry 3 }

-- =============================================================================
-- End of hh3cNvgreMacTable Definition
-- =============================================================================

-- =============================================================================
-- hh3cNvgreStaticMacTable Definition
-- =============================================================================
hh3cNvgreStaticMacTable  OBJECT-TYPE
    SYNTAX      SEQUENCE OF Hh3cNvgreStaticMacEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "A table for NVGRE static remote MAC addresses."
    ::= { hh3cNvgreObjects 6 }

hh3cNvgreStaticMacEntry  OBJECT-TYPE
    SYNTAX      Hh3cNvgreStaticMacEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "An NVGRE static MAC address."
    INDEX
    {
        hh3cNvgreVsiIndex,
        hh3cNvgreStaticMacAddr
    }
    ::= { hh3cNvgreStaticMacTable 1 }

Hh3cNvgreStaticMacEntry ::=
    SEQUENCE
    {
        hh3cNvgreStaticMacAddr         MacAddress,
        hh3cNvgreStaticMacTunnelID     Unsigned32,
        hh3cNvgreStaticMacRowStatus    RowStatus
    }

hh3cNvgreStaticMacAddr    OBJECT-TYPE
    SYNTAX      MacAddress
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "Static MAC address."
    ::= { hh3cNvgreStaticMacEntry 1 }

hh3cNvgreStaticMacTunnelID    OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "A unique index for tunnel."
    ::= { hh3cNvgreStaticMacEntry 2 }

hh3cNvgreStaticMacRowStatus     OBJECT-TYPE
    SYNTAX      RowStatus
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Operation status of this table entry.  When a row in this
         table is in active state, no objects in that row
         can be modified by the agent."
    ::= { hh3cNvgreStaticMacEntry 3 }

-- =============================================================================
-- End of hh3cNvgreStaticMacTable Definition
-- =============================================================================

END