summaryrefslogtreecommitdiff
path: root/MIBS/ciena/CIENA-CES-PORT-XCVR-MIB
blob: 368d386d08c4610f14e655fb7cca3b49287f4724 (plain)
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
-- This file was included in Ciena MIB release MIBS-CIENA-CES-08-07-00-024
 --
 -- CIENA-CES-PORT-XCVR-MIB.my
 --

 CIENA-CES-PORT-XCVR-MIB DEFINITIONS ::= BEGIN

 IMPORTS 		
   Integer32, Unsigned32, NOTIFICATION-TYPE, OBJECT-TYPE, MODULE-IDENTITY			
	    FROM SNMPv2-SMI			
   DisplayString
	    FROM SNMPv2-TC						
   cienaCesNotifications, cienaCesConfig
       FROM CIENA-SMI
   cienaGlobalSeverity, cienaGlobalMacAddress
   	   FROM CIENA-GLOBAL-MIB;
	
	
 cienaCesPortXcvrMIB MODULE-IDENTITY
          LAST-UPDATED "201901030000Z"
          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 the port XCVR related notifications."
          REVISION
                   "201901030000Z"
          DESCRIPTION
                   "Add Rx/Tx power High/LowWarning Notifications."
          REVISION
                   "201809280000Z"
          DESCRIPTION
                   "Added cfp, qsfpPlus and qsfp28 in cienaCesPortXcvrIdentiferType.
                    Added unit information."
          REVISION
                   "201806150000Z"
          DESCRIPTION
                   "Added a new object cienaCesPortXcvrFecMode."
             REVISION
                   "201706070000Z"
          DESCRIPTION
                   "Updated contact info."
             REVISION
                   "201610070000Z"
          DESCRIPTION
                   "Added a new object cienaCesPortXcvrUncertifiedNotification."
             REVISION
                   "201108230000Z"
          DESCRIPTION
                   "Added a new object cienaCesPortXcvrTxOutputPower."
             REVISION
                   "201107060000Z"
          DESCRIPTION
                   "Corrected Units changed watts to uW in descriptions."
       ::= { cienaCesConfig 9 }
						
 --
 -- Node definitions
 --
	
 cienaCesPortXcvrMIBObjects OBJECT IDENTIFIER ::= { cienaCesPortXcvrMIB 1 }
 
 cienaCesPortXcvr  OBJECT IDENTIFIER ::= { cienaCesPortXcvrMIBObjects 1 }

 cienaCesPortXcvrNotif  OBJECT IDENTIFIER ::= { cienaCesPortXcvrMIBObjects 2 }

 -- Notifications 
  
 cienaCesPortXcvrMIBNotificationPrefix  OBJECT IDENTIFIER ::= { cienaCesNotifications 9 } 
 cienaCesPortXcvrMIBNotifications       OBJECT IDENTIFIER ::=  
                       { cienaCesPortXcvrMIBNotificationPrefix 0 }

 -- Conformance information 
 
 cienaCesPortXcvrMIBConformance OBJECT IDENTIFIER ::= { cienaCesPortXcvrMIB 3 } 
 cienaCesPortXcvrMIBCompliances OBJECT IDENTIFIER ::= { cienaCesPortXcvrMIBConformance 1 } 		
 cienaCesPortXcvrMIBGroups      OBJECT IDENTIFIER ::= { cienaCesPortXcvrMIBConformance 2 }

		
 cienaCesPortXcvrTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF CienaCesPortXcvrEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
	    "This table contains descriptions and settings for each of the 
	     physical transceiver devices."
    ::= { cienaCesPortXcvr 1 }
		 
 cienaCesPortXcvrEntry OBJECT-TYPE
    SYNTAX        CienaCesPortXcvrEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION "The transceiver device entry."
    INDEX { cienaCesPortXcvrId }
    ::= { cienaCesPortXcvrTable 1 }

 CienaCesPortXcvrEntry ::= SEQUENCE {     
    cienaCesPortXcvrId                                		INTEGER,    
    cienaCesPortXcvrOperState                         		INTEGER,  
    cienaCesPortXcvrTemperature	                     		INTEGER, 
	cienaCesPortXcvrVcc				                 		INTEGER,
    cienaCesPortXcvrBias				                 	INTEGER,
    cienaCesPortXcvrRxPower		 	                 		INTEGER, 
    cienaCesPortXcvrHighTempAlarmThreshold	         		Integer32,
    cienaCesPortXcvrLowTempAlarmThreshold	         		Integer32,
    cienaCesPortXcvrHighVccAlarmThreshold	         		Integer32,
    cienaCesPortXcvrLowVccAlarmThreshold	             	Integer32,
    cienaCesPortXcvrHighBiasAlarmThreshold	         		Integer32,
    cienaCesPortXcvrLowBiasAlarmThreshold	         		Integer32,
    cienaCesPortXcvrHighTxPwAlarmThreshold	         		Integer32,
    cienaCesPortXcvrLowTxPwAlarmThreshold	         		Integer32,
    cienaCesPortXcvrHighRxPwAlarmThreshold	         		Integer32,
    cienaCesPortXcvrLowRxPwAlarmThreshold	         		Integer32,
	cienaCesPortXcvrNotifChassisIndex						Unsigned32,
	cienaCesPortXcvrNotifShelfIndex							Unsigned32, 
	cienaCesPortXcvrNotifSlotIndex							Unsigned32, 
	cienaCesPortXcvrNotifPortNumber							Unsigned32,
    cienaCesPortXcvrIdentiferType   	                    INTEGER,
    cienaCesPortXcvrExtIdentiferType                  		INTEGER,
    cienaCesPortXcvrConnectorType                     	    INTEGER, 
    cienaCesPortXcvrType		                            INTEGER,
    cienaCesPortXcvrAdminState		   		                INTEGER,
    cienaCesPortXcvrVendorName	 	                	    DisplayString,
    cienaCesPortXcvrVendorOUI	 	                        OCTET STRING,
    cienaCesPortXcvrVendorPartNum                           DisplayString,    
    cienaCesPortXcvrRevNum                                  DisplayString,
    cienaCesPortXcvrSerialNum	                            DisplayString,
    cienaCesPortXcvrMfgDate		                            DisplayString,
    cienaCesPortXcvrWaveLength	                            INTEGER,
    cienaCesPortXcvrTxState		                            INTEGER,
    cienaCesPortXcvrTxFaultStatus                           INTEGER,
    cienaCesPortXcvrTxOutputPower	                 		INTEGER,
    cienaCesPortXcvrFecMode                                 INTEGER
 }

 cienaCesPortXcvrId OBJECT-TYPE
    SYNTAX           INTEGER (1..65535)
    MAX-ACCESS       not-accessible
    STATUS           current
    DESCRIPTION
	    "The ID for the transceiver."
    ::= { cienaCesPortXcvrEntry 1 } 

 cienaCesPortXcvrOperState OBJECT-TYPE
    SYNTAX           INTEGER {
                        disabled(1),
                        enabled(2),
                        loopback(3),
                        notPresent(4),
                        faulted(5)
                     }
    MAX-ACCESS       read-only
    STATUS           current
    DESCRIPTION
	    "The operational state of the transceiver."
    ::= { cienaCesPortXcvrEntry 2 }

 cienaCesPortXcvrTemperature OBJECT-TYPE
    SYNTAX        INTEGER (1..65535)
    UNITS         "celsius"
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
        "The temperature of the transceiver.
         Units are celsius."
    ::= { cienaCesPortXcvrEntry 3 }
 
 cienaCesPortXcvrVcc OBJECT-TYPE
    SYNTAX        INTEGER (1..65535)
    UNITS         "mV"
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
         "The voltage of the transceiver.
          Units are milli volts"
    ::= { cienaCesPortXcvrEntry 4 }
 
 cienaCesPortXcvrBias OBJECT-TYPE
    SYNTAX        INTEGER (1..65535)
    UNITS         "mA"
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
        "The bias of the transceiver.
         Units are milli amps"
    ::= { cienaCesPortXcvrEntry 5 }

 cienaCesPortXcvrRxPower OBJECT-TYPE
    SYNTAX        INTEGER (1..65535)
    UNITS         "uW"
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
	    "The measured receive power of the transceiver. 
	     Units are micro watts."
   ::= { cienaCesPortXcvrEntry 6 }

  cienaCesPortXcvrHighTempAlarmThreshold OBJECT-TYPE
    SYNTAX        Integer32
    UNITS         "celsius"
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
        "Indicates the higher threshold for the temperature alarm.
         Units are celsius."
    ::= { cienaCesPortXcvrEntry 7 }
  
  cienaCesPortXcvrLowTempAlarmThreshold OBJECT-TYPE
    SYNTAX        Integer32
    UNITS         "celsius"
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
        "Indicates the lower threshold for the temperature alarm.
         Units are celsius."
    ::= { cienaCesPortXcvrEntry 8 } 

  cienaCesPortXcvrHighVccAlarmThreshold OBJECT-TYPE
    SYNTAX        Integer32
    UNITS         "mV"
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
        "Indicates the higher threshold for the voltage alarm.
         Units are milli volts"
    ::= { cienaCesPortXcvrEntry 9 }
  
  cienaCesPortXcvrLowVccAlarmThreshold OBJECT-TYPE
    SYNTAX        Integer32
    UNITS         "mV"
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
        "Indicates the lower threshold for the voltage alarm.
         Units are milli volts"
    ::= { cienaCesPortXcvrEntry 10 }
 
 cienaCesPortXcvrHighBiasAlarmThreshold OBJECT-TYPE
    SYNTAX        Integer32
    UNITS         "mA"
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
        "Indicates the higher threshold for the bias alarm.
         Units are milli amps"
    ::= { cienaCesPortXcvrEntry 11 }

 cienaCesPortXcvrLowBiasAlarmThreshold OBJECT-TYPE
    SYNTAX        Integer32
    UNITS         "mA"
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
        "Indicates the lower threshold for the bias alarm.
         Units are milli amps"
    ::= { cienaCesPortXcvrEntry 12 }

 cienaCesPortXcvrHighTxPwAlarmThreshold OBJECT-TYPE
    SYNTAX        Integer32
    UNITS         "uW"
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
	    "Indicates the higher threshold for the Tx power alarm.
	     Units are micro watts"
    ::= { cienaCesPortXcvrEntry 13 }

 cienaCesPortXcvrLowTxPwAlarmThreshold OBJECT-TYPE
    SYNTAX        Integer32
    UNITS         "uW"
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
	    "Indicates the lower threshold for the Tx power alarm.
	     Units are micro watts."
    ::= { cienaCesPortXcvrEntry 14 }

  cienaCesPortXcvrHighRxPwAlarmThreshold OBJECT-TYPE
    SYNTAX        Integer32
    UNITS         "uW"
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
	    "Indicates the higher threshold for the Rx power alarm.
	     Units are micro watts."
    ::= { cienaCesPortXcvrEntry 15 }

  cienaCesPortXcvrLowRxPwAlarmThreshold OBJECT-TYPE
    SYNTAX        Integer32
    UNITS         "uW"
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
	    "Indicates the lower threshold for the Rx power alarm.
	     Units are micro watts."
    ::= { cienaCesPortXcvrEntry 16 }
 
 cienaCesPortXcvrNotifChassisIndex          OBJECT-TYPE
     SYNTAX          Unsigned32 (1..1)
     MAX-ACCESS      accessible-for-notify
     STATUS          current
     DESCRIPTION
           "Indicates the chassis index for the port used for trap definition."               
     ::= { cienaCesPortXcvrEntry 17 }
     
 cienaCesPortXcvrNotifShelfIndex          OBJECT-TYPE
     SYNTAX          Unsigned32 (1..1)
     MAX-ACCESS      accessible-for-notify
     STATUS          current
     DESCRIPTION
           "Indicates the shelf index for the port used for trap definition."               
     ::= { cienaCesPortXcvrEntry 18 }

 cienaCesPortXcvrNotifSlotIndex          OBJECT-TYPE
     SYNTAX          Unsigned32 (1..7)
     MAX-ACCESS      accessible-for-notify
     STATUS          current
     DESCRIPTION
           "Indicates the slot index for the port used for trap definition."
     ::= { cienaCesPortXcvrEntry 19 }

 cienaCesPortXcvrNotifPortNumber		OBJECT-TYPE
 	SYNTAX			Unsigned32(1..65535)
 	MAX-ACCESS		accessible-for-notify
 	STATUS			current
 	DESCRIPTION
 		"Indicates the port number for the corresponding PGID
 		used for trap definition."
 	::= { cienaCesPortXcvrEntry 20 }
   
 cienaCesPortXcvrIdentiferType OBJECT-TYPE
    SYNTAX           INTEGER {
                       unknown(1),
		               gbic(2),
		               solderedType(3),
		               sfp(4),
                       xbi(5),
                       xenpak(6),
                       xfp(7),
                       xff(8),
                       xfpe(9),
                       xpak(10),
                       x2(11),
		               reserved(12),
		               vendorSpecific(13),
                       cfp(14),
                       qsfpPlus(15),  
                       qsfp28(16)
                     }
    MAX-ACCESS       read-only
    STATUS           current
    DESCRIPTION
	    "Type for the transceiver."
    ::= { cienaCesPortXcvrEntry 21 }
   
 cienaCesPortXcvrExtIdentiferType OBJECT-TYPE
    SYNTAX           INTEGER 
    MAX-ACCESS       read-only
    STATUS           current
    DESCRIPTION
	    "Extended identifier type represents for this transceiver."
    ::= { cienaCesPortXcvrEntry 22 }

 cienaCesPortXcvrConnectorType OBJECT-TYPE
    SYNTAX     		 INTEGER (1..65535)
    MAX-ACCESS       read-only
    STATUS           current
    DESCRIPTION
	    "Type of connector:
 
	       	   unknown(1)
		       sc(2)
		       fiberChannelStyle1(3)
		       fiberChannelStyle2(4)
		       bnc/tnc(5)
		       coaxialHeader(6)
		       fiberJack(7)
		       lc(8)
		       mt-rj(9)
		       mu(10)
		       sg(11)
		       opticalPitTail(12)
		       reserved(13..32)
		       hssdc(33)
		       copperPitTail(34)
		       reserved(35..128)
		       vendorSpecific(129..256)"
    ::= { cienaCesPortXcvrEntry 23 }

 cienaCesPortXcvrType OBJECT-TYPE
    SYNTAX           INTEGER (1..65535)
    MAX-ACCESS       read-only
    STATUS           current
    DESCRIPTION
	    "Type of transceiver."
    ::= { cienaCesPortXcvrEntry 24 }

 cienaCesPortXcvrVendorName OBJECT-TYPE
    SYNTAX        DisplayString
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
	    "String containing this transceiver's vendor name."
    ::= { cienaCesPortXcvrEntry 25 }

 cienaCesPortXcvrVendorOUI OBJECT-TYPE
    SYNTAX        OCTET STRING(SIZE(0..255))
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
	    "String containing this transceiver's vendor OUI."
    ::= { cienaCesPortXcvrEntry 26 }

 cienaCesPortXcvrVendorPartNum OBJECT-TYPE
    SYNTAX        DisplayString
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
	    "String containing this transceiver's vendor part number."
    ::= { cienaCesPortXcvrEntry 27 }
 	
 cienaCesPortXcvrRevNum   OBJECT-TYPE
    SYNTAX         DisplayString
    MAX-ACCESS     read-only
    STATUS         current
    DESCRIPTION
	    "String containing this tranceiver's part revision number."
    ::= { cienaCesPortXcvrEntry 28 }

 cienaCesPortXcvrSerialNum   OBJECT-TYPE
    SYNTAX         DisplayString
    MAX-ACCESS     read-only
    STATUS         current
    DESCRIPTION
	    "String containing this tranceiver's part serial number."
    ::= { cienaCesPortXcvrEntry 29 } 		

 cienaCesPortXcvrMfgDate OBJECT-TYPE
    SYNTAX        DisplayString
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
	    "String containing this transceiver's manufactured date."
    ::= { cienaCesPortXcvrEntry 30 }

 cienaCesPortXcvrWaveLength OBJECT-TYPE
    SYNTAX        INTEGER (1..65535)
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
	    "The wavelength of the transceiver. Units are nano meter."
    ::= { cienaCesPortXcvrEntry 31 }

 cienaCesPortXcvrTxState OBJECT-TYPE
    SYNTAX       INTEGER {	
		      enabled(1),
		      disabled(2)
	         }
    MAX-ACCESS   read-only
    STATUS       current
    DESCRIPTION
	    "Indicates whether this transceiver is currently set to transmit."
    ::= { cienaCesPortXcvrEntry 32 }		
 		
 cienaCesPortXcvrTxFaultStatus OBJECT-TYPE
    SYNTAX        INTEGER {	
		       fault(1),
		       noFault(2)
	     	  }
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
	    "Indicates the fault status of this transceiver."
    ::= { cienaCesPortXcvrEntry 33 }

 cienaCesPortXcvrAdminState OBJECT-TYPE
    SYNTAX           INTEGER {
                        disabled(1),
                        enabled(2),
                        loopback(3)                        
                     }
    MAX-ACCESS       read-only
    STATUS           current
    DESCRIPTION
	    "The administrative state of the transceiver."
    ::= { cienaCesPortXcvrEntry 34 }
   
  cienaCesPortXcvrTxOutputPower OBJECT-TYPE
    SYNTAX        INTEGER (1..65535)
    UNITS         "uW"
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
	    "The measured transmitted output power of the transceiver. 
	     Units are micro watts."
    ::= { cienaCesPortXcvrEntry 35 }

  cienaCesPortXcvrFecMode OBJECT-TYPE
    SYNTAX        INTEGER {
                        none(1),	
                        gfec(2),
                        efec(3)
                  }
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION
        "This represents the transceiver's FEC Mode.
         gfec means generic forward error correction,
         efec means enhanced forward error correction."
   ::= { cienaCesPortXcvrEntry 36 }


 --
 -- notification
 --
 cienaCesPortXcvrEventType OBJECT-TYPE
    SYNTAX         INTEGER {
                        inserted(1),
                        removed(2)
                   }                         
    MAX-ACCESS     read-only
    STATUS         current
    DESCRIPTION
	    "Indicates if the transceiver specified by the ciena54XXPortXcvrId has come up, 
	     gone down or has been selected."
    ::= { cienaCesPortXcvrNotif 1}

  cienaCesPortXcvrErrorType OBJECT-TYPE
    SYNTAX         INTEGER {
                        none(0),
                        chksumFailed(1),
                        opticalFault(2)                        
                   }
    MAX-ACCESS     accessible-for-notify
    STATUS         current
    DESCRIPTION
	    "Indicates if the transceiver specified by the cienaCesPortXcvrId is faulted because of 
	     checksum failure or optical fault. This object only makes sense if the transceiver has 
	     been detected faulted; otherwise it returns 'none'."
    ::= { cienaCesPortXcvrNotif 2 } 
 
 cienaCesPortXcvrRemovedNotification NOTIFICATION-TYPE
	OBJECTS	{   cienaGlobalSeverity, 
				cienaGlobalMacAddress,            
     			cienaCesPortXcvrNotifChassisIndex,
        		cienaCesPortXcvrNotifShelfIndex,
        		cienaCesPortXcvrNotifSlotIndex,
        		cienaCesPortXcvrNotifPortNumber
		}
	STATUS	current
	DESCRIPTION
		"A cienaCesPortXcvrRemovedNotification is sent if the transceiver has been removed. 
		To enable the device to send this notification: cienaCesPortXcvrLinkStateChangeTrapState, 
		cienaCesLogicalPortConfigPortAllTrapState, and cienaCesPortAllTrapState need to be set to 
		enabled. These objects are set to enabled by default. Variable bindings include: 
		cienaGlobalSeverity, cienaGlobalMacAddress, cienaCesPortXcvrNotifChassisIndex, 
		cienaCesPortXcvrNotifShelfIndex, cienaCesPortXcvrNotifSlotIndex, and 
		cienaCesPortXcvrNotifPortNumber."
	::= { cienaCesPortXcvrMIBNotifications 1 }

 cienaCesPortXcvrInsertedNotification NOTIFICATION-TYPE
	OBJECTS	{   cienaGlobalSeverity, 
				cienaGlobalMacAddress,            
     			cienaCesPortXcvrNotifChassisIndex,
        		cienaCesPortXcvrNotifShelfIndex,
        		cienaCesPortXcvrNotifSlotIndex,
        		cienaCesPortXcvrNotifPortNumber
		}
	STATUS	current
	DESCRIPTION
		"A cienaCesPortXcvrInsertedNotification is sent if the transceiver has been inserted. To 
		enable the device to send this notification: cienaCesPortXcvrLinkStateChangeTrapState, 
		cienaCesLogicalPortConfigPortAllTrapState, and cienaCesPortAllTrapState need to be set to 
		enabled. These objects are set to enabled by default. Variable bindings include: 
		cienaGlobalSeverity, cienaGlobalMacAddress, cienaCesPortXcvrNotifChassisIndex, 
		cienaCesPortXcvrNotifShelfIndex, cienaCesPortXcvrNotifSlotIndex, and 
		cienaCesPortXcvrNotifPortNumber."
	::= { cienaCesPortXcvrMIBNotifications 2 }

 cienaCesPortXcvrErrorTypeNotification NOTIFICATION-TYPE
	OBJECTS	{	cienaGlobalSeverity,
				cienaGlobalMacAddress,                
        		cienaCesPortXcvrNotifChassisIndex,
        		cienaCesPortXcvrNotifShelfIndex,
        		cienaCesPortXcvrNotifSlotIndex,
        		cienaCesPortXcvrNotifPortNumber,
				cienaCesPortXcvrErrorType        
		}
	STATUS	current
	DESCRIPTION
		"A cienaCesPortXcvrErrorTypeNotification is sent if the transceiver is detected to be faulted.
		The reason for the failure is specified by cienaCesPortXcvrErrorType. To enable the device to 
		send this notification: cienaCesPortXcvrErrorTrapState, cienaCesLogicalPortConfigPortAllTrapState,
		and cienaCesPortAllTrapState need to be set to enabled. These objects are enabled by default. 
		Variable bindings include: cienaGlobalSeverity, cienaGlobalMacAddress, 
		cienaCesPortXcvrNotifChassisIndex, cienaCesPortXcvrNotifShelfIndex, cienaCesPortXcvrNotifSlotIndex, 
		cienaCesPortXcvrNotifPortNumber, and cienaCesPortXcvrErrorType."
::= { cienaCesPortXcvrMIBNotifications 5 }

 cienaCesPortXcvrTempHighNotification NOTIFICATION-TYPE
	OBJECTS	{   cienaGlobalSeverity, 
				cienaGlobalMacAddress,            
   			    cienaCesPortXcvrNotifChassisIndex,
        		cienaCesPortXcvrNotifShelfIndex,
        		cienaCesPortXcvrNotifSlotIndex,
        		cienaCesPortXcvrNotifPortNumber
		}
	STATUS	current
	DESCRIPTION
		"A cienaCesPortXcvrTempHighNotification is sent if the transceiver temperature exceeds the 
		threshold. To enable the device to send this notification: cienaCesPortXcvrTempChangeTrapState, 
		cienaCesLogicalPortConfigPortAllTrapState, and cienaCesPortAllTrapState need to be set to enabled.
		These objects are set to enabled by default. Variable bindings include: cienaGlobalSeverity,
		cienaGlobalMacAddress, cienaCesPortXcvrNotifChassisIndex, cienaCesPortXcvrNotifShelfIndex, 
		cienaCesPortXcvrNotifSlotIndex, and cienaCesPortXcvrNotifPortNumber."
	::= { cienaCesPortXcvrMIBNotifications 6 }
 
 cienaCesPortXcvrTempLowNotification NOTIFICATION-TYPE
	OBJECTS	{   cienaGlobalSeverity,
				cienaGlobalMacAddress,             
        		cienaCesPortXcvrNotifChassisIndex,
        		cienaCesPortXcvrNotifShelfIndex,
        		cienaCesPortXcvrNotifSlotIndex,
        		cienaCesPortXcvrNotifPortNumber
		}
	STATUS	current
	DESCRIPTION
		"A cienaCesPortXcvrTempLowNotification is sent if the transceiver temperature falls below the 
		threshold. To enable the device to send this notification: cienaCesPortXcvrTempChangeTrapState, 
		cienaCesLogicalPortConfigPortAllTrapState, and cienaCesPortAllTrapState need to be set to enabled.
		These objects are set to enabled by default. Variable bindings include: cienaGlobalSeverity,
		cienaGlobalMacAddress, cienaCesPortXcvrNotifChassisIndex, cienaCesPortXcvrNotifShelfIndex,
		cienaCesPortXcvrNotifSlotIndex, and cienaCesPortXcvrNotifPortNumber."
	::= { cienaCesPortXcvrMIBNotifications 7 }

 cienaCesPortXcvrTempNormalNotification NOTIFICATION-TYPE
	OBJECTS	{   cienaGlobalSeverity,  
				cienaGlobalMacAddress,           
        		cienaCesPortXcvrNotifChassisIndex,
        		cienaCesPortXcvrNotifShelfIndex,
        		cienaCesPortXcvrNotifSlotIndex,
        		cienaCesPortXcvrNotifPortNumber
		}
	STATUS	current
	DESCRIPTION
		"A cienaCesPortXcvrTempNormalNotification is sent when the transceiver temperature returns to 
		normal state.  To enable the device to send this notification: cienaCesPortXcvrTempChangeTrapState, 
		cienaCesLogicalPortConfigPortAllTrapState, and cienaCesPortAllTrapState need to be set to enabled.
		These objects are set to enabled by default. Variable bindings include: cienaGlobalSeverity,
		cienaGlobalMacAddress, cienaCesPortXcvrNotifChassisIndex, cienaCesPortXcvrNotifShelfIndex,
		cienaCesPortXcvrNotifSlotIndex, and cienaCesPortXcvrNotifPortNumber."
	::= { cienaCesPortXcvrMIBNotifications 8 }
 
 cienaCesPortXcvrVoltageHighNotification NOTIFICATION-TYPE
	OBJECTS	{   cienaGlobalSeverity, 
				cienaGlobalMacAddress,            
        		cienaCesPortXcvrNotifChassisIndex,
        		cienaCesPortXcvrNotifShelfIndex,
        		cienaCesPortXcvrNotifSlotIndex,
        		cienaCesPortXcvrNotifPortNumber
		}
	STATUS	current
	DESCRIPTION
		"A cienaCesPortXcvrVoltageHighNotification is sent if the transceiver voltage exceeds the 
		threshold. To enable the device to send this notification: cienaCesPortXcvrVoltageChangeTrapState, 
		cienaCesLogicalPortConfigPortAllTrapState, cienaCesPortAllTrapState needs to be set to enabled
       These objects are set to enabled by default. Variable bindings include: 
       cienaGlobalSeverity, cienaGlobalMacAddress, cienaCesPortXcvrNotifChassisIndex,
       cienaCesPortXcvrNotifShelfIndex, cienaCesPortXcvrNotifSlotIndex, and 
       cienaCesPortXcvrNotifPortNumber."
	::= { cienaCesPortXcvrMIBNotifications 9 }
 
 cienaCesPortXcvrVoltageLowNotification NOTIFICATION-TYPE
	OBJECTS	{   cienaGlobalSeverity,  
				cienaGlobalMacAddress,           
        		cienaCesPortXcvrNotifChassisIndex,
        		cienaCesPortXcvrNotifShelfIndex,
        		cienaCesPortXcvrNotifSlotIndex,
        		cienaCesPortXcvrNotifPortNumber
		}
	STATUS	current
	DESCRIPTION
		"A cienaCesPortXcvrVoltageLowNotification is sent if the transceiver voltage falls below the 
		threshold. To enable the device to send this notification: cienaCesPortXcvrVoltageChangeTrapState,
		cienaCesLogicalPortConfigPortAllTrapState, and cienaCesPortAllTrapState need to be set to enabled.
		These objects are set to enabled by default. Variable bindings include: cienaGlobalSeverity,
		cienaGlobalMacAddress, cienaCesPortXcvrNotifChassisIndex, cienaCesPortXcvrNotifShelfIndex,
		cienaCesPortXcvrNotifSlotIndex, and cienaCesPortXcvrNotifPortNumber."
	::= { cienaCesPortXcvrMIBNotifications 10 }

 cienaCesPortXcvrVoltageNormalNotification NOTIFICATION-TYPE
	OBJECTS	{   cienaGlobalSeverity, 
				cienaGlobalMacAddress,            
        		cienaCesPortXcvrNotifChassisIndex,
        		cienaCesPortXcvrNotifShelfIndex,
        		cienaCesPortXcvrNotifSlotIndex,
        		cienaCesPortXcvrNotifPortNumber
		}
	STATUS	current
	DESCRIPTION
		"A cienaCesPortXcvrVoltageNormalNotification is sent when the transceiver voltage returns back
		to normal state. To enable the device to send this notification: cienaCesPortXcvrVoltageChangeTrapState,
		cienaCesLogicalPortConfigPortAllTrapState, and cienaCesPortAllTrapState need to be set to enabled.
		These objects are set to enabled by default. Variable bindings include: cienaGlobalSeverity,
		cienaGlobalMacAddress, cienaCesPortXcvrNotifChassisIndex, cienaCesPortXcvrNotifShelfIndex, 
		cienaCesPortXcvrNotifSlotIndex, and cienaCesPortXcvrNotifPortNumber."
	::= { cienaCesPortXcvrMIBNotifications 11 }
 
 cienaCesPortXcvrBiasHighNotification NOTIFICATION-TYPE
	OBJECTS	{   cienaGlobalSeverity,  
				cienaGlobalMacAddress,           
        		cienaCesPortXcvrNotifChassisIndex,
        		cienaCesPortXcvrNotifShelfIndex,
        		cienaCesPortXcvrNotifSlotIndex,
        		cienaCesPortXcvrNotifPortNumber
		}
	STATUS	current
	DESCRIPTION
		"A cienaCesPortXcvrBiasHighNotification is sent if the transceiver bias exceeds the 
		threshold. To enable the device to send this notification: cienaCesPortXcvrBiasChangeTrapState,
		cienaCesLogicalPortConfigPortAllTrapState, and cienaCesPortAllTrapState need to be set to enabled.
		These objects are set to enabled by default. Variable bindings include: cienaGlobalSeverity, 
		cienaGlobalMacAddress, cienaCesPortXcvrNotifChassisIndex, cienaCesPortXcvrNotifShelfIndex, 
		cienaCesPortXcvrNotifSlotIndex, and cienaCesPortXcvrNotifPortNumber."
	::= { cienaCesPortXcvrMIBNotifications 12 }
 
 cienaCesPortXcvrBiasLowNotification NOTIFICATION-TYPE
	OBJECTS	{   cienaGlobalSeverity, 
				cienaGlobalMacAddress,            
        		cienaCesPortXcvrNotifChassisIndex,
        	    cienaCesPortXcvrNotifShelfIndex,
        		cienaCesPortXcvrNotifSlotIndex,
        		cienaCesPortXcvrNotifPortNumber
		}
	STATUS	current
	DESCRIPTION
		"A cienaCesPortXcvrBiasLowNotification is sent if the transceiver bias falls below the 
		threshold. To enable the device to send this notification: cienaCesPortXcvrBiasChangeTrapState, 
		cienaCesLogicalPortConfigPortAllTrapState, and cienaCesPortAllTrapState need to be set to enabled.
		These objects are set to enabled by default. Variable bindings include: cienaGlobalSeverity,
		cienaGlobalMacAddress, cienaCesPortXcvrNotifChassisIndex, cienaCesPortXcvrNotifShelfIndex, 
		cienaCesPortXcvrNotifSlotIndex, and cienaCesPortXcvrNotifPortNumber."
	::= { cienaCesPortXcvrMIBNotifications 13 }

 cienaCesPortXcvrBiasNormalNotification NOTIFICATION-TYPE
	OBJECTS	{   cienaGlobalSeverity,  
				cienaGlobalMacAddress,           
        		cienaCesPortXcvrNotifChassisIndex,
        		cienaCesPortXcvrNotifShelfIndex,
        	    cienaCesPortXcvrNotifSlotIndex,
        		cienaCesPortXcvrNotifPortNumber
		}
	STATUS	current
	DESCRIPTION
		"A cienaCesPortXcvrBiasNormalNotification is sent when the transceiver bias returns to normal 
		state. To enable the device to send this notification: cienaCesPortXcvrBiasChangeTrapState, 
		cienaCesLogicalPortConfigPortAllTrapState, and cienaCesPortAllTrapState need to be set to enabled.
		These objects are set to enabled by default. Variable bindings include: cienaGlobalSeverity,
		cienaGlobalMacAddress, cienaCesPortXcvrNotifChassisIndex, cienaCesPortXcvrNotifShelfIndex, 
		cienaCesPortXcvrNotifSlotIndex, and cienaCesPortXcvrNotifPortNumber."
	::= { cienaCesPortXcvrMIBNotifications 14 }
 
 cienaCesPortXcvrTxPowerHighNotification NOTIFICATION-TYPE
	OBJECTS	{    cienaGlobalSeverity,
				 cienaGlobalMacAddress,            
        		 cienaCesPortXcvrNotifChassisIndex,
        		 cienaCesPortXcvrNotifShelfIndex,
        		 cienaCesPortXcvrNotifSlotIndex,
        		 cienaCesPortXcvrNotifPortNumber
		}
	STATUS	current
	DESCRIPTION
		"A cienaCesPortXcvrTxPowerHighNotification is sent if the transceiver TxPower exceeds the 
		threshold. To enable the device to send this notification: cienaCesPortXcvrTxPowerChangeTrapState,
		cienaCesLogicalPortConfigPortAllTrapState, and cienaCesPortAllTrapState need to be set to enabled.
		These objects are set to enabled by default. Variable bindings include: cienaGlobalSeverity,
		cienaGlobalMacAddress, cienaCesPortXcvrNotifChassisIndex, cienaCesPortXcvrNotifShelfIndex, 
		cienaCesPortXcvrNotifSlotIndex, and cienaCesPortXcvrNotifPortNumber."
	::= { cienaCesPortXcvrMIBNotifications 15 }
 
 cienaCesPortXcvrTxPowerLowNotification NOTIFICATION-TYPE
	OBJECTS	{   cienaGlobalSeverity,  
				cienaGlobalMacAddress,           
        		cienaCesPortXcvrNotifChassisIndex,
        		cienaCesPortXcvrNotifShelfIndex,
        		cienaCesPortXcvrNotifSlotIndex,
        		cienaCesPortXcvrNotifPortNumber
		}
	STATUS	current
	DESCRIPTION
		"A cienaCesPortXcvrTxPowerLowNotification is sent if the transceiver TxPower falls below 
		the threshold. To enable the device to send this notification: cienaCesPortXcvrTxPowerChangeTrapState, 
		cienaCesLogicalPortConfigPortAllTrapState, and cienaCesPortAllTrapState need to be set to enabled.
		These objects are set to enabled by default. Variable bindings include: cienaGlobalSeverity,
		cienaGlobalMacAddress, cienaCesPortXcvrNotifChassisIndex, cienaCesPortXcvrNotifShelfIndex, 
		cienaCesPortXcvrNotifSlotIndex, and cienaCesPortXcvrNotifPortNumber."
	::= { cienaCesPortXcvrMIBNotifications 16 }

 cienaCesPortXcvrTxPowerNormalNotification NOTIFICATION-TYPE
	OBJECTS	{   cienaGlobalSeverity, 
				cienaGlobalMacAddress,            
        		cienaCesPortXcvrNotifChassisIndex,
        		cienaCesPortXcvrNotifShelfIndex,
        		cienaCesPortXcvrNotifSlotIndex,
        		cienaCesPortXcvrNotifPortNumber
		}
	STATUS	current
	DESCRIPTION
		"A cienaCesPortXcvrTxPowerNormalNotification is sent when the transceiver TxPower returns to 
		normal state. To enable the device to send this notification: cienaCesPortXcvrTxPowerChangeTrapState,
		cienaCesLogicalPortConfigPortAllTrapState, and cienaCesPortAllTrapState need to be set to enabled. 
		These above values are set to enabled by default. Variable bindings include: cienaGlobalSeverity,
       cienaGlobalMacAddress, cienaCesPortXcvrNotifChassisIndex, cienaCesPortXcvrNotifShelfIndex, 
       cienaCesPortXcvrNotifSlotIndex, and cienaCesPortXcvrNotifPortNumber."
	::= { cienaCesPortXcvrMIBNotifications 17 }
 
 cienaCesPortXcvrRxPowerHighNotification NOTIFICATION-TYPE
	OBJECTS	{   cienaGlobalSeverity, 
				cienaGlobalMacAddress,            
        	    cienaCesPortXcvrNotifChassisIndex,
        	    cienaCesPortXcvrNotifShelfIndex,
        		cienaCesPortXcvrNotifSlotIndex,
        		cienaCesPortXcvrNotifPortNumber
		}
	STATUS	current
	DESCRIPTION
		"A cienaCesPortXcvrRxPowerHighNotification is sent if the transceiver RxPower exceeds 
		the threshold. To enable the device to send this notification: cienaCesPortXcvrRxPowerChangeTrapState, 
		cienaCesLogicalPortConfigPortAllTrapState, and cienaCesPortAllTrapState need to be set to enabled. 
		These objects are set to enabled by default. Variable bindings include: cienaGlobalSeverity, 
		cienaGlobalMacAddress, cienaCesPortXcvrNotifChassisIndex, cienaCesPortXcvrNotifShelfIndex,
		cienaCesPortXcvrNotifSlotIndex, and cienaCesPortXcvrNotifPortNumber."
	::= { cienaCesPortXcvrMIBNotifications 18 }
 
 cienaCesPortXcvrRxPowerLowNotification NOTIFICATION-TYPE
	OBJECTS	{   cienaGlobalSeverity, 
				cienaGlobalMacAddress,            
        		cienaCesPortXcvrNotifChassisIndex,
        		cienaCesPortXcvrNotifShelfIndex,
        		cienaCesPortXcvrNotifSlotIndex,
        		cienaCesPortXcvrNotifPortNumber
		}
	STATUS	current
	DESCRIPTION
		"A cienaCesPortXcvrRxPowerLowNotification is sent if the transceiver RxPower falls below
		the the threshold. To enable the device to send this notification: 
		cienaCesPortXcvrRxPowerChangeTrapState, cienaCesLogicalPortConfigPortAllTrapState,
		cienaCesPortAllTrapState needs to be set to enabled. These objects are set to enabled 
		by default. Variable bindings include: cienaGlobalSeverity, cienaGlobalMacAddress, 
		cienaCesPortXcvrNotifChassisIndex, cienaCesPortXcvrNotifShelfIndex, cienaCesPortXcvrNotifSlotIndex, 
		and cienaCesPortXcvrNotifPortNumber."
	::= { cienaCesPortXcvrMIBNotifications 19 }

 cienaCesPortXcvrRxPowerNormalNotification NOTIFICATION-TYPE
	OBJECTS	{   cienaGlobalSeverity,  
				cienaGlobalMacAddress,           
        	    cienaCesPortXcvrNotifChassisIndex,
        	    cienaCesPortXcvrNotifShelfIndex,
        	    cienaCesPortXcvrNotifSlotIndex,
        	    cienaCesPortXcvrNotifPortNumber
		}
	STATUS	current
	DESCRIPTION
		"A cienaCesPortXcvrRxPowerNormalNotification is sent when the transceiver RxPower returns 
		to normal state. To enable the device to send this notification: 
		cienaCesPortXcvrRxPowerChangeTrapState, cienaCesLogicalPortConfigPortAllTrapState, and 
		cienaCesPortAllTrapState needs to be set to enabled. These objects are set to enabled by 
		default. Variable bindings include: cienaGlobalSeverity, cienaGlobalMacAddress, 
		cienaCesPortXcvrNotifChassisIndex, cienaCesPortXcvrNotifShelfIndex, cienaCesPortXcvrNotifSlotIndex, 
		and cienaCesPortXcvrNotifPortNumber."
	::= { cienaCesPortXcvrMIBNotifications 20 }
   
  cienaCesPortXcvrSpeedInfoMissingNotification NOTIFICATION-TYPE
	OBJECTS	{   	  cienaGlobalSeverity,   
					  cienaGlobalMacAddress,          
        			  cienaCesPortXcvrNotifChassisIndex,
        			  cienaCesPortXcvrNotifShelfIndex,
        			  cienaCesPortXcvrNotifSlotIndex,
        			  cienaCesPortXcvrNotifPortNumber
		}
	STATUS	current
	DESCRIPTION
		"A cienaCesPortXcvrSpeedInfoMissingNotification is sent if the transceiver speed 
		information is not found. To enable the device to send this notification: 
		cienaCesPortXcvrSpeedInfoTrapState, cienaCesLogicalPortConfigPortAllTrapState, and 
		cienaCesPortAllTrapState need to be set to enabled. These objects are set to enabled 
		by default. Variable bindings include: cienaGlobalSeverity, cienaGlobalMacAddress, 
		cienaCesPortXcvrNotifChassisIndex, cienaCesPortXcvrNotifShelfIndex, 
		cienaCesPortXcvrNotifSlotIndex, and cienaCesPortXcvrNotifPortNumber."
	::= { cienaCesPortXcvrMIBNotifications 21 }
  
  cienaCesPortXcvrUncertifiedNotification NOTIFICATION-TYPE
	OBJECTS	{   	  cienaGlobalSeverity,   
					  cienaGlobalMacAddress,          
        			  cienaCesPortXcvrNotifChassisIndex,
        			  cienaCesPortXcvrNotifShelfIndex,
        			  cienaCesPortXcvrNotifSlotIndex,
        			  cienaCesPortXcvrNotifPortNumber
		}
	STATUS	current
	DESCRIPTION
		"A cienaCesPortXcvrUncertifiedNotification is sent if the transceiver is not 
		certified for use by Ciena. To enable the device to send this notification: 
		cienaCesPortXcvrUncertifiedTrapState,  cienaCesLogicalPortConfigPortAllTrapState, 
		and cesPortAllTrapState need to be set to enabled. cienaCesPortXcvrUncertifiedTrapState 
		is set to disabled by default. Variable bindings include: cienaGlobalSeverity, cienaGlobalMacAddress, 
		cienaCesPortXcvrNotifChassisIndex, cienaCesPortXcvrNotifShelfIndex, 
		cienaCesPortXcvrNotifSlotIndex, and cienaCesPortXcvrNotifPortNumber."
	::= { cienaCesPortXcvrMIBNotifications 22 }

 cienaCesPortXcvrRxPowerHighWarningNotification NOTIFICATION-TYPE
   OBJECTS  {   cienaGlobalSeverity, 
                cienaGlobalMacAddress,            
                cienaCesPortXcvrNotifChassisIndex,
                cienaCesPortXcvrNotifShelfIndex,
                cienaCesPortXcvrNotifSlotIndex,
                cienaCesPortXcvrNotifPortNumber
      }
   STATUS   current
   DESCRIPTION
      "A cienaCesPortXcvrRxPowerHighWarningNotification is sent if the transceiver RxPower exceeds 
      the threshold. To enable the device to send this notification: cienaCesPortXcvrRxPowerChangeTrapState, 
      cienaCesLogicalPortConfigPortAllTrapState, and cienaCesPortAllTrapState need to be set to enabled. 
      These objects are set to enabled by default. Variable bindings include: cienaGlobalSeverity, 
      cienaGlobalMacAddress, cienaCesPortXcvrNotifChassisIndex, cienaCesPortXcvrNotifShelfIndex,
      cienaCesPortXcvrNotifSlotIndex, and cienaCesPortXcvrNotifPortNumber."
   ::= { cienaCesPortXcvrMIBNotifications 23 }
 
 cienaCesPortXcvrRxPowerLowWarningNotification NOTIFICATION-TYPE
   OBJECTS  {   cienaGlobalSeverity, 
                cienaGlobalMacAddress,            
                cienaCesPortXcvrNotifChassisIndex,
                cienaCesPortXcvrNotifShelfIndex,
                cienaCesPortXcvrNotifSlotIndex,
                cienaCesPortXcvrNotifPortNumber
      }
   STATUS   current
   DESCRIPTION
      "A cienaCesPortXcvrRxPowerLowWarningNotification is sent if the transceiver RxPower falls below
      the the threshold. To enable the device to send this notification: 
      cienaCesPortXcvrRxPowerChangeTrapState, cienaCesLogicalPortConfigPortAllTrapState,
      cienaCesPortAllTrapState needs to be set to enabled. These objects are set to enabled 
      by default. Variable bindings include: cienaGlobalSeverity, cienaGlobalMacAddress, 
      cienaCesPortXcvrNotifChassisIndex, cienaCesPortXcvrNotifShelfIndex, cienaCesPortXcvrNotifSlotIndex, 
      and cienaCesPortXcvrNotifPortNumber."
   ::= { cienaCesPortXcvrMIBNotifications 24 }

 cienaCesPortXcvrTxPowerHighWarningNotification NOTIFICATION-TYPE
   OBJECTS  {   cienaGlobalSeverity, 
                cienaGlobalMacAddress,            
                cienaCesPortXcvrNotifChassisIndex,
                cienaCesPortXcvrNotifShelfIndex,
                cienaCesPortXcvrNotifSlotIndex,
                cienaCesPortXcvrNotifPortNumber
      }
   STATUS   current
   DESCRIPTION
      "A cienaCesPortXcvrTxPowerHighWarningNotification is sent if the transceiver TxPower exceeds 
      the threshold. To enable the device to send this notification: cienaCesPortXcvrTxPowerChangeTrapState, 
      cienaCesLogicalPortConfigPortAllTrapState, and cienaCesPortAllTrapState need to be set to enabled. 
      These objects are set to enabled by default. Variable bindings include: cienaGlobalSeverity, 
      cienaGlobalMacAddress, cienaCesPortXcvrNotifChassisIndex, cienaCesPortXcvrNotifShelfIndex,
      cienaCesPortXcvrNotifSlotIndex, and cienaCesPortXcvrNotifPortNumber."
   ::= { cienaCesPortXcvrMIBNotifications 25 }
 
 cienaCesPortXcvrTxPowerLowWarningNotification NOTIFICATION-TYPE
   OBJECTS  {   cienaGlobalSeverity, 
                cienaGlobalMacAddress,            
                cienaCesPortXcvrNotifChassisIndex,
                cienaCesPortXcvrNotifShelfIndex,
                cienaCesPortXcvrNotifSlotIndex,
                cienaCesPortXcvrNotifPortNumber
      }
   STATUS   current
   DESCRIPTION
      "A cienaCesPortXcvrTxPowerLowWarningNotification is sent if the transceiver TxPower falls below
      the the threshold. To enable the device to send this notification: 
      cienaCesPortXcvrTxPowerChangeTrapState, cienaCesLogicalPortConfigPortAllTrapState,
      cienaCesPortAllTrapState needs to be set to enabled. These objects are set to enabled 
      by default. Variable bindings include: cienaGlobalSeverity, cienaGlobalMacAddress, 
      cienaCesPortXcvrNotifChassisIndex, cienaCesPortXcvrNotifShelfIndex, cienaCesPortXcvrNotifSlotIndex, 
      and cienaCesPortXcvrNotifPortNumber."
   ::= { cienaCesPortXcvrMIBNotifications 26 }

 END

 --
 -- CIENA-CES-PORT-XCVR-MIB
 --