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
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
|
-- This file was automatically generated from ciena-ws-ptp.yang. Do not edit.
CIENA-WS-PTP-MIB DEFINITIONS ::= BEGIN
IMPORTS
cienaWsConfig
FROM CIENA-WS-MIB
ChannelsNumber, Decimal1Dig, Decimal2Dig, Decimal2DigSmall, EnabledDisabledEnum, EnabledDisabledNaEnum, NameString, PtpId, StringMaxl15, StringMaxl32, TraceMismatchFailMode, TraceMismatchMode, TraceTxOperMode, XcvrId, XcvrType
FROM CIENA-WS-TYPEDEFS-MIB
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
Integer32, MODULE-IDENTITY, OBJECT-TYPE, Unsigned32
FROM SNMPv2-SMI
TEXTUAL-CONVENTION, TruthValue
FROM SNMPv2-TC;
cienaWsPtpMIB MODULE-IDENTITY
LAST-UPDATED "201708070000Z"
ORGANIZATION "Ciena Corporation"
CONTACT-INFO "Web URL: http://www.ciena.com/
Postal: 7035 Ridge Road
Hanover, Maryland 21076
U.S.A.
Phone: +1 800-921-1144
Fax: +1 410-694-5750"
DESCRIPTION "Physical Termination Point. This module models the physical characteristics of the signal. This base module contains generic definitions for all PTPs. Specific characteristics of PTPs can augment this model to provide more detail. PTPs are automatically provisioned by the system."
REVISION "201708070000Z"
DESCRIPTION "Waveserver Release 1.5
Added 'properties/trace' container.
Added ncx:user-write to 'ptps'.
Added leaf 'spli-management' to container 'ptps/state'."
REVISION "201703020000Z"
DESCRIPTION "Waveserver Release 1.4
Aligned MIB files to respect YANG read/write status."
REVISION "201612120000Z"
DESCRIPTION "Waveserver Rel 1.3 revised.
New status leafs added to 'channel/tx/power' and 'channel/rx/power' containers.
New leaf 'properties/wavelength/actual' added.
Changed some types to decimal-2-dig-small."
REVISION "201606140000Z"
DESCRIPTION "Waveserver Rel 1.2 revised.
Major restructuring of this YANG module."
REVISION "201602010000Z"
DESCRIPTION "Waveserver Rel 1.1 revised.
New 'ptp-adv-channel-status' container under 'ptp-status'.
Added new 'ws-ptp-clear-ptp-statistics' rpc call."
REVISION "201504290000Z"
DESCRIPTION "Initial version."
::= { cienaWsConfig 8 }
PtpOpEnum ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "None"
SYNTAX INTEGER { up(0), down(1), tuning(2), fault(3), unknown(4) }
cwsPtpPtpsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPtpPtpsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "None"
::= { cienaWsPtpMIB 3 }
cwsPtpPtpsEntry OBJECT-TYPE
SYNTAX CwsPtpPtpsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPtpPtpsTable."
INDEX { cwsPtpPtpsPtpIndex }
::= { cwsPtpPtpsTable 1 }
CwsPtpPtpsEntry ::= SEQUENCE {
cwsPtpPtpsPtpIndex Integer32
}
cwsPtpPtpsPtpIndex OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Unique, index of the PTP. Key value for the PTP list. Read-only attribute."
::= { cwsPtpPtpsEntry 1 }
cwsPtpPtpIdTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPtpPtpIdEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Identification information of this PTP instance."
::= { cienaWsPtpMIB 4 }
cwsPtpPtpIdEntry OBJECT-TYPE
SYNTAX CwsPtpPtpIdEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPtpPtpIdTable."
INDEX { cwsPtpPtpsPtpIndex, cwsPtpPtpIdTableSnmpKey }
::= { cwsPtpPtpIdTable 1 }
CwsPtpPtpIdEntry ::= SEQUENCE {
cwsPtpPtpIdTableSnmpKey Integer32,
cwsPtpPtpIdName NameString
}
cwsPtpPtpIdTableSnmpKey OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique key for cwsPtpPtpId"
::= { cwsPtpPtpIdEntry 1 }
cwsPtpPtpIdName OBJECT-TYPE
SYNTAX NameString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Name of the ptp instance. Read only attribute."
::= { cwsPtpPtpIdEntry 2 }
cwsPtpPtpStateTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPtpPtpStateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "State information of this PTP instance."
::= { cienaWsPtpMIB 5 }
cwsPtpPtpStateEntry OBJECT-TYPE
SYNTAX CwsPtpPtpStateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPtpPtpStateTable."
INDEX { cwsPtpPtpsPtpIndex, cwsPtpPtpStateTableSnmpKey }
::= { cwsPtpPtpStateTable 1 }
CwsPtpPtpStateEntry ::= SEQUENCE {
cwsPtpPtpStateTableSnmpKey Integer32,
cwsPtpPtpStateAdminState EnabledDisabledEnum,
cwsPtpPtpStateOperationalState PtpOpEnum,
cwsPtpPtpStateSpliManagement EnabledDisabledEnum
}
cwsPtpPtpStateTableSnmpKey OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique key for cwsPtpPtpState"
::= { cwsPtpPtpStateEntry 1 }
cwsPtpPtpStateAdminState OBJECT-TYPE
SYNTAX EnabledDisabledEnum
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Administrative state (enabled or disabled) of the PTP. If Admin State is set to enabled, majority of the ptp fields will no longer be modifiable. When PTP Transmitter State is Disabled, PTP Admin State cannot be changed from Disabled to Enabled."
::= { cwsPtpPtpStateEntry 2 }
cwsPtpPtpStateOperationalState OBJECT-TYPE
SYNTAX PtpOpEnum
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Operational state of the ptp. Read-only attribute."
::= { cwsPtpPtpStateEntry 3 }
cwsPtpPtpStateSpliManagement OBJECT-TYPE
SYNTAX EnabledDisabledEnum
MAX-ACCESS read-write
STATUS current
DESCRIPTION "SPLI enabled or disabled state on the PTP."
::= { cwsPtpPtpStateEntry 4 }
cwsPtpPtpPropertiesTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPtpPtpPropertiesEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "All the configurable and operational data of this PTP instance."
::= { cienaWsPtpMIB 6 }
cwsPtpPtpPropertiesEntry OBJECT-TYPE
SYNTAX CwsPtpPtpPropertiesEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPtpPtpPropertiesTable."
INDEX { cwsPtpPtpsPtpIndex, cwsPtpPtpPropertiesTableSnmpKey }
::= { cwsPtpPtpPropertiesTable 1 }
CwsPtpPtpPropertiesEntry ::= SEQUENCE {
cwsPtpPtpPropertiesTableSnmpKey Integer32,
cwsPtpPtpPropertiesXcvrType XcvrType,
cwsPtpPtpPropertiesParentIndex XcvrId,
cwsPtpPtpPropertiesRate INTEGER
}
cwsPtpPtpPropertiesTableSnmpKey OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique key for cwsPtpPtpProperties"
::= { cwsPtpPtpPropertiesEntry 1 }
cwsPtpPtpPropertiesXcvrType OBJECT-TYPE
SYNTAX XcvrType
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Transceiver type of the xcvr that's associated with this ptp. Type depends on what is physically plugged in. Read only attribute."
::= { cwsPtpPtpPropertiesEntry 2 }
cwsPtpPtpPropertiesParentIndex OBJECT-TYPE
SYNTAX XcvrId
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Index of the transceiver (XCVR) associated with the PTP. Read-only attribute."
::= { cwsPtpPtpPropertiesEntry 3 }
cwsPtpPtpPropertiesRate OBJECT-TYPE
SYNTAX INTEGER { none(0), linerate10dot3125gbps(1), linerate41dot25gbps(2), linerate103dot125gpbs(3), linerate2xotu4(4), linerate1xotu4(5), linerate1dot5xotu4(6) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The Line Rate value, based off the mode of the parent XCVR."
::= { cwsPtpPtpPropertiesEntry 4 }
cwsPtpTransmitterTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPtpTransmitterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "PTP transmitter related config and operational data fields."
::= { cienaWsPtpMIB 7 }
cwsPtpTransmitterEntry OBJECT-TYPE
SYNTAX CwsPtpTransmitterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPtpTransmitterTable."
INDEX { cwsPtpPtpsPtpIndex, cwsPtpTransmitterTableSnmpKey }
::= { cwsPtpTransmitterTable 1 }
CwsPtpTransmitterEntry ::= SEQUENCE {
cwsPtpTransmitterTableSnmpKey Integer32,
cwsPtpTransmitterState EnabledDisabledNaEnum
}
cwsPtpTransmitterTableSnmpKey OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique key for cwsPtpTransmitter"
::= { cwsPtpTransmitterEntry 1 }
cwsPtpTransmitterState OBJECT-TYPE
SYNTAX EnabledDisabledNaEnum
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Transmitter state (enabled or disabled) of the PTP. PTP Admin State cannot be changed to enabled unless transmitter-state is enabled."
::= { cwsPtpTransmitterEntry 2 }
cwsPtpWavelengthTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPtpWavelengthEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "None"
::= { cienaWsPtpMIB 8 }
cwsPtpWavelengthEntry OBJECT-TYPE
SYNTAX CwsPtpWavelengthEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPtpWavelengthTable."
INDEX { cwsPtpPtpsPtpIndex, cwsPtpWavelengthTableSnmpKey }
::= { cwsPtpWavelengthTable 1 }
CwsPtpWavelengthEntry ::= SEQUENCE {
cwsPtpWavelengthTableSnmpKey Integer32,
cwsPtpWavelengthValue Decimal2Dig,
cwsPtpWavelengthMinValue Decimal2DigSmall,
cwsPtpWavelengthMaxValue Decimal2DigSmall,
cwsPtpWavelengthActual Decimal2Dig
}
cwsPtpWavelengthTableSnmpKey OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique key for cwsPtpWavelength"
::= { cwsPtpWavelengthEntry 1 }
cwsPtpWavelengthValue OBJECT-TYPE
SYNTAX Decimal2Dig
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Wavelength value setting of the ptp, in nm. This is the configured wavelength value. Wavelength value cannot be modified while Admin State is set to enabled, except when changing from zero value to another value. It also cannot be modified if the PTP XCVR type is not a modem. Wavelength cannot be modified in the same operation as Frequency, Channel, and Wavelength Spacing, only one of those fields may be modified in a single operation. If Wavelength is modified, Frequency and Channel will be automatically updated to valid values. Modification to this field will be validated against the Wavelength Spacing field. In the case of automatic wavelength assignment, if Member ID = n, Port 1 PTP Channel = (n * 2 - 1), P12 PTP Channel = (n * 2). If PTP Wavelength, Frequency, and Channel have non-zero values, automatic wavelength assignment shall be skipped. If user provisions a Member ID that exceeds the maximum wavelength allocation specified in selected Band Plan (e.g. setting Member ID to 45 with Fixed-88 plan), automatic wavelength assignment shall be skipped. "
::= { cwsPtpWavelengthEntry 2 }
cwsPtpWavelengthMinValue OBJECT-TYPE
SYNTAX Decimal2DigSmall
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The Wavelength Min value."
::= { cwsPtpWavelengthEntry 3 }
cwsPtpWavelengthMaxValue OBJECT-TYPE
SYNTAX Decimal2DigSmall
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The Wavelength Max Value."
::= { cwsPtpWavelengthEntry 4 }
cwsPtpWavelengthActual OBJECT-TYPE
SYNTAX Decimal2Dig
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The actual wavelength value of the ptp. in nm. It may or may not be equal to the configurable 'wavelength/value'."
::= { cwsPtpWavelengthEntry 5 }
cwsPtpChannelsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPtpChannelsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "PTP channels related operational data fields."
::= { cienaWsPtpMIB 9 }
cwsPtpChannelsEntry OBJECT-TYPE
SYNTAX CwsPtpChannelsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPtpChannelsTable."
INDEX { cwsPtpPtpsPtpIndex, cwsPtpChannelsTableSnmpKey }
::= { cwsPtpChannelsTable 1 }
CwsPtpChannelsEntry ::= SEQUENCE {
cwsPtpChannelsTableSnmpKey Integer32,
cwsPtpChannelsNumberOfChannels ChannelsNumber
}
cwsPtpChannelsTableSnmpKey OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique key for cwsPtpChannels"
::= { cwsPtpChannelsEntry 1 }
cwsPtpChannelsNumberOfChannels OBJECT-TYPE
SYNTAX ChannelsNumber
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of channels this PTP has."
::= { cwsPtpChannelsEntry 2 }
cwsPtpChannelTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPtpChannelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Operational data of a specific PTP channel."
::= { cienaWsPtpMIB 10 }
cwsPtpChannelEntry OBJECT-TYPE
SYNTAX CwsPtpChannelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPtpChannelTable."
INDEX { cwsPtpPtpsPtpIndex, cwsPtpChannelChannelNumber }
::= { cwsPtpChannelTable 1 }
CwsPtpChannelEntry ::= SEQUENCE {
cwsPtpChannelChannelNumber Integer32
}
cwsPtpChannelChannelNumber OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Channel number of the channel status."
::= { cwsPtpChannelEntry 1 }
cwsPtpRxPowerTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPtpRxPowerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "None"
::= { cienaWsPtpMIB 11 }
cwsPtpRxPowerEntry OBJECT-TYPE
SYNTAX CwsPtpRxPowerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPtpRxPowerTable."
INDEX { cwsPtpPtpsPtpIndex, cwsPtpChannelChannelNumber, cwsPtpRxPowerTableSnmpKey }
::= { cwsPtpRxPowerTable 1 }
CwsPtpRxPowerEntry ::= SEQUENCE {
cwsPtpRxPowerTableSnmpKey Integer32,
cwsXcvrRxPowerActual Decimal1Dig,
cwsXcvrRxPowerMaximum Decimal1Dig,
cwsXcvrRxPowerMinimum Decimal1Dig,
cwsXcvrRxPowerMaximumRecordedTime StringMaxl32,
cwsXcvrRxPowerMinimumRecordedTime StringMaxl32
}
cwsPtpRxPowerTableSnmpKey OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique key for cwsPtpRxPower"
::= { cwsPtpRxPowerEntry 1 }
cwsXcvrRxPowerActual OBJECT-TYPE
SYNTAX Decimal1Dig
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Actual Tx or Rx optical power in dBm."
::= { cwsPtpRxPowerEntry 2 }
cwsXcvrRxPowerMaximum OBJECT-TYPE
SYNTAX Decimal1Dig
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Maximum Tx or Rx optical power in dBm."
::= { cwsPtpRxPowerEntry 3 }
cwsXcvrRxPowerMinimum OBJECT-TYPE
SYNTAX Decimal1Dig
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Minimum Tx or Rx optical power in dBm."
::= { cwsPtpRxPowerEntry 4 }
cwsXcvrRxPowerMaximumRecordedTime OBJECT-TYPE
SYNTAX StringMaxl32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The exact date and time when the maximum optical power (Tx or Rx) was recorded. In the format of a date time string."
::= { cwsPtpRxPowerEntry 5 }
cwsXcvrRxPowerMinimumRecordedTime OBJECT-TYPE
SYNTAX StringMaxl32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The exact date and time when the minimum optical power (Tx or Rx) was recorded. In the format of a date time string."
::= { cwsPtpRxPowerEntry 6 }
cwsPtpRxStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPtpRxStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "None"
::= { cienaWsPtpMIB 12 }
cwsPtpRxStatusEntry OBJECT-TYPE
SYNTAX CwsPtpRxStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPtpRxStatusTable."
INDEX { cwsPtpPtpsPtpIndex, cwsPtpChannelChannelNumber, cwsPtpRxStatusTableSnmpKey }
::= { cwsPtpRxStatusTable 1 }
CwsPtpRxStatusEntry ::= SEQUENCE {
cwsPtpRxStatusTableSnmpKey Integer32,
cwsXcvrRxStatusHighAlarmStatus TruthValue,
cwsXcvrRxStatusLowAlarmStatus TruthValue,
cwsXcvrRxStatusHighWarningStatus TruthValue,
cwsXcvrRxStatusLowWarningStatus TruthValue,
cwsPtpRxStatusLossOfSignal TruthValue,
cwsPtpRxStatusLossOfLock TruthValue
}
cwsPtpRxStatusTableSnmpKey OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique key for cwsPtpRxStatus"
::= { cwsPtpRxStatusEntry 1 }
cwsXcvrRxStatusHighAlarmStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Optical power high alarm status, boolean, true if alarm is raised, false if alarm is not raised."
::= { cwsPtpRxStatusEntry 2 }
cwsXcvrRxStatusLowAlarmStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Optical power low alarm status, boolean, true if alarm is raised, false if alarm is not raised."
::= { cwsPtpRxStatusEntry 3 }
cwsXcvrRxStatusHighWarningStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Optical power high warning status, boolean, true if warning is raised, false if warning is not raised."
::= { cwsPtpRxStatusEntry 4 }
cwsXcvrRxStatusLowWarningStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Optical power low warning status, boolean, true if warning is raised, false if warning is not raised."
::= { cwsPtpRxStatusEntry 5 }
cwsPtpRxStatusLossOfSignal OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Rx Loss of Signal."
::= { cwsPtpRxStatusEntry 6 }
cwsPtpRxStatusLossOfLock OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Rx Loss of Lock."
::= { cwsPtpRxStatusEntry 7 }
cwsPtpTxPowerTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPtpTxPowerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "None"
::= { cienaWsPtpMIB 13 }
cwsPtpTxPowerEntry OBJECT-TYPE
SYNTAX CwsPtpTxPowerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPtpTxPowerTable."
INDEX { cwsPtpPtpsPtpIndex, cwsPtpChannelChannelNumber, cwsPtpTxPowerTableSnmpKey }
::= { cwsPtpTxPowerTable 1 }
CwsPtpTxPowerEntry ::= SEQUENCE {
cwsPtpTxPowerTableSnmpKey Integer32,
cwsXcvrTxPowerActual Decimal1Dig,
cwsXcvrTxPowerMaximum Decimal1Dig,
cwsXcvrTxPowerMinimum Decimal1Dig,
cwsXcvrTxPowerMaximumRecordedTime StringMaxl32,
cwsXcvrTxPowerMinimumRecordedTime StringMaxl32
}
cwsPtpTxPowerTableSnmpKey OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique key for cwsPtpTxPower"
::= { cwsPtpTxPowerEntry 1 }
cwsXcvrTxPowerActual OBJECT-TYPE
SYNTAX Decimal1Dig
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Actual Tx or Rx optical power in dBm."
::= { cwsPtpTxPowerEntry 2 }
cwsXcvrTxPowerMaximum OBJECT-TYPE
SYNTAX Decimal1Dig
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Maximum Tx or Rx optical power in dBm."
::= { cwsPtpTxPowerEntry 3 }
cwsXcvrTxPowerMinimum OBJECT-TYPE
SYNTAX Decimal1Dig
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Minimum Tx or Rx optical power in dBm."
::= { cwsPtpTxPowerEntry 4 }
cwsXcvrTxPowerMaximumRecordedTime OBJECT-TYPE
SYNTAX StringMaxl32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The exact date and time when the maximum optical power (Tx or Rx) was recorded. In the format of a date time string."
::= { cwsPtpTxPowerEntry 5 }
cwsXcvrTxPowerMinimumRecordedTime OBJECT-TYPE
SYNTAX StringMaxl32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The exact date and time when the minimum optical power (Tx or Rx) was recorded. In the format of a date time string."
::= { cwsPtpTxPowerEntry 6 }
cwsPtpTxStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPtpTxStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "None"
::= { cienaWsPtpMIB 14 }
cwsPtpTxStatusEntry OBJECT-TYPE
SYNTAX CwsPtpTxStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPtpTxStatusTable."
INDEX { cwsPtpPtpsPtpIndex, cwsPtpChannelChannelNumber, cwsPtpTxStatusTableSnmpKey }
::= { cwsPtpTxStatusTable 1 }
CwsPtpTxStatusEntry ::= SEQUENCE {
cwsPtpTxStatusTableSnmpKey Integer32,
cwsXcvrTxStatusHighAlarmStatus TruthValue,
cwsXcvrTxStatusLowAlarmStatus TruthValue,
cwsXcvrTxStatusHighWarningStatus TruthValue,
cwsXcvrTxStatusLowWarningStatus TruthValue
}
cwsPtpTxStatusTableSnmpKey OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique key for cwsPtpTxStatus"
::= { cwsPtpTxStatusEntry 1 }
cwsXcvrTxStatusHighAlarmStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Optical power high alarm status, boolean, true if alarm is raised, false if alarm is not raised."
::= { cwsPtpTxStatusEntry 2 }
cwsXcvrTxStatusLowAlarmStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Optical power low alarm status, boolean, true if alarm is raised, false if alarm is not raised."
::= { cwsPtpTxStatusEntry 3 }
cwsXcvrTxStatusHighWarningStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Optical power high warning status, boolean, true if warning is raised, false if warning is not raised."
::= { cwsPtpTxStatusEntry 4 }
cwsXcvrTxStatusLowWarningStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Optical power low warning status, boolean, true if warning is raised, false if warning is not raised."
::= { cwsPtpTxStatusEntry 5 }
cwsPtpDiagnosticsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPtpDiagnosticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "None"
::= { cienaWsPtpMIB 15 }
cwsPtpDiagnosticsEntry OBJECT-TYPE
SYNTAX CwsPtpDiagnosticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPtpDiagnosticsTable."
INDEX { cwsPtpPtpsPtpIndex, cwsPtpDiagnosticsTableSnmpKey }
::= { cwsPtpDiagnosticsTable 1 }
CwsPtpDiagnosticsEntry ::= SEQUENCE {
cwsPtpDiagnosticsTableSnmpKey Integer32,
cwsPtpDiagnosticsNumberOfChannels ChannelsNumber,
cwsPtpDiagnosticsNumberOfEthernet Unsigned32
}
cwsPtpDiagnosticsTableSnmpKey OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique key for cwsPtpDiagnostics"
::= { cwsPtpDiagnosticsEntry 1 }
cwsPtpDiagnosticsNumberOfChannels OBJECT-TYPE
SYNTAX ChannelsNumber
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of channels the PTP has."
::= { cwsPtpDiagnosticsEntry 2 }
cwsPtpDiagnosticsNumberOfEthernet OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of Ethernet connections the PTP has."
::= { cwsPtpDiagnosticsEntry 3 }
cwsPtpPtpOpticalDiagnosticsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPtpPtpOpticalDiagnosticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "None"
::= { cienaWsPtpMIB 16 }
cwsPtpPtpOpticalDiagnosticsEntry OBJECT-TYPE
SYNTAX CwsPtpPtpOpticalDiagnosticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPtpPtpOpticalDiagnosticsTable."
INDEX { cwsPtpPtpsPtpIndex, cwsPtpPtpOpticalDiagnosticsChannelNumber }
::= { cwsPtpPtpOpticalDiagnosticsTable 1 }
CwsPtpPtpOpticalDiagnosticsEntry ::= SEQUENCE {
cwsPtpPtpOpticalDiagnosticsChannelNumber Integer32
}
cwsPtpPtpOpticalDiagnosticsChannelNumber OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Channel number of the physical diagnostic status."
::= { cwsPtpPtpOpticalDiagnosticsEntry 1 }
cwsPtpPtpRxOpticalDiagnosticsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPtpPtpRxOpticalDiagnosticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "None"
::= { cienaWsPtpMIB 17 }
cwsPtpPtpRxOpticalDiagnosticsEntry OBJECT-TYPE
SYNTAX CwsPtpPtpRxOpticalDiagnosticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPtpPtpRxOpticalDiagnosticsTable."
INDEX { cwsPtpPtpsPtpIndex, cwsPtpPtpOpticalDiagnosticsChannelNumber, cwsPtpPtpRxOpticalDiagnosticsTableSnmpKey }
::= { cwsPtpPtpRxOpticalDiagnosticsTable 1 }
CwsPtpPtpRxOpticalDiagnosticsEntry ::= SEQUENCE {
cwsPtpPtpRxOpticalDiagnosticsTableSnmpKey Integer32,
cwsPtpPtpRxOpticalDiagnosticsLossOfSignal TruthValue,
cwsPtpPtpRxOpticalDiagnosticsLossOfLock TruthValue
}
cwsPtpPtpRxOpticalDiagnosticsTableSnmpKey OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique key for cwsPtpPtpRxOpticalDiagnostics"
::= { cwsPtpPtpRxOpticalDiagnosticsEntry 1 }
cwsPtpPtpRxOpticalDiagnosticsLossOfSignal OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Rx Loss of Signal."
::= { cwsPtpPtpRxOpticalDiagnosticsEntry 2 }
cwsPtpPtpRxOpticalDiagnosticsLossOfLock OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Rx CDR Loss of Lock."
::= { cwsPtpPtpRxOpticalDiagnosticsEntry 3 }
cwsPtpPtpTxOpticalDiagnosticsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPtpPtpTxOpticalDiagnosticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "None"
::= { cienaWsPtpMIB 18 }
cwsPtpPtpTxOpticalDiagnosticsEntry OBJECT-TYPE
SYNTAX CwsPtpPtpTxOpticalDiagnosticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPtpPtpTxOpticalDiagnosticsTable."
INDEX { cwsPtpPtpsPtpIndex, cwsPtpPtpOpticalDiagnosticsChannelNumber, cwsPtpPtpTxOpticalDiagnosticsTableSnmpKey }
::= { cwsPtpPtpTxOpticalDiagnosticsTable 1 }
CwsPtpPtpTxOpticalDiagnosticsEntry ::= SEQUENCE {
cwsPtpPtpTxOpticalDiagnosticsTableSnmpKey Integer32,
cwsPtpPtpTxOpticalDiagnosticsLossOfSignal TruthValue,
cwsPtpPtpTxOpticalDiagnosticsLossOfLock TruthValue
}
cwsPtpPtpTxOpticalDiagnosticsTableSnmpKey OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique key for cwsPtpPtpTxOpticalDiagnostics"
::= { cwsPtpPtpTxOpticalDiagnosticsEntry 1 }
cwsPtpPtpTxOpticalDiagnosticsLossOfSignal OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Tx Loss of Signal."
::= { cwsPtpPtpTxOpticalDiagnosticsEntry 2 }
cwsPtpPtpTxOpticalDiagnosticsLossOfLock OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Tx Loss of Lock."
::= { cwsPtpPtpTxOpticalDiagnosticsEntry 3 }
cwsPtpPtpEthernetDiagnosticsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPtpPtpEthernetDiagnosticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "None"
::= { cienaWsPtpMIB 19 }
cwsPtpPtpEthernetDiagnosticsEntry OBJECT-TYPE
SYNTAX CwsPtpPtpEthernetDiagnosticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPtpPtpEthernetDiagnosticsTable."
INDEX { cwsPtpPtpsPtpIndex, cwsPtpPtpEthernetDiagnosticsEthernetId }
::= { cwsPtpPtpEthernetDiagnosticsTable 1 }
CwsPtpPtpEthernetDiagnosticsEntry ::= SEQUENCE {
cwsPtpPtpEthernetDiagnosticsEthernetId Integer32
}
cwsPtpPtpEthernetDiagnosticsEthernetId OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Ethernet Connection Id."
::= { cwsPtpPtpEthernetDiagnosticsEntry 1 }
cwsPtpPmaTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPtpPmaEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "None"
::= { cienaWsPtpMIB 20 }
cwsPtpPmaEntry OBJECT-TYPE
SYNTAX CwsPtpPmaEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPtpPmaTable."
INDEX { cwsPtpPtpsPtpIndex, cwsPtpPtpEthernetDiagnosticsEthernetId, cwsPtpPmaTableSnmpKey }
::= { cwsPtpPmaTable 1 }
CwsPtpPmaEntry ::= SEQUENCE {
cwsPtpPmaTableSnmpKey Integer32,
cwsPtpPmaSerdesOutOfLock TruthValue
}
cwsPtpPmaTableSnmpKey OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique key for cwsPtpPma"
::= { cwsPtpPmaEntry 1 }
cwsPtpPmaSerdesOutOfLock OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Display true if the serializer/deserializer, on a given lane (1 for 10GE, 4 for 40GE and 20 for 100GE), is unable to lock to the incoming signal. Display false otherwise."
::= { cwsPtpPmaEntry 2 }
cwsPtpFecTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPtpFecEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "None"
::= { cienaWsPtpMIB 21 }
cwsPtpFecEntry OBJECT-TYPE
SYNTAX CwsPtpFecEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPtpFecTable."
INDEX { cwsPtpPtpsPtpIndex, cwsPtpPtpEthernetDiagnosticsEthernetId, cwsPtpFecTableSnmpKey }
::= { cwsPtpFecTable 1 }
CwsPtpFecEntry ::= SEQUENCE {
cwsPtpFecTableSnmpKey Integer32,
cwsPtpFecLossOfAlignmentMarkerLock TruthValue
}
cwsPtpFecTableSnmpKey OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique key for cwsPtpFec"
::= { cwsPtpFecEntry 1 }
cwsPtpFecLossOfAlignmentMarkerLock OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Loss of Alignment Marker lock."
::= { cwsPtpFecEntry 2 }
cwsPtpPcsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPtpPcsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "None"
::= { cienaWsPtpMIB 22 }
cwsPtpPcsEntry OBJECT-TYPE
SYNTAX CwsPtpPcsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPtpPcsTable."
INDEX { cwsPtpPtpsPtpIndex, cwsPtpPtpEthernetDiagnosticsEthernetId, cwsPtpPcsTableSnmpKey }
::= { cwsPtpPcsTable 1 }
CwsPtpPcsEntry ::= SEQUENCE {
cwsPtpPcsTableSnmpKey Integer32,
cwsPtpPcsLossOfAlignmentMarker TruthValue,
cwsPtpPcsLossOfBlockLock TruthValue,
cwsPtpPcsHighBitErrorRate TruthValue
}
cwsPtpPcsTableSnmpKey OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique key for cwsPtpPcs"
::= { cwsPtpPcsEntry 1 }
cwsPtpPcsLossOfAlignmentMarker OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Loss of Alignment Marker."
::= { cwsPtpPcsEntry 2 }
cwsPtpPcsLossOfBlockLock OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Loss of Block Lock."
::= { cwsPtpPcsEntry 3 }
cwsPtpPcsHighBitErrorRate OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "High bit error rate."
::= { cwsPtpPcsEntry 4 }
cwsPtpRsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPtpRsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "None"
::= { cienaWsPtpMIB 23 }
cwsPtpRsEntry OBJECT-TYPE
SYNTAX CwsPtpRsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPtpRsTable."
INDEX { cwsPtpPtpsPtpIndex, cwsPtpPtpEthernetDiagnosticsEthernetId, cwsPtpRsTableSnmpKey }
::= { cwsPtpRsTable 1 }
CwsPtpRsEntry ::= SEQUENCE {
cwsPtpRsTableSnmpKey Integer32,
cwsPtpRsLinkDown TruthValue,
cwsPtpRsLocalFault TruthValue,
cwsPtpRsRemoteFault TruthValue
}
cwsPtpRsTableSnmpKey OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique key for cwsPtpRs"
::= { cwsPtpRsEntry 1 }
cwsPtpRsLinkDown OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Link Down."
::= { cwsPtpRsEntry 2 }
cwsPtpRsLocalFault OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Local Fault."
::= { cwsPtpRsEntry 3 }
cwsPtpRsRemoteFault OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Remote Fault."
::= { cwsPtpRsEntry 4 }
cwsPtpTraceTable OBJECT-TYPE
SYNTAX SEQUENCE OF CwsPtpTraceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "None"
::= { cienaWsPtpMIB 24 }
cwsPtpTraceEntry OBJECT-TYPE
SYNTAX CwsPtpTraceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry for cwsPtpTraceTable."
INDEX { cwsPtpPtpsPtpIndex, cwsPtpTraceTableSnmpKey }
::= { cwsPtpTraceTable 1 }
CwsPtpTraceEntry ::= SEQUENCE {
cwsPtpTraceTableSnmpKey Integer32,
cwsPtpTraceMismatchMode TraceMismatchMode,
cwsPtpTraceMismatchFailMode TraceMismatchFailMode,
cwsPtpTraceTxSapi StringMaxl15,
cwsPtpTraceTxDapi StringMaxl15,
cwsPtpTraceTxOper StringMaxl32,
cwsPtpTraceTxOperActual StringMaxl32,
cwsPtpTraceTxOperMode TraceTxOperMode,
cwsPtpTraceRxSapi StringMaxl15,
cwsPtpTraceRxDapi StringMaxl15,
cwsPtpTraceRxOper StringMaxl32,
cwsPtpTraceExpSapi StringMaxl15,
cwsPtpTraceExpDapi StringMaxl15,
cwsPtpTraceExpOper StringMaxl32
}
cwsPtpTraceTableSnmpKey OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Unique key for cwsPtpTrace"
::= { cwsPtpTraceEntry 1 }
cwsPtpTraceMismatchMode OBJECT-TYPE
SYNTAX TraceMismatchMode
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Mismatch Mode"
::= { cwsPtpTraceEntry 2 }
cwsPtpTraceMismatchFailMode OBJECT-TYPE
SYNTAX TraceMismatchFailMode
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Mismatch Failure Mode"
::= { cwsPtpTraceEntry 3 }
cwsPtpTraceTxSapi OBJECT-TYPE
SYNTAX StringMaxl15
MAX-ACCESS read-write
STATUS current
DESCRIPTION "SAPI Tx String"
::= { cwsPtpTraceEntry 4 }
cwsPtpTraceTxDapi OBJECT-TYPE
SYNTAX StringMaxl15
MAX-ACCESS read-write
STATUS current
DESCRIPTION "DAPI Tx String"
::= { cwsPtpTraceEntry 5 }
cwsPtpTraceTxOper OBJECT-TYPE
SYNTAX StringMaxl32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Operator Tx String"
::= { cwsPtpTraceEntry 6 }
cwsPtpTraceTxOperActual OBJECT-TYPE
SYNTAX StringMaxl32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Operator Tx String Actual"
::= { cwsPtpTraceEntry 7 }
cwsPtpTraceTxOperMode OBJECT-TYPE
SYNTAX TraceTxOperMode
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Operator Tx Mode"
::= { cwsPtpTraceEntry 8 }
cwsPtpTraceRxSapi OBJECT-TYPE
SYNTAX StringMaxl15
MAX-ACCESS read-only
STATUS current
DESCRIPTION "SAPI Rx String"
::= { cwsPtpTraceEntry 9 }
cwsPtpTraceRxDapi OBJECT-TYPE
SYNTAX StringMaxl15
MAX-ACCESS read-only
STATUS current
DESCRIPTION "DAPI Rx String"
::= { cwsPtpTraceEntry 10 }
cwsPtpTraceRxOper OBJECT-TYPE
SYNTAX StringMaxl32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Operator Rx String"
::= { cwsPtpTraceEntry 11 }
cwsPtpTraceExpSapi OBJECT-TYPE
SYNTAX StringMaxl15
MAX-ACCESS read-write
STATUS current
DESCRIPTION "SAPI Expected Rx String"
::= { cwsPtpTraceEntry 12 }
cwsPtpTraceExpDapi OBJECT-TYPE
SYNTAX StringMaxl15
MAX-ACCESS read-write
STATUS current
DESCRIPTION "DAPI Expected Rx String"
::= { cwsPtpTraceEntry 13 }
cwsPtpTraceExpOper OBJECT-TYPE
SYNTAX StringMaxl32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Operator Expected Rx String"
::= { cwsPtpTraceEntry 14 }
-- Conformance statements
cienaWsPtpObjects OBJECT IDENTIFIER
::= { cienaWsPtpMIB 1 }
cienaWsPtpConformance OBJECT IDENTIFIER
::= { cienaWsPtpMIB 2 }
cienaWsPtpGroups OBJECT IDENTIFIER
::= { cienaWsPtpConformance 1 }
cienaWsPtpGroup OBJECT-GROUP
OBJECTS {
cwsPtpPtpsPtpIndex,
cwsPtpPtpIdName,
cwsPtpPtpStateAdminState,
cwsPtpPtpStateOperationalState,
cwsPtpPtpStateSpliManagement,
cwsPtpPtpPropertiesXcvrType,
cwsPtpPtpPropertiesParentIndex,
cwsPtpPtpPropertiesRate,
cwsPtpTransmitterState,
cwsPtpWavelengthValue,
cwsPtpWavelengthMinValue,
cwsPtpWavelengthMaxValue,
cwsPtpWavelengthActual,
cwsPtpChannelsNumberOfChannels,
cwsPtpChannelChannelNumber,
cwsXcvrRxPowerActual,
cwsXcvrRxPowerMaximum,
cwsXcvrRxPowerMinimum,
cwsXcvrRxPowerMaximumRecordedTime,
cwsXcvrRxPowerMinimumRecordedTime,
cwsXcvrRxStatusHighAlarmStatus,
cwsXcvrRxStatusLowAlarmStatus,
cwsXcvrRxStatusHighWarningStatus,
cwsXcvrRxStatusLowWarningStatus,
cwsPtpRxStatusLossOfSignal,
cwsPtpRxStatusLossOfLock,
cwsXcvrTxPowerActual,
cwsXcvrTxPowerMaximum,
cwsXcvrTxPowerMinimum,
cwsXcvrTxPowerMaximumRecordedTime,
cwsXcvrTxPowerMinimumRecordedTime,
cwsXcvrTxStatusHighAlarmStatus,
cwsXcvrTxStatusLowAlarmStatus,
cwsXcvrTxStatusHighWarningStatus,
cwsXcvrTxStatusLowWarningStatus,
cwsPtpDiagnosticsNumberOfChannels,
cwsPtpDiagnosticsNumberOfEthernet,
cwsPtpPtpOpticalDiagnosticsChannelNumber,
cwsPtpPtpRxOpticalDiagnosticsLossOfSignal,
cwsPtpPtpRxOpticalDiagnosticsLossOfLock,
cwsPtpPtpTxOpticalDiagnosticsLossOfSignal,
cwsPtpPtpTxOpticalDiagnosticsLossOfLock,
cwsPtpPtpEthernetDiagnosticsEthernetId,
cwsPtpPmaSerdesOutOfLock,
cwsPtpFecLossOfAlignmentMarkerLock,
cwsPtpPcsLossOfAlignmentMarker,
cwsPtpPcsLossOfBlockLock,
cwsPtpPcsHighBitErrorRate,
cwsPtpRsLinkDown,
cwsPtpRsLocalFault,
cwsPtpRsRemoteFault,
cwsPtpTraceMismatchMode,
cwsPtpTraceMismatchFailMode,
cwsPtpTraceTxSapi,
cwsPtpTraceTxDapi,
cwsPtpTraceTxOper,
cwsPtpTraceTxOperActual,
cwsPtpTraceTxOperMode,
cwsPtpTraceRxSapi,
cwsPtpTraceRxDapi,
cwsPtpTraceRxOper,
cwsPtpTraceExpSapi,
cwsPtpTraceExpDapi,
cwsPtpTraceExpOper
}
STATUS current
DESCRIPTION "Conformance Group"
::= { cienaWsPtpGroups 1 }
cienaWsPtpCompliances OBJECT IDENTIFIER
::= { cienaWsPtpConformance 2 }
cienaWsPtpCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION "Compliance"
MODULE MANDATORY-GROUPS { cienaWsPtpGroup }
::= { cienaWsPtpCompliances 1 }
END -- End module
|