summaryrefslogtreecommitdiff
path: root/MIBS/ericsson/PT-FM-MIB
blob: 8254db8a060482516a3b8bb38c4bf710839bcc9e (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
PT-FM-MIB DEFINITIONS::=BEGIN
	IMPORTS	
		MODULE-IDENTITY,OBJECT-TYPE,Integer32
			FROM SNMPv2-SMI
			MODULE-COMPLIANCE,
      OBJECT-GROUP FROM SNMPv2-CONF
		pt FROM PT-MIB
  TEXTUAL-CONVENTION, DateAndTime FROM SNMPv2-TC;
  		
		    ptFM MODULE-IDENTITY
        LAST-UPDATED "201603211200Z"
        ORGANIZATION "Ericsson"
        CONTACT-INFO
            "Anders Ekvall
             Postal: Ericsson AB,
             E-Mail: anders.ekvall@ericsson.com"

        DESCRIPTION
            "This is the MIB of PT specifics"
            
        REVISION      "201603211200Z"
        DESCRIPTION
            "Added Managed and Reference OID to the current alarms"

        REVISION      "201603091200Z"
        DESCRIPTION
            "Validated."
            
        REVISION      "201602101230Z"
        DESCRIPTION
            "The initial version of this MIB module."

        ::= { pt 3 }
			 
	config             OBJECT IDENTIFIER ::= { ptFM 1 } 
	alarm              OBJECT IDENTIFIER ::= { ptFM 2 } 	
	log                OBJECT IDENTIFIER ::= { ptFM 3 }
	ptFMConformance    OBJECT IDENTIFIER ::= { ptFM 4 }
--
-- The textual conventions we define and use in this MIB.
--   	 
 NotificationIdTC ::= TEXTUAL-CONVENTION
    STATUS     current
    DESCRIPTION
           "Notification ID which is NONE now."
    SYNTAX     INTEGER {  
    	eNONE (0)
	}  
	
 MoClassTC ::= TEXTUAL-CONVENTION
    STATUS     current
    DESCRIPTION
           "Textual Convention for MoClass"
    SYNTAX     INTEGER {  
    	eNONE (0)
	}  
	
 SeverityTC ::= TEXTUAL-CONVENTION
    STATUS     current
    DESCRIPTION
           "An integer indicates the severity level, take the value of INDETERMINATE,
	   CRITICAL, MAJOR, MINOR, WARNING and CLEARED. "
    SYNTAX     INTEGER {  
          eINDETERMINATE (1),
          eCRITICAL      (2),
          eMAJOR         (3),
          eMINOR         (4),
          eWARNING       (5),
          eCLEARED       (6)
	} 
	
ProbableCauseTC ::= TEXTUAL-CONVENTION
    STATUS     current
    DESCRIPTION
           "Probable Cause"
    SYNTAX     INTEGER { 
    	eNONE (0)
	}   
	
 CategoryTC ::= TEXTUAL-CONVENTION
    STATUS     current
    DESCRIPTION
           "An integer indicates the category. "
    SYNTAX     INTEGER {  
             eHIGHORDERLEVEL        (1),
             eUNFILTERED            (2),
             eLOWORDERLEVEL         (3),
             eNONE                  (4)
            }   
 ClearableTC ::= TEXTUAL-CONVENTION
    STATUS     current
    DESCRIPTION
           "An integer indicates whether a notification is clearable or not."
    SYNTAX     INTEGER {  
             eTRUE      (1),
             eFALSE     (2)
            }   
 EnableStatusTypeTC ::= TEXTUAL-CONVENTION
    STATUS     current
    DESCRIPTION
           "An integer indicates the enable status type: ENABLED or DISABLED. "
    SYNTAX     INTEGER {  
             eENABLED      (1),
             eDISABLED     (2)
            }   

 LayerRateTC ::= TEXTUAL-CONVENTION
    STATUS     current
    DESCRIPTION
           "An emulation for layer rate."
    SYNTAX     INTEGER {  
                  eLRNOTAPPLICABLE  (1),
                  eLRT3ANDDS345M (4),
                  eLRE12M   (5),
                  eLRE334M  (7),
                  eLRVT2ANDTU12VC12  (11),
                  eLRLOWORDERTU3VC3 (13),
                  eLRSTS3CANDAU4VC4  (15),
                  eLRSTS12CVC44C       (16),
                  eLRSECTIONOC3STS3ANDRSSTM1  (20),
                  eLRSECTIONOC12STS12ANDRSSTM4 (21),
                  eLRSECTIONOC48STS48ANDRSSTM16 (22),
                  eLRLINEOC3STS3ANDMSSTM1 (25),
                  eLRLINEOC12STS12ANDMSSTM4 (26),
                  eLRLINEOC48STS48ANDMSSTM16 (27),
                  eLRDSROC3STM1  (73),
                  eLRDSROC12STM4  (74),
                  eLRDSROC48STM16  (76),
                  eLRDSRGIGABITETHERNET (87),
                  eLRENCAPSULATION   (98),
                  eLRFRAGMENT  (99)
             }  
 EventTypeTC ::= TEXTUAL-CONVENTION
    STATUS     current
    DESCRIPTION
           "An integer indicates the event type: INFORMATION or WARNING. "
    SYNTAX     INTEGER {  
             eINFORMATION      (1),
             eWARNING          (2)
            }   

 EventCauseTC ::= TEXTUAL-CONVENTION
    STATUS     current
    DESCRIPTION
           "An integer indicates the event cause (only NONE is supported)."
    SYNTAX     INTEGER {  
             eNONE      (0)
            }   
	    
 SwitchTypeTC ::= TEXTUAL-CONVENTION
    STATUS     current
    DESCRIPTION
           "An integer indicates the switch type. "
    SYNTAX     INTEGER {  
            eSDHMSP (1),
            eSDHSNCP (2),
            eEQUIPEMEMTPROTECTION (3),
            eSYNCHRONISATION (4),
            eSCSWITCHOVER (5)
            }  
	    
 SwitchReasonTC ::= TEXTUAL-CONVENTION
    STATUS     current
    DESCRIPTION
           "An integer indicates the switch reason. "
    SYNTAX     INTEGER {  
            eNA (1),
            eRESTORED (2),
            eSIGNALFAIL (3),
            eSIGNALMISMATCH (4),
            eSIGNALDEGRADE (5),
            eAUTOMATICSWITCH (6),
            eMANUAL (7),
            eREMOTEREQUEST (8),
            ePROTECTIONDISABLED (9),
            eMODULEFAIL (10)
            }   

---
---The Fault Managment Group definition
---

---
--- Alarm Config Table definition
---
	alarmConfigTable 	OBJECT-TYPE
		SYNTAX SEQUENCE OF AlarmConfigEntry
		MAX-ACCESS  not-accessible
		STATUS current
		DESCRIPTION
            "This configuration defines the default severity of an alarm notification.
            "
    		::= { config 1 }

	alarmConfigEntry OBJECT-TYPE
    		SYNTAX      AlarmConfigEntry
    		MAX-ACCESS  not-accessible
    		STATUS      current
    		DESCRIPTION
            "An entry containing management information applicable to a
            particular interface indexed by NotificationId and moClass. "
    		INDEX   { notificationId ,moClass }
    		::= { alarmConfigTable 1 }
 
	AlarmConfigEntry ::=
		    SEQUENCE {
                    notificationId              NotificationIdTC,
                    moClass                     MoClassTC,
                    severity                    SeverityTC,
                    probableCauseQualifier      OCTET STRING,
                    probableCause               ProbableCauseTC,
                    category                    CategoryTC,
                    clearable                   ClearableTC
		    }      
 
	notificationId OBJECT-TYPE
    	   SYNTAX      NotificationIdTC
	       MAX-ACCESS  not-accessible
	       STATUS      current
    		DESCRIPTION
            "Notification Id"
    	     ::= { alarmConfigEntry 1 }
 
	moClass OBJECT-TYPE
    		SYNTAX      MoClassTC
    		MAX-ACCESS  not-accessible
    		STATUS      current
    		DESCRIPTION
            "MO Class"
    	::= { alarmConfigEntry 2 }  
     		
	severity OBJECT-TYPE
    	   SYNTAX      SeverityTC
	       MAX-ACCESS  read-only
	       STATUS      current
    		DESCRIPTION
            "SeverityTC"
    	     ::= { alarmConfigEntry 3 }
 
	probableCauseQualifier OBJECT-TYPE
    		SYNTAX      OCTET STRING (SIZE (0..80))
    		MAX-ACCESS  read-only
    		STATUS      current
    		DESCRIPTION
            "Probable Cause Qualifier"
    	::= { alarmConfigEntry 4 }  
	probableCause OBJECT-TYPE
    	   SYNTAX      ProbableCauseTC
	       MAX-ACCESS  read-only
	       STATUS      current
    		DESCRIPTION
            "Probable Cause"
    	     ::= { alarmConfigEntry 5 }
 
	category OBJECT-TYPE
    		SYNTAX      CategoryTC
    		MAX-ACCESS  read-only
    		STATUS      current
    		DESCRIPTION
            "For non-clearable alarms, filtering category is NONE."
    	::= { alarmConfigEntry 6 }  
	
	clearable OBJECT-TYPE
    		SYNTAX      ClearableTC
    		MAX-ACCESS  read-only
    		STATUS      current
    		DESCRIPTION
            "This attribute indicates whether this is a clearable or 
	     non-clearable alarm notification."
    	::= { alarmConfigEntry 7 }     

---
--- AlarmPersistencyConfigTable definition 
---   
     
  	alarmPersistencyConfigTable 	OBJECT-TYPE
		SYNTAX SEQUENCE OF AlarmPersistencyConfigEntry
		MAX-ACCESS  not-accessible
		STATUS current
		DESCRIPTION
                "Alarm Persistency Configuration Table"
    		::= { config 2 }   
    		
	alarmPersistencyConfigEntry OBJECT-TYPE
    		SYNTAX      AlarmPersistencyConfigEntry
    		MAX-ACCESS  not-accessible
    		STATUS      current
    		DESCRIPTION
                "An entry containing management information applicable to a
                 particular interface."
    		INDEX   { category }
    		::= { alarmPersistencyConfigTable 1 }
 
	AlarmPersistencyConfigEntry ::=
		    SEQUENCE {
                    persistencyConfigcategory       CategoryTC,
                    onFilter               Integer32,
                    offFilter              Integer32
		    }      
 
	persistencyConfigcategory OBJECT-TYPE
    	       SYNTAX      CategoryTC
	       MAX-ACCESS  not-accessible
	       STATUS      current
    	       DESCRIPTION
               "Persistency Configuration category"
    	       ::= { alarmPersistencyConfigEntry 1 }
 
	onFilter OBJECT-TYPE
    		SYNTAX      Integer32
    		MAX-ACCESS  read-only
    		STATUS      current
    		DESCRIPTION
                "An integer with max value of 30. 
	        Default is 0 sec for highOrderLevel and Unfiltered, 
	        and 3 sec for lowOrderLevel"
    	        ::= { alarmPersistencyConfigEntry 2 }  
     		
	offFilter OBJECT-TYPE
    	       SYNTAX      Integer32
	       MAX-ACCESS  read-only
	       STATUS      current
    	       DESCRIPTION
               "Off Filter"
    	       ::= { alarmPersistencyConfigEntry 3 }   
	        	       
---NotificationConfigTable definition   
notificationConfig   OBJECT IDENTIFIER ::= { config 3 }
	notificationReporting OBJECT-TYPE
    	   SYNTAX      EnableStatusTypeTC
	       MAX-ACCESS  read-only
	       STATUS      current
    		DESCRIPTION
            "This attribute is used to enable or disable reporting of notifications 
	    from the AXXMETRO device. When disabled, no notifications will be sent."
    	     ::= { notificationConfig 1 }
 
	lCASExtendedAlarms OBJECT-TYPE
    		SYNTAX      EnableStatusTypeTC
    		MAX-ACCESS  read-only
    		STATUS      current
    		DESCRIPTION
            "This attribute is used to enable or disable reporting of 
	     extended LCAS notifications."
    	::= { notificationConfig 2 }  
     		
	nIMAlarms OBJECT-TYPE
    	   SYNTAX      EnableStatusTypeTC
	       MAX-ACCESS  read-only
	       STATUS      current
    		DESCRIPTION
            "This attribute is used to enable or disable reporting of 
	    notifications from the NIM objects."
    	::= { notificationConfig 3 }   
	pJEAlarms OBJECT-TYPE
    	   SYNTAX      EnableStatusTypeTC
	       MAX-ACCESS  read-only
	       STATUS      current
    		DESCRIPTION
            "When the operator changes the value from enabled to disabled, 
	    all active PJE alarms shall be cleared.
	    When the operator changes the value from disabled to enabled, 
	    event counting shall be restarted (counters reset to 0).
	    This attribute has node scope, ie. it impacts all PJE alarms 
	    on all SDH ports on the node."
    	::= { notificationConfig 4 }  

---CurrentAlarmsTable definition
  	currentAlarmsTable	OBJECT-TYPE
		SYNTAX SEQUENCE OF CurrentAlarmsEntry
		MAX-ACCESS  not-accessible
		STATUS current
		DESCRIPTION
            "Current Alarms Table"
    		::= { alarm 1 }   
    		
	currentAlarmsEntry OBJECT-TYPE
    		SYNTAX      CurrentAlarmsEntry
    		MAX-ACCESS  not-accessible
    		STATUS      current
    		DESCRIPTION
            "An entry containing management information applicable to a
            particular interface."  
            INDEX {sequenceNumber}
    		::= { currentAlarmsTable 1 }              
            
	CurrentAlarmsEntry ::=
		    SEQUENCE {   
                    sequenceNumber                        Integer32,
                    currentAlarmTimeStamp                 DateAndTime,
                    currentAlarmNotificationId            NotificationIdTC,
                    currentAlarmManagedObjectId           OCTET STRING,
                    currentAlarmReferenceObjectId         OCTET STRING,
                    currentAlarmSeverity                  SeverityTC,
                    currentAlarmProbableCause             ProbableCauseTC,
                    currentAlarmProbableCauseQualifier    OCTET STRING,
                    currentAlarmAdditionalText            OCTET STRING,
                    currentAlarmLayerRate                 LayerRateTC		    
            }      
 
	sequenceNumber OBJECT-TYPE
    	   SYNTAX      Integer32 (0..2147483647)
	       MAX-ACCESS  not-accessible
	       STATUS      current
    		DESCRIPTION
            "Sequence Number"
    	     ::= { currentAlarmsEntry 1 }
 
	currentAlarmTimeStamp OBJECT-TYPE
    		SYNTAX      DateAndTime
    		MAX-ACCESS  read-only
    		STATUS      current
    		DESCRIPTION
            "Time Stamp"
    	::= { currentAlarmsEntry 2 }  
     		
	currentAlarmNotificationId OBJECT-TYPE
    	   SYNTAX      NotificationIdTC
	       MAX-ACCESS  read-only
	       STATUS      current
    		DESCRIPTION
            "Current Alarm Notification Id"
    	::= { currentAlarmsEntry 3 } 
    	
  currentAlarmManagedObjectId  OBJECT-TYPE
        SYNTAX      OCTET STRING (SIZE (0..80))
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "This object represents the managed object id of an active alarm.
             The managed object id uniquely identifies the source of the
             notification and consists of class and instance information
             for the source. It is represented by a formated text string
             which first contains the class and depending on the class a list
             of attribute name and value pairs:

             '<class>:<name>=<value>;<name>=<value>;...'

             <class> : class name.
             <name>  : attribute name.
             <value> : attribute value."
        ::= { currentAlarmsEntry 4 }

  currentAlarmReferenceObjectId  OBJECT-TYPE
        SYNTAX      OCTET STRING (SIZE (0..80))
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "This object represents the referenced object id for the
             managed object id in cases where the managed object id is
             a virtual object id.
             It has the same format as 'currentAlarmManagedObjectId' and
             is represented by a formated text string which first contains
             the class and depending on the class a list of attribute name
             and value pairs:

             '<class>:<name>=<value>;<name>=<value>;...'

             <class> : class name.
             <name>  : attribute name.
             <value> : attribute value."
        ::= { currentAlarmsEntry 5 }
    	
    	  
	currentAlarmSeverity OBJECT-TYPE
    	   SYNTAX      SeverityTC
	       MAX-ACCESS  read-only
	       STATUS      current
    		DESCRIPTION
            "Current Alarm Severity"
    	::= { currentAlarmsEntry 6 }  
	currentAlarmProbableCause OBJECT-TYPE
    	   SYNTAX      ProbableCauseTC
	       MAX-ACCESS  read-only
	       STATUS      current
    		DESCRIPTION
            "Current Alarm Probable Cause"
    	  ::= { currentAlarmsEntry 7 }
 
	currentAlarmProbableCauseQualifier OBJECT-TYPE
    		SYNTAX      OCTET STRING (SIZE (0..80))
    		MAX-ACCESS  read-only
    		STATUS      current
    		DESCRIPTION
            "Current Alarm Probable Cause Qualifier"
    	::= { currentAlarmsEntry 8 }  
     		
	currentAlarmAdditionalText OBJECT-TYPE
    	   SYNTAX       OCTET STRING (SIZE (0..80))
	       MAX-ACCESS  read-only
	       STATUS      current
    		DESCRIPTION
            "Additional Text"
    	::= { currentAlarmsEntry 9 }   
	currentAlarmLayerRate OBJECT-TYPE
    	   SYNTAX      LayerRateTC
	       MAX-ACCESS  read-only
	       STATUS      current
    		DESCRIPTION
            "Layer Rate"
    	::= { currentAlarmsEntry 10 } 
   
---Log definition  
alarmLog  OBJECT IDENTIFIER ::= { log 1 }
---Alarm Log definition
    maxNumOfEntriesForAlarm  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
                "Max Number Of Entries For Alarm"
        ::= { alarmLog 1 }  
    lastSeqNumForAlarm  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
                "Last Sequence Number For Alarm"
        ::= { alarmLog 2 } 	
---AlarmLog table definition          
  	alarmLogTable	OBJECT-TYPE
		SYNTAX SEQUENCE OF AlarmLogEntry
		MAX-ACCESS  not-accessible
		STATUS current
		DESCRIPTION
            "Alarm Log Table"
    		::= { alarmLog 3 }   
    		
	alarmLogEntry OBJECT-TYPE
    		SYNTAX      AlarmLogEntry
    		MAX-ACCESS  not-accessible
    		STATUS      current
    		DESCRIPTION
            "An entry containing management information applicable to a
            particular interface."  
            INDEX {alarmLogSequenceNumber}
    		::= { alarmLogTable 1 }              
            
	AlarmLogEntry ::=
		    SEQUENCE {   
                    alarmLogSequenceNumber           Integer32,
                    alarmLogTimeStamp                DateAndTime,
                    alarmLogNotificationId           NotificationIdTC,
                    alarmLogSeverity                 SeverityTC,
                    alarmLogProbableCause            ProbableCauseTC,
                    alarmLogProbableCauseQualifier   OCTET STRING,
                    alarmLogAdditionalText           OCTET STRING,
                    alarmLogLayerRate                LayerRateTC		    
            }      
 
	alarmLogSequenceNumber OBJECT-TYPE
    	   SYNTAX      Integer32 (0..2147483647)
	       MAX-ACCESS  not-accessible
	       STATUS      current
    		DESCRIPTION
            "AlarmLog Sequence Number"
    	     ::= { alarmLogEntry 1 }
 
	alarmLogTimeStamp OBJECT-TYPE
    		SYNTAX      DateAndTime
    		MAX-ACCESS  read-only
    		STATUS      current
    		DESCRIPTION
            "Alarm Log TimeStamp"
    	::= { alarmLogEntry 2 }  
     		
	alarmLogNotificationId OBJECT-TYPE
    	   SYNTAX      NotificationIdTC
	       MAX-ACCESS  read-only
	       STATUS      current
    		DESCRIPTION
            "Alarm Log Notification Id"
    	::= { alarmLogEntry 3 }   
	alarmLogSeverity OBJECT-TYPE
    	   SYNTAX      SeverityTC
	       MAX-ACCESS  read-only
	       STATUS      current
    		DESCRIPTION
            "Alarm Log Severity"
    	::= { alarmLogEntry 4 }  
	alarmLogProbableCause OBJECT-TYPE
    	   SYNTAX      ProbableCauseTC
	       MAX-ACCESS  read-only
	       STATUS      current
    		DESCRIPTION
            "Alarm Log Probable Cause"
    	  ::= { alarmLogEntry 5 }
 
	alarmLogProbableCauseQualifier OBJECT-TYPE
    		SYNTAX      OCTET STRING (SIZE (0..80))
    		MAX-ACCESS  read-only
    		STATUS      current
    		DESCRIPTION
            "Alarm Log Probable Cause Qualifier"
    	::= { alarmLogEntry 6 }  
     		
	alarmLogAdditionalText OBJECT-TYPE
    	   SYNTAX       OCTET STRING (SIZE (0..80))
	       MAX-ACCESS  read-only
	       STATUS      current
    		DESCRIPTION
            "Alarm Log Additional Text"
    	::= { alarmLogEntry 7 }   
	alarmLogLayerRate OBJECT-TYPE
    	   SYNTAX      LayerRateTC
	       MAX-ACCESS  read-only
	       STATUS      current
    		DESCRIPTION
            "Alarm Log Layer Rate"
    	::= { alarmLogEntry 8 }    
--- TMNNotificationLog definition      
tmnNotificationLog  OBJECT IDENTIFIER ::= { log 2 }
    maxNumOfEntriesForTMN  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
                "Maximum Number Of Entries For TMN"
        ::= { tmnNotificationLog 1 }  
    lastSeqNumForTMN  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
                "Last Sequence Number For TMN"
        ::= { tmnNotificationLog 2 } 
        
---TMNNotificationLog table definition
 	tmnNotificationLogTable	OBJECT-TYPE
		SYNTAX SEQUENCE OF TmnNotificationLogEntry
		MAX-ACCESS  not-accessible
		STATUS current
		DESCRIPTION
            "TMN Notification Log Table"
    		::= { tmnNotificationLog 3 }   
    		
	tmnNotificationLogEntry OBJECT-TYPE
    		SYNTAX      TmnNotificationLogEntry
    		MAX-ACCESS  not-accessible
    		STATUS      current
    		DESCRIPTION
            "An entry containing management information applicable to a
            particular interface."  
            INDEX {tmnSequenceNumber}
    		::= { tmnNotificationLogTable 1 }              
            
	TmnNotificationLogEntry ::=
		    SEQUENCE {   
                    tmnSequenceNumber           Integer32,
                    tmnTimeStamp                DateAndTime,
                    tmnNotificationId           NotificationIdTC,
                    tmnAdditionalText           OCTET STRING		    
            }      
 
	tmnSequenceNumber OBJECT-TYPE
    	   SYNTAX      Integer32 (0..2147483647)
	       MAX-ACCESS  not-accessible
	       STATUS      current
    		DESCRIPTION
            "TMN Sequence Number"
    	     ::= { tmnNotificationLogEntry 1 }
 
	tmnTimeStamp OBJECT-TYPE
    		SYNTAX      DateAndTime
    		MAX-ACCESS  read-only
    		STATUS      current
    		DESCRIPTION
            "TMN TimeStamp"
    	::= { tmnNotificationLogEntry 2 }  
     		
	tmnNotificationId OBJECT-TYPE
    	   SYNTAX      NotificationIdTC
	       MAX-ACCESS  read-only
	       STATUS      current
    		DESCRIPTION
            "TMN Notification Id"
    	::= { tmnNotificationLogEntry 3 }    		
	tmnAdditionalText OBJECT-TYPE
    	   SYNTAX       OCTET STRING (SIZE (0..80))
	       MAX-ACCESS  read-only
	       STATUS      current
    		DESCRIPTION
            "TMN Additional Text"
    	::= { tmnNotificationLogEntry 4 }   

---EventLog definition    
eventLog  OBJECT IDENTIFIER ::= { log 3 }
    maxNumOfEntriesForEvent  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
                "Maximum Number Of Entries For Event"
        ::= { eventLog 1 }  
    lastSeqNumForEvent  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
                "Last Sequence Number For Event"
        ::= { eventLog 2 } 	
---EventLog table definition          
  	eventLogTable	OBJECT-TYPE
		SYNTAX SEQUENCE OF EventLogEntry
		MAX-ACCESS  not-accessible
		STATUS current
		DESCRIPTION
            "Event Log Table"
    		::= { eventLog 3 }   
    		
	eventLogEntry OBJECT-TYPE
    		SYNTAX      EventLogEntry
    		MAX-ACCESS  not-accessible
    		STATUS      current
    		DESCRIPTION
            "An entry containing management information applicable to a
            particular interface."  
            INDEX {eventLogSequenceNumber}
    		::= { eventLogTable 1 }              
            
	EventLogEntry ::=
		    SEQUENCE {   
                            eventLogSequenceNumber           Integer32,
                            eventLogTimeStamp                DateAndTime,
                            eventLogNotificationId           NotificationIdTC,
                            eventType                        EventTypeTC,
                            eventLogAdditionalText           OCTET STRING,
                            eventCause                       EventCauseTC		    
            }      
 
	eventLogSequenceNumber OBJECT-TYPE
    	   SYNTAX      Integer32 (0..2147483647)
	       MAX-ACCESS  not-accessible
	       STATUS      current
    		DESCRIPTION
            "Event Log Sequence Number"
    	     ::= { eventLogEntry 1 }
 
	eventLogTimeStamp OBJECT-TYPE
    		SYNTAX      DateAndTime
    		MAX-ACCESS  read-only
    		STATUS      current
    		DESCRIPTION
            "Event Log TimeStamp"
    	::= { eventLogEntry 2 }  
     		
	eventLogNotificationId OBJECT-TYPE
    	   SYNTAX      NotificationIdTC
	       MAX-ACCESS  read-only
	       STATUS      current
    		DESCRIPTION
            "Event Log Notification Id"
    	::= { eventLogEntry 3 }   
	eventType OBJECT-TYPE
    	   SYNTAX      EventTypeTC
	       MAX-ACCESS  read-only
	       STATUS      current
    		DESCRIPTION
            "Event Type"
    	::= { eventLogEntry 4 }     		
	eventLogAdditionalText OBJECT-TYPE
    	   SYNTAX       OCTET STRING (SIZE (0..80))
	       MAX-ACCESS  read-only
	       STATUS      current
    		DESCRIPTION
            "Event Log Additional Text"
    	::= { eventLogEntry 5 }   
	eventCause OBJECT-TYPE
    	   SYNTAX      EventCauseTC
	       MAX-ACCESS  read-only
	       STATUS      current
    		DESCRIPTION
            "Event Cause"
    	::= { eventLogEntry 6 }  
    	
---ProtectionSwitchLog definition 
protectionSwitchLog  OBJECT IDENTIFIER ::= { log 4 }
    maxNumOfEntriesForSwitch  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
                "Maximum Number Of Entries For Switch"
        ::= { protectionSwitchLog 1 }  
    lastSeqNumForSwitch  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
                "Last Sequence Number For Switch"
        ::= { protectionSwitchLog 2 } 	
---ProtectionSwitchLog table definition          
  	protectionSwitchLogTable	OBJECT-TYPE
		SYNTAX SEQUENCE OF ProtectionSwitchLogEntry
		MAX-ACCESS  not-accessible
		STATUS current
		DESCRIPTION
            "Protection Switch Log Table"
    		::= { protectionSwitchLog 3 }   
    		
	protectionSwitchLogEntry OBJECT-TYPE
    		SYNTAX      ProtectionSwitchLogEntry
    		MAX-ACCESS  not-accessible
    		STATUS      current
    		DESCRIPTION
            "An entry containing management information applicable to a
            particular interface."  
            INDEX {switchLogSequenceNumber}
    		::= { protectionSwitchLogTable 1 }              
            
	ProtectionSwitchLogEntry ::=
		    SEQUENCE {   
		                switchLogSequenceNumber           Integer32,
                    switchLogTimeStamp                DateAndTime,
                    switchLogNotificationId           NotificationIdTC,
                    switchType                        SwitchTypeTC,
                    switchLogAdditionalText           OCTET STRING,
                    switchReason                      SwitchReasonTC		    
            }      
 
	switchLogSequenceNumber OBJECT-TYPE
    	   SYNTAX      Integer32 (0..2147483647)
	       MAX-ACCESS  not-accessible
	       STATUS      current
    		DESCRIPTION
            "Switch Log Sequence Number"
    	     ::= { protectionSwitchLogEntry 1 }
 
	switchLogTimeStamp OBJECT-TYPE
    		SYNTAX      DateAndTime
    		MAX-ACCESS  read-only
    		STATUS      current
    		DESCRIPTION
            "Switch Log TimeStamp"
    	::= { protectionSwitchLogEntry 2 }  
     		
	switchLogNotificationId OBJECT-TYPE
    	   SYNTAX      NotificationIdTC
	       MAX-ACCESS  read-only
	       STATUS      current
    		DESCRIPTION
            "Switch Log Notification Id"
    	::= { protectionSwitchLogEntry 3 }   
	switchType OBJECT-TYPE
    	   SYNTAX      SwitchTypeTC
	       MAX-ACCESS  read-only
	       STATUS      current
    		DESCRIPTION
            "Represents the type of the protection for which the switch has occurred."
    	::= { protectionSwitchLogEntry 4 }     		
	switchLogAdditionalText OBJECT-TYPE
    	   SYNTAX       OCTET STRING (SIZE (0..80))
	       MAX-ACCESS  read-only
	       STATUS      current
    		DESCRIPTION
            "Switch Log Additional Text"
    	::= { protectionSwitchLogEntry 5 }   
	switchReason OBJECT-TYPE
    	   SYNTAX      SwitchReasonTC
	       MAX-ACCESS  read-only
	       STATUS      current
    		DESCRIPTION
            "This attribute represents the reason for the switch."
    	::= { protectionSwitchLogEntry 6 }  
    	
--
-- Conformance
--

    ptFMCompliances OBJECT IDENTIFIER ::= { ptFMConformance 1 }
    ptFMGroups      OBJECT IDENTIFIER ::= { ptFMConformance 2 }

    ptFMFullCompliance MODULE-COMPLIANCE
        STATUS current
        DESCRIPTION
            "The compliance statement for SNMP entities which implement everything."
        MODULE -- This Module
        MANDATORY-GROUPS { ptFMCompleteGroup}
        ::= { ptFMCompliances 1 }

    ptFMCompleteGroup OBJECT-GROUP
        OBJECTS
        {
          alarmLogTimeStamp,
          alarmLogNotificationId,
          alarmLogSeverity,
          alarmLogProbableCause,
          alarmLogProbableCauseQualifier,
          alarmLogAdditionalText,
          alarmLogLayerRate,
          category,
          clearable,
          currentAlarmTimeStamp,
          currentAlarmNotificationId,
          currentAlarmManagedObjectId,
          currentAlarmReferenceObjectId,
          currentAlarmSeverity,
          currentAlarmProbableCause,
          currentAlarmProbableCauseQualifier,
          currentAlarmAdditionalText,
          currentAlarmLayerRate,
          eventLogTimeStamp,
          eventLogNotificationId,
          eventType,
          eventLogAdditionalText,
          eventCause,
          lastSeqNumForAlarm,
          lastSeqNumForTMN,
          lastSeqNumForEvent,
          lastSeqNumForSwitch,
          lCASExtendedAlarms,
          maxNumOfEntriesForAlarm, 
          maxNumOfEntriesForTMN,
          maxNumOfEntriesForEvent,
          maxNumOfEntriesForSwitch,
          notificationReporting,
          nIMAlarms,
          onFilter,
          offFilter,
          pJEAlarms,
          probableCauseQualifier,
          probableCause,
          severity,
          switchLogTimeStamp,
          switchLogNotificationId,
          switchType,
          switchLogAdditionalText,
          switchReason,
          tmnTimeStamp,
          tmnNotificationId,
          tmnAdditionalText
        }
        STATUS current
        DESCRIPTION
            "A collection of all current objects in this MIB module."
        ::= { ptFMGroups 1 }        


END