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
|
-- ==================================================================
-- Copyright (C) 2006 by HUAWEI TECHNOLOGIES. All rights reserved.
--
-- Description: HUAWEI CCC Management MIB
-- Reference:
-- Version: V1.0
-- History:
-- V1.0 PanJun, 2006-05-11, publish
-- ==================================================================
HUAWEI-CCC-MIB DEFINITIONS ::= BEGIN
IMPORTS
hwDatacomm
FROM HUAWEI-MIB
HWL2VpnVcEncapsType, HWEnableValue, HWL2VpnStateChangeReason
FROM HUAWEI-VPLS-EXT-MIB
InterfaceIndexOrZero,InterfaceIndex
FROM IF-MIB
OBJECT-GROUP, MODULE-COMPLIANCE, NOTIFICATION-GROUP
FROM SNMPv2-CONF
IpAddress, Unsigned32, Counter64, OBJECT-TYPE, MODULE-IDENTITY,
NOTIFICATION-TYPE
FROM SNMPv2-SMI
DisplayString, RowStatus
FROM SNMPv2-TC;
hwL2VpnCCC MODULE-IDENTITY
LAST-UPDATED "200605110900Z" -- May 11, 2006 at 09:00 GMT
ORGANIZATION
"Huawei Technologies Co., Ltd."
CONTACT-INFO
"R&D BeiJing, Huawei Technologies co.,Ltd.
Huawei Bld.,NO.3 Xinxi Rd.,
Shang-Di Information Industry Base,
Hai-Dian District Beijing P.R. China
Zip:100085
Http://www.huawei.com
E-mail:support@huawei.com"
DESCRIPTION
"The HUAWEI-CCC-MIB contains objects to
manage KOMPELLA."
::= { hwL2Vpn 3 }
--
-- Node definitions
--
hwL2Vpn OBJECT IDENTIFIER ::= { hwDatacomm 119 }
hwCCCMIBObjects OBJECT IDENTIFIER ::= { hwL2VpnCCC 1 }
--
-- The CCC's VC Table
--
hwCCCVcTable OBJECT-TYPE
SYNTAX SEQUENCE OF HWCCCVcEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is the CCC's configuration table. Users can
create or delete the CCC by it."
::= { hwCCCMIBObjects 1 }
hwCCCVcEntry OBJECT-TYPE
SYNTAX HWCCCVcEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Provides the information of a CCC entry."
INDEX { hwCCCVcName }
::= { hwCCCVcTable 1 }
HWCCCVcEntry ::=
SEQUENCE {
hwCCCVcName
DisplayString,
hwCCCVcConnectionType
INTEGER,
hwCCCVcEncapType
HWL2VpnVcEncapsType,
hwCCCVcIfIndex
InterfaceIndexOrZero,
hwCCCVcInboundlabel
Unsigned32,
hwCCCVcOutboundlabel
Unsigned32,
hwCCCVcOutIfIndex
InterfaceIndexOrZero,
hwCCCVcNextHop
IpAddress,
hwCCCVcCtrlWord
HWEnableValue,
hwCCCVcOperStatus
INTEGER,
hwCCCVcUpStartTime
DisplayString,
hwCCCVcUpSumTime
Unsigned32,
hwCCCVcMaxAtmCells
Unsigned32,
hwCCCVcAtmPackOvertime
Unsigned32,
hwCCCVcPwJitterBufferDepth
Unsigned32,
hwCCCVcPwTdmEncapsulationNum
Unsigned32,
hwCCCVcPwIdleCode
Unsigned32,
hwCCCVcPwRtpHeader
Unsigned32,
hwCCCVcIpInterworking
HWEnableValue,
hwCCCVcRowStatus
RowStatus
}
hwCCCVcName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..20))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The human-readable name of this CCC."
::= { hwCCCVcEntry 1 }
hwCCCVcConnectionType OBJECT-TYPE
SYNTAX INTEGER
{
local(1),
remote(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the VC connection type."
::= { hwCCCVcEntry 2 }
hwCCCVcEncapType OBJECT-TYPE
SYNTAX HWL2VpnVcEncapsType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the service to be carried."
::= { hwCCCVcEntry 3 }
hwCCCVcIfIndex OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the AC ifIndex.
0 is invalid ifIndex."
::= { hwCCCVcEntry 4 }
hwCCCVcInboundlabel OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the static inbound label.
This value need not be designated if the CCC is local."
::= { hwCCCVcEntry 5 }
hwCCCVcOutboundlabel OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the static outbound label.
This value need not be designated if the CCC is local."
::= { hwCCCVcEntry 6 }
hwCCCVcOutIfIndex OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the ifIndex of the out interface
in the side of PSN, or the ifIndex of the out interface
in the side of AC if the CCC is local cross.
0 is invalid ifIndex."
::= { hwCCCVcEntry 7 }
hwCCCVcNextHop OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the next hop IP address of the out
interface in the side of PSN.
For the interface of ATM or FR or Ethernet, the next hop
address must be used. Don't use the out interface in this
case."
::= { hwCCCVcEntry 8 }
hwCCCVcCtrlWord OBJECT-TYPE
SYNTAX HWEnableValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the control word capability.
This value need not be designated if the CCC is local."
::= { hwCCCVcEntry 9 }
hwCCCVcOperStatus OBJECT-TYPE
SYNTAX INTEGER
{
up(1),
down(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the operation status."
::= { hwCCCVcEntry 10 }
hwCCCVcUpStartTime OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..63))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies the time this VC status was Up(1)."
::= { hwCCCVcEntry 11 }
hwCCCVcUpSumTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies the cumulate time this VC status has been Up(1)."
::= { hwCCCVcEntry 12 }
hwCCCVcMaxAtmCells OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the MaxAtmCells."
::= { hwCCCVcEntry 13 }
hwCCCVcAtmPackOvertime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the AtmPackOvertime."
::= { hwCCCVcEntry 14 }
hwCCCVcPwJitterBufferDepth OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the PwJitterBufferDepth."
::= { hwCCCVcEntry 15 }
hwCCCVcPwTdmEncapsulationNum OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the PwTdmEncapsulationNum."
::= { hwCCCVcEntry 16 }
hwCCCVcPwIdleCode OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the PwIdleCode."
::= { hwCCCVcEntry 17 }
hwCCCVcPwRtpHeader OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the PwRtpHeader."
::= { hwCCCVcEntry 18 }
hwCCCVcIpInterworking OBJECT-TYPE
SYNTAX HWEnableValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the enable sign of the IP interworking."
::= { hwCCCVcEntry 19 }
hwCCCVcRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"RowStatus for this Table."
::= { hwCCCVcEntry 51 }
--
-- The CCC's VC Statistics Table
--
hwCCCVcStatisticsTable OBJECT-TYPE
SYNTAX SEQUENCE OF HWCCCVcStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the CCC's VC packets statistics."
::= { hwCCCMIBObjects 2 }
hwCCCVcStatisticsEntry OBJECT-TYPE
SYNTAX HWCCCVcStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Provides the information of the CCC's VC packets
Statistics."
INDEX { hwCCCVcName, hwCCCVcStatisticsIfIndex }
::= { hwCCCVcStatisticsTable 1 }
HWCCCVcStatisticsEntry ::=
SEQUENCE {
hwCCCVcStatisticsIfIndex
InterfaceIndex,
hwCCCVcStatisticsRcvPkts
Counter64,
hwCCCVcStatisticsRcvBytes
Counter64,
hwCCCVcStatisticsSndPkts
Counter64,
hwCCCVcStatisticsSndBytes
Counter64
}
hwCCCVcStatisticsIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the AC ifIndex.
The CCC will have two AC which need to be displayed
if the CCC is local cross."
::= { hwCCCVcStatisticsEntry 1 }
hwCCCVcStatisticsRcvPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets received on this VC."
::= { hwCCCVcStatisticsEntry 2 }
hwCCCVcStatisticsRcvBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of bytes received on this VC."
::= { hwCCCVcStatisticsEntry 3 }
hwCCCVcStatisticsSndPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets sent on this VC."
::= { hwCCCVcStatisticsEntry 4 }
hwCCCVcStatisticsSndBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of bytes sent on the VC."
::= { hwCCCVcStatisticsEntry 5 }
--
-- The Leaf Nodes of hwCCCMIBObjects
--
hwCCCVcUpDownNotifEnable OBJECT-TYPE
SYNTAX HWEnableValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the enable sign of CCC
VC state change notification."
DEFVAL { disable }
::= { hwCCCMIBObjects 3 }
hwCCCVcDeletedNotifEnable OBJECT-TYPE
SYNTAX HWEnableValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the enable sign of CCC
VC deletion notification."
DEFVAL { disable }
::= { hwCCCMIBObjects 4 }
hwCCCVcStateChangeReason OBJECT-TYPE
SYNTAX HWL2VpnStateChangeReason
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the reason of CCC VC
state change."
::= { hwCCCMIBObjects 5 }
--
-- CCC MIB Trap Definitions
--
hwCCCMIBTraps OBJECT IDENTIFIER ::= { hwL2VpnCCC 2 }
hwCCCVcDown NOTIFICATION-TYPE
OBJECTS { hwCCCVcIfIndex, hwCCCVcStateChangeReason }
STATUS current
DESCRIPTION
"This notification indicates the VC's state changes to down."
::= { hwCCCMIBTraps 1 }
hwCCCVcUp NOTIFICATION-TYPE
OBJECTS { hwCCCVcIfIndex, hwCCCVcStateChangeReason }
STATUS current
DESCRIPTION
"This notification indicates the VC's state changes to up."
::= { hwCCCMIBTraps 2 }
hwCCCVcDeleted NOTIFICATION-TYPE
OBJECTS { hwCCCVcIfIndex }
STATUS current
DESCRIPTION
"This notification indicates the VC is deleted."
::= { hwCCCMIBTraps 3 }
-- Conformance information
--
hwCCCMIBConformance OBJECT IDENTIFIER ::= { hwL2VpnCCC 3 }
hwCCCMIBCompliances OBJECT IDENTIFIER ::= { hwCCCMIBConformance 1 }
-- this module
hwCCCMIBCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for systems supporting
the HUAWEI-KOMPELLA-MIB."
MODULE -- this module
MANDATORY-GROUPS { hwCCCVcGroup, hwCCCVcStatisticsGroup, hwCCCNotificationControlGroup, hwCCCVcStateChangeReasonGroup, hwCCCNotificationGroup
}
::= { hwCCCMIBCompliances 1 }
hwCCCMIBGroups OBJECT IDENTIFIER ::= { hwCCCMIBConformance 2 }
hwCCCVcGroup OBJECT-GROUP
OBJECTS { hwCCCVcConnectionType, hwCCCVcEncapType, hwCCCVcIfIndex, hwCCCVcInboundlabel, hwCCCVcOutboundlabel, hwCCCVcOutIfIndex,
hwCCCVcNextHop, hwCCCVcCtrlWord, hwCCCVcOperStatus, hwCCCVcUpStartTime, hwCCCVcUpSumTime, hwCCCVcMaxAtmCells, hwCCCVcAtmPackOvertime,
hwCCCVcPwJitterBufferDepth, hwCCCVcPwTdmEncapsulationNum, hwCCCVcPwIdleCode, hwCCCVcPwRtpHeader, hwCCCVcIpInterworking, hwCCCVcRowStatus }
STATUS current
DESCRIPTION
"The CCC's VC group."
::= { hwCCCMIBGroups 1 }
hwCCCVcStatisticsGroup OBJECT-GROUP
OBJECTS { hwCCCVcStatisticsRcvPkts, hwCCCVcStatisticsRcvBytes, hwCCCVcStatisticsSndPkts, hwCCCVcStatisticsSndBytes }
STATUS current
DESCRIPTION
"The CCC's VC Statistics group."
::= { hwCCCMIBGroups 2 }
hwCCCNotificationControlGroup OBJECT-GROUP
OBJECTS { hwCCCVcUpDownNotifEnable, hwCCCVcDeletedNotifEnable }
STATUS current
DESCRIPTION
"The CCC's Notification Control group."
::= { hwCCCMIBGroups 3 }
hwCCCVcStateChangeReasonGroup OBJECT-GROUP
OBJECTS { hwCCCVcStateChangeReason }
STATUS current
DESCRIPTION
"The CCC's Vc State Change Reason group."
::= { hwCCCMIBGroups 4 }
hwCCCNotificationGroup NOTIFICATION-GROUP
NOTIFICATIONS { hwCCCVcDown, hwCCCVcUp, hwCCCVcDeleted }
STATUS current
DESCRIPTION
"The CCC Notification group."
::= { hwCCCMIBGroups 5 }
END
|