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
|
-- This file was included in Ciena MIB release MIBS-CIENA-CES-08-07-00-024
--
-- CIENA-CES-PTP-MIB
--
CIENA-CES-PTP-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE
FROM SNMPv2-SMI
DisplayString, TruthValue, TEXTUAL-CONVENTION
FROM SNMPv2-TC
cienaCesConfig, cienaCesNotifications
FROM CIENA-SMI
CienaGlobalState
FROM CIENA-TC
InterfaceIndex
FROM IF-MIB;
cienaCesPtpMIB MODULE-IDENTITY
LAST-UPDATED "201706070000Z"
ORGANIZATION "Ciena Corp."
CONTACT-INFO
" Mib Meister
7035 Ridge Road
Hanover, Maryland 21076
USA
Phone: +1 800 921 1144
Email: support@ciena.com"
DESCRIPTION
"This module defines device configuration associated with PTP (Physical Termination Point) attributes."
REVISION "201706070000Z"
DESCRIPTION
"Updated contact info."
REVISION "201512140000Z"
DESCRIPTION
"Added cienaCesPtpCreatedNotification.
Added cienaCesPtpDeletedNotification."
REVISION "201510200000Z"
DESCRIPTION
"Added the following notifications:
cienaCesPtpAdminStateChangeNotification
cienaCesPtpOperStateChangeNotification
cienaCesPtpAdminWavelengthChangeNotification
cienaCesPtpAdminFrequencyChangeNotification
cienaCesPtpTxPowerChangeNotification
cienaCesPtpLineSysTypeChangeNotification
cienaCesPtpOptimizationModeChangeNotification
cienaCesPtpWavelengthSpacingChangeNotification
Fixed rounding error in PtpHundredths textual convention."
REVISION "201509090000Z"
DESCRIPTION
"Initial creation."
::= { cienaCesConfig 38 }
--
-- Textual conventions
--
PtpHundredths ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d-3"
STATUS current
DESCRIPTION
"A value using Integer32 to represent a fixed-point decimal fraction
with hundredths precision. Objects using this textual-convention will
be scaled by a factor of 1/100."
SYNTAX Integer32
--
-- Node definitions
--
cienaCesPtpMIBObjects OBJECT IDENTIFIER ::= { cienaCesPtpMIB 1 }
--
-- Config groups
--
cienaCesPtp OBJECT IDENTIFIER ::= { cienaCesPtpMIBObjects 1 }
--
-- Notification groups
--
cienaCesPtpMIBNotificationsPrefix OBJECT IDENTIFIER ::= { cienaCesNotifications 38 }
cienaCesPtpMIBNotifications OBJECT IDENTIFIER ::= { cienaCesPtpMIBNotificationsPrefix 0 }
--
-- Conformance groups
--
cienaCesPtpMIBConformance OBJECT IDENTIFIER ::= { cienaCesPtpMIB 2 }
cienaCesPtpMIBCompliances OBJECT IDENTIFIER ::= { cienaCesPtpMIBConformance 1 }
cienaCesPtpMIBGroups OBJECT IDENTIFIER ::= { cienaCesPtpMIBConformance 2 }
--
-- Configuration information
--
--
-- PTP Table
--
cienaCesPtpTable OBJECT-TYPE
SYNTAX SEQUENCE OF CienaCesPtpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table describing PTP attributes."
::= { cienaCesPtp 1 }
cienaCesPtpEntry OBJECT-TYPE
SYNTAX CienaCesPtpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the PTP table."
INDEX { cienaCesPtpIfIndex }
::= { cienaCesPtpTable 1 }
CienaCesPtpEntry ::= SEQUENCE {
cienaCesPtpIfIndex InterfaceIndex,
cienaCesPtpSlotIndex Unsigned32,
cienaCesPtpPortIndex Unsigned32,
cienaCesPtpPortNumber Unsigned32,
cienaCesPtpIfDescr DisplayString,
cienaCesPtpModulationScheme DisplayString,
cienaCesPtpSupportedOpuTypes BITS,
cienaCesPtpAdminState CienaGlobalState,
cienaCesPtpOperState CienaGlobalState,
cienaCesPtpAdminWavelength PtpHundredths,
cienaCesPtpAdminFrequency PtpHundredths,
cienaCesPtpTxPowerReduction TruthValue,
cienaCesPtpTxPower PtpHundredths,
cienaCesPtpLineSysType INTEGER,
cienaCesPtpOptimizationMode INTEGER,
cienaCesPtpWavelengthSpacing INTEGER,
cienaCesPtpSpectralOccupancy INTEGER,
cienaCesPtpTxTuningMode INTEGER,
cienaCesPtpRotation TruthValue,
cienaCesPtpCarrierCentering INTEGER,
cienaCesPtpOchEnmMode INTEGER,
cienaCesPtpChContentionDetect TruthValue,
cienaCesPtpStormControl TruthValue,
cienaCesPtpStormMode INTEGER,
cienaCesPtpStormPath1 Integer32,
cienaCesPtpStormPath2 Integer32,
cienaCesPtpSpliCntrl TruthValue,
cienaCesPtpChildOtuIfIndex InterfaceIndex
}
cienaCesPtpIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The interface index of the PTP."
::= { cienaCesPtpEntry 1 }
cienaCesPtpSlotIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..38)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the slot index associated with the PTP."
::= { cienaCesPtpEntry 2 }
cienaCesPtpPortIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the port index associated with the PTP."
::= { cienaCesPtpEntry 3 }
cienaCesPtpPortNumber OBJECT-TYPE
SYNTAX Unsigned32 (1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the port number associated with the PTP."
::= { cienaCesPtpEntry 4 }
cienaCesPtpIfDescr OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A textual string containing information about the PTP interface."
::= { cienaCesPtpEntry 5 }
cienaCesPtpModulationScheme OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A textual string containing the modulation scheme of the PTP."
::= { cienaCesPtpEntry 6 }
cienaCesPtpSupportedOpuTypes OBJECT-TYPE
SYNTAX BITS {
experimental(0),
asynchronousCbr(1),
bitSynchronousCbr(2),
atm(3),
gfp(4),
virtualConcatenatedSignal(5),
hundredGBaseRIntoOpu4(6),
fc1200IntoOdu2e(7),
gfpIntoExtendedOpu2Payload(8),
stm1IntoOdu0(9),
stm4IntoOdu0(10),
fc100IntoOdu0(11),
fc200IntoOdu1(12),
fc400IntoOduFlex(13),
fc800IntoOduFlex(14),
bitStreamWithOctetTiming(15),
bitStreamWithoutOctetTiming(16),
ibSdrIntoOduFlex(17),
ibDdrIntoOduFlex(18),
ibQdrIntoOduFlex(19),
oduMultiplexForODTUkh(20),
oduMultiplexForODTUktsAndODTUkh(21),
nullTestSignal(22),
prbsTestSignal(23),
notAvailable(24)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents all supported OPU payload types for the PTP.
The individual bit position should be set to 1 for each payload type
supported on the PTP and 0 if the payload type is unsupported."
::= { cienaCesPtpEntry 7 }
cienaCesPtpAdminState OBJECT-TYPE
SYNTAX CienaGlobalState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The administrative state of the PTP."
::= { cienaCesPtpEntry 8 }
cienaCesPtpOperState OBJECT-TYPE
SYNTAX CienaGlobalState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operational state of the PTP."
::= { cienaCesPtpEntry 9 }
cienaCesPtpAdminWavelength OBJECT-TYPE
SYNTAX PtpHundredths
UNITS "nm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The wavelength of the laser expressed in nm. This value is directly
related to cienaCesPtpAdminFrequency and will be 0.00 when the laser
is unset or disabled. The laser wavelength (or frequency) must be set
before the laser can be turned on."
::= { cienaCesPtpEntry 10 }
cienaCesPtpAdminFrequency OBJECT-TYPE
SYNTAX PtpHundredths
UNITS "GHz"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The frequency of the laser expressed in GHz. This value is directly
related to cienaCesPtpAdminWavelength and will be 0.00 when the laser
is unset or disabled. The laser frequency (or wavelength) must be set
before the laser can be turned on."
::= { cienaCesPtpEntry 11 }
cienaCesPtpTxPowerReduction OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object has a value of true(1) when tx power reduction
(TX Blanking) is on and false(2) when it is off. The tx power
reduction mode cannot be turned on unless the OTN service layer is
disabled."
DEFVAL { false }
::= { cienaCesPtpEntry 12 }
cienaCesPtpTxPower OBJECT-TYPE
SYNTAX PtpHundredths
UNITS "dBm"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The output power of the laser expressed in dBm."
::= { cienaCesPtpEntry 13 }
cienaCesPtpLineSysType OBJECT-TYPE
SYNTAX INTEGER {
color(1),
colorless(2),
contentionless(3),
csColor(4),
csColorless(5),
max(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The line system type of the PTP. The PTP must be otn-service disabled
before this value may be changed."
DEFVAL { color }
::= { cienaCesPtpEntry 14 }
cienaCesPtpOptimizationMode OBJECT-TYPE
SYNTAX INTEGER {
mode1(1),
mode2(2),
mode3(3),
mode4(4),
mode5(5),
mode6(6),
mode7(7),
mode8(8),
mode9(9),
mode10(10),
mode11(11),
mode12(12),
mode13(13),
mode14(14),
max(15)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The performance optimization mode. The PTP must be otn-service
disabled before this value may be changed."
DEFVAL { mode1 }
::= { cienaCesPtpEntry 15 }
cienaCesPtpWavelengthSpacing OBJECT-TYPE
SYNTAX INTEGER {
twelvePointFiveGHz(1),
twentyFiveGHz(2),
fiftyGHz(3),
oneHundredGHz(4),
max(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Wavelength spacing indicates the width of the wavelength expressed in
GHz. The PTP must be otn-service disabled before this value may be
changed."
DEFVAL { fiftyGHz }
::= { cienaCesPtpEntry 16 }
cienaCesPtpSpectralOccupancy OBJECT-TYPE
SYNTAX INTEGER {
narrow(1),
wide(2),
max(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The spectral occupancy of the PTP."
DEFVAL { narrow }
::= { cienaCesPtpEntry 17 }
cienaCesPtpTxTuningMode OBJECT-TYPE
SYNTAX INTEGER {
normal(1),
accelerated(2),
max(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The tuning mode of the PTP."
DEFVAL { normal }
::= { cienaCesPtpEntry 18 }
cienaCesPtpRotation OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object has a value of true(1) when the rotation option is on and
false(2) when it is off."
DEFVAL { false }
::= { cienaCesPtpEntry 19 }
cienaCesPtpCarrierCentering OBJECT-TYPE
SYNTAX INTEGER {
none(1),
mode1(2),
mode2(3),
mode3(4),
max(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The carrier centering mode of the PTP."
DEFVAL { none }
::= { cienaCesPtpEntry 20 }
cienaCesPtpOchEnmMode OBJECT-TYPE
SYNTAX INTEGER {
none(1),
mode1(2),
mode2(3),
auto(4),
max(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The interleaver mode of the PTP."
DEFVAL { mode2 }
::= { cienaCesPtpEntry 21 }
cienaCesPtpChContentionDetect OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object has a value of true(1) when channel contention detection
is on and false(2) when it is off."
DEFVAL { false }
::= { cienaCesPtpEntry 22 }
cienaCesPtpStormControl OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object has a value of true(1) when storm protection is on and
false(2) when it is off."
::= { cienaCesPtpEntry 23 }
cienaCesPtpStormMode OBJECT-TYPE
SYNTAX INTEGER {
matched(1),
diverse(2),
max(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The storm configuration of the PTP."
::= { cienaCesPtpEntry 24 }
cienaCesPtpStormPath1 OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Storm dispersion path 1."
::= { cienaCesPtpEntry 25 }
cienaCesPtpStormPath2 OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Storm dispersion path 2."
::= { cienaCesPtpEntry 26 }
cienaCesPtpSpliCntrl OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object has a value of true(1) when spli is enabled and false(2)
when it is disabled."
::= { cienaCesPtpEntry 27 }
cienaCesPtpChildOtuIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The interface index of the OTU mapped to the PTP."
::= { cienaCesPtpEntry 28 }
--
-- Notifications
--
cienaCesPtpAdminStateChangeNotification NOTIFICATION-TYPE
OBJECTS {
cienaGlobalSeverity,
cienaGlobalMacAddress,
cienaCesPtpIfIndex,
cienaCesPtpAdminState
}
STATUS current
DESCRIPTION
"This notification is sent when cienaCesPtpAdminState is modified."
::= { cienaCesPtpMIBNotifications 1 }
cienaCesPtpOperStateChangeNotification NOTIFICATION-TYPE
OBJECTS {
cienaGlobalSeverity,
cienaGlobalMacAddress,
cienaCesPtpIfIndex,
cienaCesPtpOperState
}
STATUS current
DESCRIPTION
"This notification is sent when cienaCesPtpOperState is modified."
::= { cienaCesPtpMIBNotifications 2 }
cienaCesPtpAdminWavelengthChangeNotification NOTIFICATION-TYPE
OBJECTS {
cienaGlobalSeverity,
cienaGlobalMacAddress,
cienaCesPtpIfIndex,
cienaCesPtpAdminWavelength
}
STATUS current
DESCRIPTION
"This notification is sent when cienaCesPtpAdminWavelength is
modified."
::= { cienaCesPtpMIBNotifications 3 }
cienaCesPtpAdminFrequencyChangeNotification NOTIFICATION-TYPE
OBJECTS {
cienaGlobalSeverity,
cienaGlobalMacAddress,
cienaCesPtpIfIndex,
cienaCesPtpAdminFrequency
}
STATUS current
DESCRIPTION
"This notification is sent when cienaCesPtpAdminFrequency is modified."
::= { cienaCesPtpMIBNotifications 4 }
cienaCesPtpTxPowerChangeNotification NOTIFICATION-TYPE
OBJECTS {
cienaGlobalSeverity,
cienaGlobalMacAddress,
cienaCesPtpIfIndex,
cienaCesPtpTxPower
}
STATUS current
DESCRIPTION
"This notification is sent when cienaCesPtpTxPower is administratively
modified."
::= { cienaCesPtpMIBNotifications 5 }
cienaCesPtpLineSysTypeChangeNotification NOTIFICATION-TYPE
OBJECTS {
cienaGlobalSeverity,
cienaGlobalMacAddress,
cienaCesPtpIfIndex,
cienaCesPtpLineSysType
}
STATUS current
DESCRIPTION
"This notification is sent when cienaCesPtpLineSysType is modified."
::= { cienaCesPtpMIBNotifications 6 }
cienaCesPtpOptimizationModeChangeNotification NOTIFICATION-TYPE
OBJECTS {
cienaGlobalSeverity,
cienaGlobalMacAddress,
cienaCesPtpIfIndex,
cienaCesPtpOptimizationMode
}
STATUS current
DESCRIPTION
"This notification is sent when cienaCesPtpOptimizationMode is
modified."
::= { cienaCesPtpMIBNotifications 7 }
cienaCesPtpWavelengthSpacingChangeNotification NOTIFICATION-TYPE
OBJECTS {
cienaGlobalSeverity,
cienaGlobalMacAddress,
cienaCesPtpIfIndex,
cienaCesPtpWavelengthSpacing
}
STATUS current
DESCRIPTION
"This notification is sent when cienaCesPtpWavelengthSpacing is
modified."
::= { cienaCesPtpMIBNotifications 8 }
cienaCesPtpCreatedNotification NOTIFICATION-TYPE
OBJECTS {
cienaGlobalSeverity,
cienaGlobalMacAddress,
cienaCesPtpIfIndex
}
STATUS current
DESCRIPTION
"This notification is sent when a PTP is created."
::= { cienaCesPtpMIBNotifications 9 }
cienaCesPtpDeletedNotification NOTIFICATION-TYPE
OBJECTS {
cienaGlobalSeverity,
cienaGlobalMacAddress,
cienaCesPtpIfIndex
}
STATUS current
DESCRIPTION
"This notification is sent when a PTP is deleted."
::= { cienaCesPtpMIBNotifications 10 }
END
--
-- CIENA-CES-PTP-MIB
--
|