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
|
-- =================================================================
-- Copyright (c) 2004-2020 New H3C Tech. Co., Ltd. All rights reserved.
--
-- Description: The MIB of data and configuration on control plane.
-- Reference:
-- Version: V1.0
-- History:
-- V1.0 Created by huanglei
-- Initial version 2020-09-10
-- =================================================================
HH3C-CUPM-CP-MIB DEFINITIONS ::= BEGIN
IMPORTS
hh3cCommon
FROM HH3C-OID-MIB
InetAddressType, InetAddress
FROM INET-ADDRESS-MIB
OBJECT-TYPE, MODULE-IDENTITY, NOTIFICATION-TYPE,
Integer32
FROM SNMPv2-SMI
RowStatus
FROM SNMPv2-TC;
hh3cCupmCp MODULE-IDENTITY
LAST-UPDATED "202009110000Z"
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
"This MIB provides config information of CP(Control Plane)."
REVISION "202009110000Z"
DESCRIPTION
"The initial revision of this MIB module."
::= { hh3cCommon 194 }
--
-- Node definitions
--
-- Traps are defined below.
hh3cCupmCpNotifications OBJECT IDENTIFIER ::= { hh3cCupmCp 0 }
hh3cCupmCpProtoTnlUp NOTIFICATION-TYPE
OBJECTS
{
hh3cCupmCpVbUpID,
hh3cCupmCpVbVxlanID,
hh3cCupmCpVbSrcAddrType,
hh3cCupmCpVbSrcAddr,
hh3cCupmCpVbDestAddrType,
hh3cCupmCpVbDestAddr,
hh3cCupmCpVbVpnName,
hh3cCupmCpVbVxlanState
}
STATUS current
DESCRIPTION
"The notification is generated when
CP device connects to VXLAN tunnel."
::= { hh3cCupmCpNotifications 1 }
hh3cCupmCpProtoTnlDown NOTIFICATION-TYPE
OBJECTS
{
hh3cCupmCpVbUpID,
hh3cCupmCpVbVxlanID,
hh3cCupmCpVbSrcAddrType,
hh3cCupmCpVbSrcAddr,
hh3cCupmCpVbDestAddrType,
hh3cCupmCpVbDestAddr,
hh3cCupmCpVbVpnName,
hh3cCupmCpVbVxlanState
}
STATUS current
DESCRIPTION
"The notification is generated when
CP device disconnects to VXLAN tunnel."
::= { hh3cCupmCpNotifications 2 }
-- =================================================================
hh3cCupmCpNotifyVarObjects OBJECT IDENTIFIER ::= { hh3cCupmCp 1 }
hh3cCupmCpVbUpID OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The number of UP device."
::= { hh3cCupmCpNotifyVarObjects 1 }
hh3cCupmCpVbVxlanID OBJECT-TYPE
SYNTAX Integer32 (1..16777215)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Part of the index for this table, this value
identifies the VXLAN protocol tunnel."
::= { hh3cCupmCpNotifyVarObjects 2 }
hh3cCupmCpVbSrcAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Specifies the type of local address to be used at a remote
host for connecting VXLAN protocol tunnel."
::= { hh3cCupmCpNotifyVarObjects 3 }
hh3cCupmCpVbSrcAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Specifies the local address to be used at a remote
host for connecting VXLAN protocol tunnel. The host
address type is determined by the object value of corresponding
hh3cCupmCpProtoTnlSrcAddrType."
::= { hh3cCupmCpNotifyVarObjects 4 }
hh3cCupmCpVbDestAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Specifies the type of remote host for connecting the VXLAN
protocol tunnel."
::= { hh3cCupmCpNotifyVarObjects 5 }
hh3cCupmCpVbDestAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Specifies the remote host for connecting the VXLAN
protocol tunnel."
::= { hh3cCupmCpNotifyVarObjects 6 }
hh3cCupmCpVbVpnName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..31))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The VPN name, to which the rule will be applied.
Default value is zero-length."
::= { hh3cCupmCpNotifyVarObjects 7 }
hh3cCupmCpVbVxlanState OBJECT-TYPE
SYNTAX INTEGER
{
unknown (0),
up (1),
down (2)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The state of VXLAN protocol tunnel.
0 (unknown) The VXLAN protocol tunnel is in unknown state.
1 (up) The VXLAN protocol tunnel is in connected state.
2 (down) The VXLAN protocol tunnel is in disconnected state."
::= { hh3cCupmCpNotifyVarObjects 8 }
-- =================================================================
-- Scalar MIB objects, which are considered as global variables.
hh3cCupmCpScalarObjects OBJECT IDENTIFIER ::= { hh3cCupmCp 2 }
hh3cCupmUpNum OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of UP device."
::= { hh3cCupmCpScalarObjects 1 }
-- =================================================================
-- All table objects are defined below.
hh3cCupmCpTableObjects OBJECT IDENTIFIER ::= { hh3cCupmCp 3 }
hh3cCupmUpListTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cCupmUpListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of UP management information."
::= { hh3cCupmCpTableObjects 1 }
hh3cCupmUpListEntry OBJECT-TYPE
SYNTAX Hh3cCupmUpListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry items."
INDEX
{
hh3cCupmUpID
}
::= { hh3cCupmUpListTable 1 }
Hh3cCupmUpListEntry ::= SEQUENCE
{
hh3cCupmUpID Integer32,
hh3cCupmUpDescr OCTET STRING,
hh3cCupmUpListRowStatus RowStatus
}
hh3cCupmUpID OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The index value used to identify the UP device."
::= { hh3cCupmUpListEntry 1 }
hh3cCupmUpDescr OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..255))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"A textual description of the entity. This value could
include the full name and status of UP device."
DEFVAL { "" }
::= { hh3cCupmUpListEntry 2 }
hh3cCupmUpListRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Three status columns are supported, including 'active',
'createAndGo' and 'destroy'. The column of 'active' is used
for modifying value of hh3cCupmUpDescr."
::= { hh3cCupmUpListEntry 3 }
-- =================================================================
hh3cCupmCpProtoTnlTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cCupmCpProtoTnlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table that controls configuration of VXLAN tunnel on CP device."
::= { hh3cCupmCpTableObjects 2 }
hh3cCupmCpProtoTnlEntry OBJECT-TYPE
SYNTAX Hh3cCupmCpProtoTnlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry items."
INDEX
{
hh3cCupmUpID,
hh3cCupmCpProtoTnlVxlanID,
hh3cCupmCpProtoTnlSrcAddrType,
hh3cCupmCpProtoTnlSrcAddr,
hh3cCupmCpProtoTnlDstAddrType,
hh3cCupmCpProtoTnlDstAddr
}
::= { hh3cCupmCpProtoTnlTable 1 }
Hh3cCupmCpProtoTnlEntry ::= SEQUENCE
{
hh3cCupmCpProtoTnlVxlanID Integer32,
hh3cCupmCpProtoTnlSrcAddrType InetAddressType,
hh3cCupmCpProtoTnlSrcAddr InetAddress,
hh3cCupmCpProtoTnlDstAddrType InetAddressType,
hh3cCupmCpProtoTnlDstAddr InetAddress,
hh3cCupmCpProtoTnlVpnName OCTET STRING,
hh3cCupmCpProtoTnlState INTEGER,
hh3cCupmCpProtoTnlRowStatus RowStatus
}
hh3cCupmCpProtoTnlVxlanID OBJECT-TYPE
SYNTAX Integer32 (1..16777215)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Part of the index for this table, this value
identifies the VXLAN protocol tunnel."
::= { hh3cCupmCpProtoTnlEntry 1 }
hh3cCupmCpProtoTnlSrcAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies the type of local address to be used at a remote
host for connecting VXLAN protocol tunnel."
::= { hh3cCupmCpProtoTnlEntry 2 }
hh3cCupmCpProtoTnlSrcAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies the local address to be used at a remote
host for connecting VXLAN protocol tunnel. The host
address type is determined by the object value of corresponding
hh3cCupmCpProtoTnlSrcAddrType."
::= { hh3cCupmCpProtoTnlEntry 3 }
hh3cCupmCpProtoTnlDstAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies the type of remote host for connecting the VXLAN
protocol tunnel."
::= { hh3cCupmCpProtoTnlEntry 4 }
hh3cCupmCpProtoTnlDstAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies the remote host for connecting the VXLAN
protocol tunnel."
::= { hh3cCupmCpProtoTnlEntry 5 }
hh3cCupmCpProtoTnlVpnName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..31))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The VPN name, to which the rule will be applied.
Default value is zero-length."
DEFVAL { "" }
::= { hh3cCupmCpProtoTnlEntry 6 }
hh3cCupmCpProtoTnlState OBJECT-TYPE
SYNTAX INTEGER
{
unknown (0),
up (1),
down (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The state of VXLAN protocol tunnel.
0 (unknown) The VXLAN protocol tunnel is in unknown state.
1 (up) The VXLAN protocol tunnel is in connected state.
2 (down) The VXLAN protocol tunnel is in disconnected state."
::= { hh3cCupmCpProtoTnlEntry 7 }
hh3cCupmCpProtoTnlRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is responsible for managing the creation, deletion and
modification of rows, which support active status and CreateAndGo,
Destroy operation. To create a new row, hh3cCupmUpID must be specified."
::= { hh3cCupmCpProtoTnlEntry 8 }
-- =================================================================
hh3cCupmAgtProtoTnlTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cCupmAgtProtoTnlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Thie table provides VXLAN tunnel configuration of UP
device which under control of CP device. This protocol tunnel
allows to make configuration of UP device."
::= { hh3cCupmCpTableObjects 3 }
hh3cCupmAgtProtoTnlEntry OBJECT-TYPE
SYNTAX Hh3cCupmAgtProtoTnlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry items."
INDEX
{
hh3cCupmUpID,
hh3cCupmAgtProtoTnlVxlanID,
hh3cCupmAgtProtoTnlSrcAddrType,
hh3cCupmAgtProtoTnlSrcAddr,
hh3cCupmAgtProtoTnlDstAddrType,
hh3cCupmAgtProtoTnlDstAddr
}
::= { hh3cCupmAgtProtoTnlTable 1 }
Hh3cCupmAgtProtoTnlEntry ::= SEQUENCE
{
hh3cCupmAgtProtoTnlVxlanID Integer32,
hh3cCupmAgtProtoTnlSrcAddrType InetAddressType,
hh3cCupmAgtProtoTnlSrcAddr InetAddress,
hh3cCupmAgtProtoTnlDstAddrType InetAddressType,
hh3cCupmAgtProtoTnlDstAddr InetAddress,
hh3cCupmAgtProtoTnlVpnName OCTET STRING,
hh3cCupmAgtProtoTnlRowStatus RowStatus
}
hh3cCupmAgtProtoTnlVxlanID OBJECT-TYPE
SYNTAX Integer32 (1..16777215)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Part of the index for this table, this value
identifies the VXLAN protocol tunnel."
::= { hh3cCupmAgtProtoTnlEntry 1 }
hh3cCupmAgtProtoTnlSrcAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies the type of local address to be used at a remote
host for connecting VXLAN protocol tunnel."
::= { hh3cCupmAgtProtoTnlEntry 2 }
hh3cCupmAgtProtoTnlSrcAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies the local address to be used at a remote
host for connecting VXLAN protocol tunnel. The host
address type is determined by the object value of corresponding
hh3cCupmCpProtoTnlSrcAddrType."
::= { hh3cCupmAgtProtoTnlEntry 3 }
hh3cCupmAgtProtoTnlDstAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies the type of remote host for connecting the VXLAN
protocol tunnel."
::= { hh3cCupmAgtProtoTnlEntry 4 }
hh3cCupmAgtProtoTnlDstAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies the remote host for connecting the VXLAN
protocol tunnel."
::= { hh3cCupmAgtProtoTnlEntry 5 }
hh3cCupmAgtProtoTnlVpnName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..31))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The VPN name, to which the rule will be applied.
Default value is zero-length."
DEFVAL { "" }
::= { hh3cCupmAgtProtoTnlEntry 6 }
hh3cCupmAgtProtoTnlRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is responsible for managing the creation, deletion and
modification of rows, which support active status and CreateAndGo,
Destroy operation. To create a new row, hh3cCupmUpID must be specified."
::= { hh3cCupmAgtProtoTnlEntry 7 }
END
|