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
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
|
-- =============================================================
-- Copyright (c) 2004-2019 New H3C Tech. Co., Ltd. All rights reserved.
--
-- Description: flexe interface mib
-- Reference: Extension of RFC 1213 and RFC 2233
-- Version: V1.1
-- History:
-- V1.0 2018-08-06
-- Initial Version by mazhixing
-- V1.1 2019-4-3
-- Modify nodename by mazhixing
-- =============================================================
HH3C-FLEXE-MIB DEFINITIONS ::= BEGIN
IMPORTS
hh3cCommon
FROM HH3C-OID-MIB
ifIndex, ifDescr
FROM IF-MIB
Integer32,
OBJECT-TYPE, MODULE-IDENTITY, NOTIFICATION-TYPE
FROM SNMPv2-SMI
RowStatus
FROM SNMPv2-TC;
hh3cFlexE MODULE-IDENTITY
LAST-UPDATED "201904031936Z"
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 FlexE interface information that is
excluded by RFC 1213 and RFC 2233"
REVISION "201904031936Z"
DESCRIPTION
"Modify trapnode name"
REVISION "201808031436Z"
DESCRIPTION
"Initial version of this MIB module,
including hh3cFlexEGroupTable,hh3cFlexESubTimeSlotGranularTable,
hh3cFlexEPhyIfTable,hh3cFlexEIfTable,hh3cFlexETrap"
::= { hh3cCommon 177 }
-- hh3cFlexESubSlotInfo:
hh3cFlexESubSlotInfo OBJECT IDENTIFIER ::= { hh3cFlexE 1 }
hh3cFlexESubSlotTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cFlexESubSlotEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of FlexE subslot entries."
::= { hh3cFlexESubSlotInfo 1 }
hh3cFlexESubSlotEntry OBJECT-TYPE
SYNTAX Hh3cFlexESubSlotEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This entry contains FlexE subslot information."
INDEX {
hh3cFlexEFrameIndex,
hh3cFlexESlotIndex,
hh3cFlexESubslotIndex
}
::= { hh3cFlexESubSlotTable 1 }
Hh3cFlexESubSlotEntry ::= SEQUENCE {
hh3cFlexEFrameIndex Integer32,
hh3cFlexESlotIndex Integer32,
hh3cFlexESubslotIndex Integer32,
hh3cFlexESubTimeSlotGranular Integer32
}
hh3cFlexEFrameIndex OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Frame index."
::= { hh3cFlexESubSlotEntry 1 }
hh3cFlexESlotIndex OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Slot index."
::= { hh3cFlexESubSlotEntry 2 }
hh3cFlexESubslotIndex OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Subslot index."
::= { hh3cFlexESubSlotEntry 3 }
hh3cFlexESubTimeSlotGranular OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specify the sub-time-slot granularity of the FlexE subslot."
::= { hh3cFlexESubSlotEntry 4 }
-- hh3cFlexEGroupTable:
hh3cFlexEGroupTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cFlexEGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of FlexE groups."
::= { hh3cFlexESubSlotInfo 2 }
hh3cFlexEGroupEntry OBJECT-TYPE
SYNTAX Hh3cFlexEGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This entry contains the FlexE group information."
INDEX {
hh3cFlexEFrameIndex,
hh3cFlexESlotIndex,
hh3cFlexESubslotIndex,
hh3cFlexEGroupID
}
::= { hh3cFlexEGroupTable 1 }
Hh3cFlexEGroupEntry ::= SEQUENCE {
hh3cFlexEGroupID Integer32,
hh3cFlexEGroupRowStatus RowStatus
}
hh3cFlexEGroupID OBJECT-TYPE
SYNTAX Integer32 (1..1048574)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specify the group ID of the FlexE interface."
::= { hh3cFlexEGroupEntry 1 }
hh3cFlexEGroupRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Only active, createAndGo and destroy are supported."
::= { hh3cFlexEGroupEntry 2 }
-- hh3cFlexEPhyIfTable:
hh3cFlexEPhyIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cFlexEPhyIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of FlexE interface entries."
::= { hh3cFlexE 2 }
hh3cFlexEPhyIfEntry OBJECT-TYPE
SYNTAX Hh3cFlexEPhyIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This entry contains the information of FlexE physical interface management."
INDEX { ifIndex }
::= { hh3cFlexEPhyIfTable 1 }
Hh3cFlexEPhyIfEntry ::= SEQUENCE {
hh3cFlexEPhyGroupID Integer32,
hh3cFlexEPhyNumber Integer32,
hh3cFlexEClockPort OCTET STRING
}
hh3cFlexEPhyGroupID OBJECT-TYPE
SYNTAX Integer32 (1..1048574)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specify the group ID of the FlexE physical interface."
::= { hh3cFlexEPhyIfEntry 1 }
hh3cFlexEPhyNumber OBJECT-TYPE
SYNTAX Integer32 (0|1..254)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specify the physical number of the FlexE physical interface."
::= { hh3cFlexEPhyIfEntry 2 }
hh3cFlexEClockPort OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..48))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specify the clock FlexE interface."
::= { hh3cFlexEPhyIfEntry 3 }
-- hh3cFlexEIfTable:
hh3cFlexEIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cFlexEIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of FlexE interface entries."
::= { hh3cFlexE 3 }
hh3cFlexEIfEntry OBJECT-TYPE
SYNTAX Hh3cFlexEIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This entry contains the information of FlexE interface management."
INDEX { ifIndex }
::= { hh3cFlexEIfTable 1 }
Hh3cFlexEIfEntry ::= SEQUENCE {
hh3cFlexEIfGroupID Integer32,
hh3cFlexEBandwidth Integer32,
hh3cFlexEClientID Integer32,
hh3cFlexEMinAvailableBandwidth Integer32
}
hh3cFlexEIfGroupID OBJECT-TYPE
SYNTAX Integer32 (1..1048574)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specify the group ID of the FlexE interface."
::= { hh3cFlexEIfEntry 1 }
hh3cFlexEBandwidth OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specify the bandwidth of the FlexE interface."
::= { hh3cFlexEIfEntry 2 }
hh3cFlexEClientID OBJECT-TYPE
SYNTAX Integer32 (1..65534)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specify the client ID of the FlexE interface."
::= { hh3cFlexEIfEntry 3 }
hh3cFlexEMinAvailableBandwidth OBJECT-TYPE
SYNTAX Integer32 (0|1..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the minimum available bandwidth of the FlexE interface."
::= { hh3cFlexEIfEntry 4 }
-- Notification definitions
-- =================================================================
-- Traps are defined below.
-- Nodes of hh3cFlexETrapObjects
hh3cFlexETrapObjects OBJECT IDENTIFIER ::= { hh3cFlexE 4 }
hh3cFlexERemotePhyNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The physical number of Remote FLEXPhyIf."
::= { hh3cFlexETrapObjects 1 }
hh3cFlexERemotePhyGroupID OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The physical group ID of Remote FLEXPhyIf."
::= { hh3cFlexETrapObjects 2 }
hh3cFlexEGroupMemberCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The number of group members."
::= { hh3cFlexETrapObjects 3 }
hh3cFlexEPortList OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The interface list."
::= { hh3cFlexETrapObjects 4 }
-- Nodes of hh3cFlexETrap
hh3cFlexETrap OBJECT IDENTIFIER ::= { hh3cFlexE 5 }
hh3cFlexETrapPrex OBJECT IDENTIFIER ::= { hh3cFlexETrap 0 }
-- All trap definitions should be placed under this object.
hh3cFlexEPhyNumberMismatch NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cFlexEPhyNumber,
hh3cFlexERemotePhyNumber
}
STATUS current
DESCRIPTION
"The notification is generated when the physical number of the FlexE interface doesn't
match the other."
::= { hh3cFlexETrapPrex 1 }
hh3cFlexEPhyNumberMismatchRecover NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cFlexEPhyNumber,
hh3cFlexERemotePhyNumber
}
STATUS current
DESCRIPTION
"The notification is generated when the physical number of the FlexE interface
matches the other."
::= { hh3cFlexETrapPrex 2 }
hh3cFlexEPhyGroupMismatch NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cFlexEPhyGroupID,
hh3cFlexERemotePhyGroupID
}
STATUS current
DESCRIPTION
"The notification is generated when the group ID of the FlexE interface doesn't
matches the other."
::= { hh3cFlexETrapPrex 3 }
hh3cFlexEPhyGroupMismatchRecover NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cFlexEPhyGroupID,
hh3cFlexERemotePhyGroupID
}
STATUS current
DESCRIPTION
"The notification is generated when the group ID of the FlexE interface
matches the other."
::= { hh3cFlexETrapPrex 4 }
hh3cFlexEClientIDMismatch NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr
}
STATUS current
DESCRIPTION
"The notification is generated when the client ID of the FlexE interface doesn't
match the other."
::= { hh3cFlexETrapPrex 5 }
hh3cFlexEClientIDMismatchRecover NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr
}
STATUS current
DESCRIPTION
"The notification is generated when the client ID of the FlexE interface
matches the other."
::= { hh3cFlexETrapPrex 6 }
hh3cFlexEBandwidthReduce NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cFlexEBandwidth
}
STATUS current
DESCRIPTION
"The notification is generated when the bandwidth of the FlexE interface becomes
smaller."
::= { hh3cFlexETrapPrex 7 }
hh3cFlexEBandwidthReduceRecover NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cFlexEBandwidth
}
STATUS current
DESCRIPTION
"The notification is generated when the bandwidth of the FlexE interface recovers."
::= { hh3cFlexETrapPrex 8 }
hh3cFlexEPhyFcsSdAlarm NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr
}
STATUS current
DESCRIPTION
"The notification is generated when the error code fault happens."
::= { hh3cFlexETrapPrex 9 }
hh3cFlexEPhyFcsSdAlarmRecover NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr
}
STATUS current
DESCRIPTION
"The notification is generated when the error code fault recovers."
::= { hh3cFlexETrapPrex 10 }
hh3cFlexEPhyLocalFault NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr
}
STATUS current
DESCRIPTION
"The notification is generated when the fault happens in the near_end."
::= { hh3cFlexETrapPrex 11 }
hh3cFlexEPhyLocalFaultRecover NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr
}
STATUS current
DESCRIPTION
"The notification is generated when the fault in the near_end recovers."
::= { hh3cFlexETrapPrex 12 }
hh3cFlexEPhyRemoteFault NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr
}
STATUS current
DESCRIPTION
"The notification is generated when the fault happens in the far_end"
::= { hh3cFlexETrapPrex 13 }
hh3cFlexEPhyRemoteFaultRecover NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr
}
STATUS current
DESCRIPTION
"The notification is generated when the fault in the far_end recovers."
::= { hh3cFlexETrapPrex 14 }
hh3cFlexEBandwidthMismatch NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr
}
STATUS current
DESCRIPTION
"The notification is generated when the bandwidth of the FlexE interface
doesn't match the other."
::= { hh3cFlexETrapPrex 15 }
hh3cFlexEBandwidthMismatchRecover NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr
}
STATUS current
DESCRIPTION
"The notification is generated when the bandwidth of the FlexE interface
matches the other."
::= { hh3cFlexETrapPrex 16 }
hh3cFlexEPhyDelayOverAlarm NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cFlexEPortList
}
STATUS current
DESCRIPTION
"The notification is generated when the TimeDelay is oversize."
::= { hh3cFlexETrapPrex 17 }
hh3cFlexEPhyDelayOverAlarmRecover NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cFlexEPortList
}
STATUS current
DESCRIPTION
"The notification is generated when the TimeDelay becomes normal."
::= { hh3cFlexETrapPrex 18 }
hh3cFlexESTSGMismatch NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cFlexESubTimeSlotGranular
}
STATUS current
DESCRIPTION
"The notification is generated when the granularity of the FlexE interface
doesn't match the other."
::= { hh3cFlexETrapPrex 19 }
hh3cFlexESTSGMismatchRecover NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cFlexESubTimeSlotGranular
}
STATUS current
DESCRIPTION
"The notification is generated when the granularity of the FlexE interface
matches the other."
::= { hh3cFlexETrapPrex 20 }
hh3cFlexEGroupMemberFault NOTIFICATION-TYPE
OBJECTS
{
hh3cFlexEFrameIndex,
hh3cFlexESlotIndex,
hh3cFlexESubslotIndex,
hh3cFlexEGroupID,
hh3cFlexEGroupMemberCount,
ifIndex,
ifDescr
}
STATUS current
DESCRIPTION
"The notification is generated when the fault happens on group members."
::= { hh3cFlexETrapPrex 21 }
hh3cFlexEGroupMemberFaultRecover NOTIFICATION-TYPE
OBJECTS
{
hh3cFlexEFrameIndex,
hh3cFlexESlotIndex,
hh3cFlexESubslotIndex,
hh3cFlexEGroupID,
hh3cFlexEGroupMemberCount,
ifIndex,
ifDescr
}
STATUS current
DESCRIPTION
"The notification is generated when the fault on group members recovers."
::= { hh3cFlexETrapPrex 22 }
hh3cFlexEGroupFaultAlarm NOTIFICATION-TYPE
OBJECTS
{
hh3cFlexEFrameIndex,
hh3cFlexESlotIndex,
hh3cFlexESubslotIndex,
hh3cFlexEGroupID
}
STATUS current
DESCRIPTION
"The notification is generated when the fault happens on the last group member."
::= { hh3cFlexETrapPrex 23 }
hh3cFlexEGroupFaultAlarmRecover NOTIFICATION-TYPE
OBJECTS
{
hh3cFlexEFrameIndex,
hh3cFlexESlotIndex,
hh3cFlexESubslotIndex,
hh3cFlexEGroupID
}
STATUS current
DESCRIPTION
"The notification is generated when the fault on the first group member recovers."
::= { hh3cFlexETrapPrex 24 }
END
|