summaryrefslogtreecommitdiff
path: root/MIBS/siae/SIAE-SYNC-MIB
blob: 5616c27e06af1f6bc3c154c8dfdbc8e08e3a135a (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
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
-- ----------------------------------------------------------------------------
--
--  SIAE MICROELETTRONICA s.p.a.
--                 
--  Via Michelangelo Buonarroti, 21
--  20093 - Cologno Monzese
--  Milano 
--  ITALY
--
-- ----------------------------------------------------------------------------
-- ----------------------------------------------------------------------------

SIAE-SYNC-MIB
        DEFINITIONS ::= BEGIN

        IMPORTS
             MODULE-IDENTITY, OBJECT-TYPE,
             Integer32, Counter32
        FROM SNMPv2-SMI
             DisplayString, RowStatus
        FROM SNMPv2-TC
             ifIndex, InterfaceIndexOrZero
        FROM IF-MIB
             siaeMib
        FROM SIAE-TREE-MIB
             AlarmStatus, AlarmSeverityCode
        FROM SIAE-ALARM-MIB;

    sync MODULE-IDENTITY
        LAST-UPDATED "201404020000Z"
        ORGANIZATION "SIAE MICROELETTRONICA spa"
        CONTACT-INFO
            "SIAE MICROELETTONICA s.p.a.
             Via Michelangelo Buonarroti, 21
             20093 - Cologno Monzese
             Milano - ITALY
             Phone :  +39-02-27325-1
             E-mail: tbd@siaemic.com
            "
        DESCRIPTION
            "Timing Source Management.
            "
        REVISION "201404020000Z"
        DESCRIPTION
            "MIB version 01.00.01
             Added esmcTable.
             Changed MAX-ACCESS clause from read-write to read-create in
             tables with row status.
             Changed STATUS clause of timingSinkEthPortRole from current to 
             deprecated
            "
        REVISION "201402170000Z"
        DESCRIPTION
            "MIB version 01.00.01
             Added timingSinkSelectorTable
            "
        REVISION "201402030000Z"
        DESCRIPTION
            "Improved description of syncMibVersion
             Removed TimeTicks from IMPORTS list
            "
        REVISION "201304160000Z"
        DESCRIPTION 
            "Initial version 01.00.00
            "
      ::= { siaeMib 28 }

----------------------------------------------------------------------------------
--  object identifier inside the module
----------------------------------------------------------------------------------

----------------------------------------------------------------------------------
--  30.28 timingGenerator GROUP
----------------------------------------------------------------------------------
--
-- This group is used to manage the Timing Generator (two instances if the EPS
-- protection is present).
--
----------------------------------------------------------------------------------

------ Beginning --------------------------------------------------------------

    syncMibVersion  OBJECT-TYPE
        SYNTAX      INTEGER
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Numerical version of this module.
             The string version of this MIB have the following format:
                XX.YY.ZZ
             so, for example, the value 1 should be interpreted as 00.00.01
             and the value 10001 should be interpreted as 01.00.01."
        DEFVAL {1}
    ::= {sync 1}

-------  Begin of timingGeneratorTable
--
    timingGeneratorTable  OBJECT-TYPE
        SYNTAX      SEQUENCE OF     TimingGenerator
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "Table with TimingGenerator records."
    ::= {sync 2}

    timingGeneratorRecord  OBJECT-TYPE
        SYNTAX      TimingGenerator
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "TimingGenerator record."
        INDEX {timingGeneratorId}
    ::= {timingGeneratorTable 1}

    TimingGenerator  ::=
        SEQUENCE {
            timingGeneratorId                 Integer32,
            timingGeneratorT4vsT0             INTEGER,
            timingGeneratorHoldOffTime        INTEGER,
            timingGeneratorWtrTime            INTEGER,
            timingGeneratorSinkLosSet         INTEGER,
            timingGeneratorSinkLosReset       INTEGER,
            timingGeneratorT0SquelchAlarm     AlarmStatus,
            timingGeneratorT4SquelchAlarm     AlarmStatus,
            timingGeneratorFreeRunningStatus  AlarmStatus,
            timingGeneratorHoldoverStatus     AlarmStatus,
            timingGeneratorActiveStatus       INTEGER,
            timingGeneratorT0CurrentQuality   INTEGER,
            timingGeneratorT4CurrentQuality   INTEGER,
            timingGeneratorT4MinimumQuality   INTEGER,
            timingGeneratorT0PreferredSource  OBJECT IDENTIFIER,
            timingGeneratorT4PreferredSource  OBJECT IDENTIFIER,
            timingGeneratorRowStatus          RowStatus
         }

    timingGeneratorId  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "This object is used as Index of the Timing Generator Table."
    ::= {timingGeneratorRecord 1}

    timingGeneratorT4vsT0  OBJECT-TYPE
        SYNTAX      INTEGER {
                             t4NotEqualT0 (1),
                             t4EqualT0    (2)
                            }
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "This object is used to set or reset the condition T4 equal T0."
        DEFVAL {t4EqualT0}
    ::= {timingGeneratorRecord 2}

    timingGeneratorHoldOffTime  OBJECT-TYPE
        SYNTAX      INTEGER    (300..1800)
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "HoldOff time in milliseconds (300..1800)."
        DEFVAL {300}
    ::= {timingGeneratorRecord 3}

    timingGeneratorWtrTime  OBJECT-TYPE
        SYNTAX      INTEGER    (0..12)
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "Wait Time to Restore in minutes (0..12)."
        DEFVAL {5}
    ::= {timingGeneratorRecord 4}

    timingGeneratorSinkLosSet  OBJECT-TYPE
        SYNTAX      INTEGER    (0..60)
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "Wait time (seconds) before to set Los of reference signal."
        DEFVAL {1}
    ::= {timingGeneratorRecord 5}

    timingGeneratorSinkLosReset  OBJECT-TYPE
        SYNTAX      INTEGER    (0..60)
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "Wait time (seconds) before to reset Los of reference signal."
        DEFVAL {1}
    ::= {timingGeneratorRecord 6}

    timingGeneratorT0SquelchAlarm  OBJECT-TYPE
        SYNTAX      AlarmStatus
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
           "T0 squelch Alarm (Probable cause = xxx) with associated severity."
    ::= {timingGeneratorRecord 7}

    timingGeneratorT4SquelchAlarm OBJECT-TYPE
        SYNTAX      AlarmStatus
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "T4 squelch Alarm (Probable cause = xxx) with associated severity."
    ::= {timingGeneratorRecord 8}

    timingGeneratorFreeRunningStatus  OBJECT-TYPE
        SYNTAX      AlarmStatus
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Free running status (Probable cause = xxx) with associated severity."
    ::= {timingGeneratorRecord 9}

    timingGeneratorHoldoverStatus  OBJECT-TYPE
        SYNTAX      AlarmStatus
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Holdover status (Probable cause = xxx) with associated severity."
    ::= {timingGeneratorRecord 10}

    timingGeneratorActiveStatus  OBJECT-TYPE
        SYNTAX      INTEGER {
                             cleared                 (1),
                             activeReportableStatus  (2)
                            }
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Active status (Probable cause = xxx) with associated severity."
    ::= {timingGeneratorRecord 11}

   timingGeneratorT0CurrentQuality  OBJECT-TYPE
        SYNTAX      INTEGER {
                             qUNKN  (0),
                             qPRC   (2),
                             qSSUT  (4),
                             qSSUL  (8),
                             qSEC   (11),
                             qDNU   (15)
                            }
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Current quality on T0."
    ::= {timingGeneratorRecord 12}

    timingGeneratorT4CurrentQuality  OBJECT-TYPE
        SYNTAX      INTEGER {
                             qUNKN  (0),
                             qPRC   (2),
                             qSSUT  (4),
                             qSSUL  (8),
                             qSEC   (11),
                             qDNU   (15)
                            }
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Current quality on T4."
    ::= {timingGeneratorRecord 13}

    timingGeneratorT4MinimumQuality  OBJECT-TYPE
        SYNTAX      INTEGER {
                             qPRC   (2),
                             qSSUT  (4),
                             qSSUL  (8),
                             qSEC   (11)
                            }
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "If the Quality Level of the signal used to derive T4 falls below
             timingGeneratorT4MinimumQuality then the output will be squelched.
             The value ql-DNU inhibits T4 squelch due to this minimum Quality
             Level. This feature is enabled by timingGeneratorT4Squelch when
             timingGeneratorQualityEnable is on(2)."
        DEFVAL {qSEC}
    ::= {timingGeneratorRecord 14}

    timingGeneratorT0PreferredSource   OBJECT-TYPE
        SYNTAX      OBJECT IDENTIFIER
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "Object identifier of the leaf timingSinkGenId of the timingSink
             instance selected as preferential clock source of T0.
             If no preferential timing sink is selected,
             the value should be set to the OBJECT IDENTIFIER { 0 0 }.
            "
--        DEFVAL {0 0}
    ::= {timingGeneratorRecord 15}

    timingGeneratorT4PreferredSource   OBJECT-TYPE 
        SYNTAX      OBJECT IDENTIFIER
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "Object identifier of the leaf timingSinkGenId of the timingSink
             instance selected as preferential clock source of T4.
             If no preferential timing sink is selected,
             the value should be set to the OBJECT IDENTIFIER { 0 0 }.
            "
--        DEFVAL {0 0}
    ::= {timingGeneratorRecord 16}

    timingGeneratorRowStatus   OBJECT-TYPE 
        SYNTAX      RowStatus
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "Status of this row of timingGeneratorTable.
            "
    ::= {timingGeneratorRecord 17}

--
-------  End of timingGeneratorTable


-------  Begin of timingGeneratorMaintTable
--
    timingGeneratorMaintTable  OBJECT-TYPE
        SYNTAX      SEQUENCE OF     TimingGeneratorMaintRecord
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "Table with TimingGenerator records."
    ::= {sync 3}

    timingGeneratorMaintRecord  OBJECT-TYPE
        SYNTAX      TimingGeneratorMaintRecord
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "TimingGenerator record."
        INDEX {timingGeneratorId}
    ::= {timingGeneratorMaintTable 1}

    TimingGeneratorMaintRecord  ::=
        SEQUENCE {
            timingGeneratorT4Squelch          INTEGER,
            timingGeneratorStatusControl      INTEGER,
            timingGeneratorT0ForcedSource     OBJECT IDENTIFIER,
            timingGeneratorT4ForcedSource     OBJECT IDENTIFIER,
            timingGeneratorWtrClearSource     OBJECT IDENTIFIER
         }

    timingGeneratorT4Squelch  OBJECT-TYPE
        SYNTAX      INTEGER {
                             disable  (1),
                             enable   (2)
                            }
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "This object is used to enable/disable T4 squelch."
    ::= {timingGeneratorMaintRecord 1}

    timingGeneratorStatusControl  OBJECT-TYPE
        SYNTAX      INTEGER {
                             freerunning  (1),
                             holdover     (2),
                             locked       (3)
                            }
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Clock generator operating mode control.
             This item is linked to a manual operation (ManOpRecord) instance."
        DEFVAL {locked}
    ::= {timingGeneratorMaintRecord 2}

    timingGeneratorT0ForcedSource   OBJECT-TYPE
        SYNTAX      OBJECT IDENTIFIER
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Object identifier of the leaf timingSinkGenId of the timingSink
             instance selected as forced clock source of T0.
             If no forced timing sink is selected,
             the value should be set to the OBJECT IDENTIFIER { 0 0 }.
            "
--        DEFVAL {0 0}
    ::= {timingGeneratorMaintRecord 3}

    timingGeneratorT4ForcedSource   OBJECT-TYPE 
        SYNTAX      OBJECT IDENTIFIER
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Object identifier of the leaf timingSinkGenId of the timingSink
             instance selected as forced clock source of T4.
             If no forced timing sink is selected,
             the value should be set to the OBJECT IDENTIFIER { 0 0 }.
            "
--        DEFVAL {0 0}
    ::= {timingGeneratorMaintRecord 4}


    timingGeneratorWtrClearSource  OBJECT-TYPE
        SYNTAX      OBJECT IDENTIFIER
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Object identifier of the leaf timingSinkGenId of the timingSink
             instance selected to clear WTR time. On read, this object return
             alvays an OBJECT IDENTIFIER {0 0}.
            "
--        DEFVAL {0 0}
    ::= {timingGeneratorMaintRecord 5}


--
-------  End of timingGeneratorMaintTable


-------  Begin of timingSinkTable
--
    timingSinkTable  OBJECT-TYPE
        SYNTAX       SEQUENCE OF TimingSink
        MAX-ACCESS   not-accessible
        STATUS       current
        DESCRIPTION
            "Table with TimingSink records."
    ::= {sync 4}

    timingSinkRecord  OBJECT-TYPE
        SYNTAX      TimingSink
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "TimingSink record."
        INDEX {timingSinkGenId, timingSinkId, timingSinkType}
    ::= {timingSinkTable 1}

    TimingSink  ::=
        SEQUENCE {
            timingSinkGenId               Integer32,
            timingSinkId                  Integer32,
            timingSinkType                INTEGER,
            timingSinkIfIndex             InterfaceIndexOrZero,
            timingSinkSelector            Integer32,
            timingSinkPriority            INTEGER,
            timingSinkLabel               DisplayString,
            timingSinkLosAlarm            AlarmStatus,
            timingSinkDriftAlarm          AlarmStatus,
            timingSinkActiveStatus        INTEGER,
            timingSinkCurrentQuality      INTEGER,
            timingSinkOverwriteTxQuality  INTEGER,
            timingSinkOverwriteRxQuality  INTEGER,
            timingSinkSentQuality         INTEGER,
            timingSinkE1Sabit             INTEGER,
            timingSinkEthPortRole         INTEGER,
            timingSinkRowStatus           RowStatus
        }

    timingSinkGenId  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "This object is used as Index of the timingGeneratorTable and
             defines in union with timingSinkType and timingSinkId the
             reference signal.
            "
    ::= {timingSinkRecord 1}

    timingSinkId  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "This object is used as Index of the timingSinkTable and
             defines in union with timingSinkType and timingSinkGenId the 
             reference signal.
            "
    ::= {timingSinkRecord 2}

    timingSinkType  OBJECT-TYPE
        SYNTAX      INTEGER {
                             t0  (1),
                             t4  (2)
                            }
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "This object is used as Index of the timingSinkTable and defines 
             if the reference signal is used to generate T0 or T4 system clock.
            "
    ::= {timingSinkRecord 3}

    timingSinkIfIndex OBJECT-TYPE
        SYNTAX      InterfaceIndexOrZero
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            " The ifIndex value the agent selected for this
              timingSink interface.
            "
    ::= {timingSinkRecord 4}

    timingSinkSelector  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "This object is used to select one of the possible clock source
             connected to this timingSink. Valid values are listed in
             timingSinkSelectorTable: only values of timingSinkSelectorId
             related to this instance of timinkSinkRecord are accepted.
             Only the values corresponding to the index timingSinkSelectorId of
             timinkSinkSelectorTable related to this instance of
             timinkSinkRecord will be accepted.
            "
    ::= {timingSinkRecord 5}

    timingSinkPriority  OBJECT-TYPE
        SYNTAX      INTEGER {
                             p1       (1),
                             p2       (2),
                             p3       (3),
                             p4       (4),
                             p5       (5),
                             p6       (6),
                             p7       (7),
                             p8       (8),
                             p9       (9),
                             p10      (10),
                             p11      (11),
                             p12      (12),
                             p13      (13),
                             p14      (14),
                             p15      (15),
                             disable  (16)
                            }
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "This object is used to set the priority of the reference signal (p1 is
             the highest priority)."
        DEFVAL {disable}
    ::= {timingSinkRecord 6}

    timingSinkLabel  OBJECT-TYPE
        SYNTAX      DisplayString    (SIZE(0..31))
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "ASCII string used to describe the reference signal when a trap is sent."
    ::= {timingSinkRecord 7}

    timingSinkLosAlarm  OBJECT-TYPE
        SYNTAX      AlarmStatus
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Loss of reference signal (Probable cause = xxx) alarm
             with associated severity."
    ::= {timingSinkRecord 8}

    timingSinkDriftAlarm  OBJECT-TYPE
        SYNTAX      AlarmStatus
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Drift of reference signal (Probable cause = xxx) alarm
             with associated severity."
    ::= {timingSinkRecord 9}

    timingSinkActiveStatus  OBJECT-TYPE
        SYNTAX      INTEGER {
                             cleared                 (1),
                             activeReportableStatus  (2)
                            }
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Active status (Probable cause = xxx) status for the reference signal."
    ::= {timingSinkRecord 10}

    timingSinkCurrentQuality  OBJECT-TYPE
        SYNTAX      INTEGER {
                             qUNKN  (0),
                             qPRC   (2),
                             qSSUT  (4),
                             qSSUL  (8),
                             qSEC   (11),
                             qDNU   (15)
                            }
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Current quality on sink instance."
    ::= {timingSinkRecord 11}

    timingSinkOverwriteTxQuality  OBJECT-TYPE
        SYNTAX      INTEGER {
                             noOverwrite (0),
                             qPRC        (2),
                             qSSUT       (4),
                             qSSUL       (8),
                             qSEC        (11),
                             qDNU        (15)
                            }
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "Forcing of Tx quality parameter."
        DEFVAL {noOverwrite}
    ::= {timingSinkRecord 12}

    timingSinkOverwriteRxQuality  OBJECT-TYPE
        SYNTAX      INTEGER {
                             noOverwrite   (0),
                             qPRC          (2),
                             qSSUT         (4),
                             qSSUL         (8),
                             qSEC          (11),
                             qDNU          (15)
                            }
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "Forcing of Rx quality parameter."
        DEFVAL {noOverwrite}
    ::= {timingSinkRecord 13}

    timingSinkSentQuality  OBJECT-TYPE
        SYNTAX      INTEGER {
                             qUNKN    (0),
                             qPRC     (2),
                             qSSUT    (4),
                             qSSUL    (8),
                             qSEC     (11),
                             qDNU     (15)
                            }
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Quality level written in the S1 byte of the outgoing STM-n."
    ::= {timingSinkRecord 14}

    timingSinkE1Sabit OBJECT-TYPE
        SYNTAX      INTEGER  (4..8)
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "Specifies the San synchronization status bit used 
             to indicate the clock quality level.
             Meaningful when the Sink source is an E1  "
        DEFVAL { 4 }
    ::= {timingSinkRecord 15}

    timingSinkEthPortRole OBJECT-TYPE
        SYNTAX      INTEGER {
                             static   (1),
                             dynamic  (2)
                            }
        MAX-ACCESS  read-create
        STATUS      deprecated
        DESCRIPTION
            "This item configures how to handle the role of a 1000BASE-T port
             when it is used as a source of timing: choosing 'static', the
             role is set according ethLanPhyTable settings, choosing 'dynamic',
             the role is set consistently with the timing direction over the
             1000baseT link chosen by SSM protocol."
        DEFVAL {dynamic}
    ::= {timingSinkRecord 16}

    timingSinkRowStatus   OBJECT-TYPE 
        SYNTAX      RowStatus
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "Status of this row of timingSinkTable
            "
    ::= {timingSinkRecord 17}

--
-------  End of timingSinkTable

    timingGeneratorManualSwitch   OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "timingGeneratorId of the forced timingGenerator instance.
             If no preferred timing generator is selected, the value
             should be set to 0.
            "
    ::= {sync 5}

    timingGeneratorForcedSwitch   OBJECT-TYPE 
        SYNTAX      Integer32
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "timingGeneratorId of the forced timingGenerator instance.
             If no forced timing generator is selected, the value
             should be set to 0.
            "
    ::= {sync 6}

--
------- The following objects define the profile of Timing Generator alarms:
--

    timingGeneratorT0SquelchAlarmSeverityCode  OBJECT-TYPE
        SYNTAX      AlarmSeverityCode
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Defines the severity associated to the TimingGeneratorT0SquelchAlarm
             and enables/disables the trap generation on status change event."
        DEFVAL {majorTrapEnable}
    ::= {sync 7}

    timingGeneratorT4SquelchAlarmSeverityCode  OBJECT-TYPE
        SYNTAX      AlarmSeverityCode
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Defines the severity associated to the timingGeneratorT4SquelchAlarm
             and enables/disables the trap generation on status change event."
        DEFVAL {majorTrapEnable}
    ::= {sync 8}

    timingGeneratorFreeRunningStatusSeverityCode  OBJECT-TYPE
        SYNTAX      AlarmSeverityCode
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Defines the severity associated to the timingGeneratorFreeRunningStatus
             and enables/disables the trap generation on status change event."
        DEFVAL {warningTrapEnable}
    ::= {sync 9}

    timingGeneratorHoldoverStatusSeverityCode  OBJECT-TYPE
        SYNTAX      AlarmSeverityCode
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Defines the severity associated to the timingGeneratorHoldoverStatus
             and enables/disables the trap generation on status change event."
        DEFVAL {warningTrapEnable}
    ::= {sync 10}

    timingGeneratorActiveStatusSeverityCode  OBJECT-TYPE
        SYNTAX      INTEGER {
                             disable                  (1),
                             statusTrapEnable         (2)
                            }
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Defines the severity associated to the timingGeneratorActiveStatus
             and enables/disables the trap generation on status change event."
        DEFVAL {statusTrapEnable}
    ::= {sync 11}

    timingGeneratorQualityEnable  OBJECT-TYPE
        SYNTAX      INTEGER {
                             off  (1),
                             on   (2)
                            }
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Quality policy enable "
        DEFVAL {off}
    ::= {sync 12}

--
-------  The following objects define the profile of Timing Sink alarms:
--

    timingSinkLosAlarmSeverityCode  OBJECT-TYPE
        SYNTAX      AlarmSeverityCode
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Defines the severity associated to the TimingSinkLosAlarm
             and enables/disables the trap generation on status change event."
        DEFVAL {majorTrapEnable}
    ::= {sync 13}

    timingSinkDriftAlarmSeverityCode  OBJECT-TYPE
        SYNTAX      AlarmSeverityCode
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Defines the severity associated to the TimingSinkDriftAlarm
             and enables/disables the trap generation on status change event."
        DEFVAL {warningTrapEnable}
    ::= {sync 14}

    timingSinkActiveStatusSeverityCode  OBJECT-TYPE
        SYNTAX      INTEGER {
                             disable                  (1),
                             statusTrapEnable         (2)
                            }
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Defines the severity associated to the timingSinkActiveStatus
             and enables/disables the trap generation on status change event."
        DEFVAL {statusTrapEnable}
    ::= {sync 15}

-------  Begin of timingSinkSelectorTable
--
    timingSinkSelectorTable  OBJECT-TYPE
        SYNTAX       SEQUENCE OF TimingSinkSelector
        MAX-ACCESS   not-accessible
        STATUS       current
        DESCRIPTION
            "Table with TimingSinkSelector records."
    ::= {sync 16}

    timingSinkSelectorRecord  OBJECT-TYPE
        SYNTAX      TimingSinkSelector
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "TimingSinkSelector entry.
             Several instances of this entry can be create for each instance of
             timingSinkTable. Each entry represents a possible source selected
             by a multiplexer outside the SETS for a specific timingSink.
             Only the values corresponding to the index timingSinkSelectorId can
             be set to timingSinkSelector.
            "
        INDEX {timingSinkGenId, timingSinkId, timingSinkType, timingSinkSelectorId}
    ::= {timingSinkSelectorTable 1}

    TimingSinkSelector  ::=
        SEQUENCE {
            timingSinkSelectorId          Integer32,
            timingSinkSelectorLabel       DisplayString
        }

    timingSinkSelectorId  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "This object is used as Index of the timingSinkSelectorTable and
             defines in union with timingSinkGenId, timingSinkType and
             timingSinkId the selected source by a multiplexer outside the
             SETS.
            "
    ::= {timingSinkSelectorRecord 1}

    timingSinkSelectorLabel  OBJECT-TYPE
        SYNTAX      DisplayString    (SIZE(0..31))
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "ASCII string used to describe the selectable timing source.
            "
    ::= {timingSinkSelectorRecord 2}

--
-------  End of timingSinkSelectorTable


-------  Begin of esmcTable
--

    esmcTable  OBJECT-TYPE
        SYNTAX       SEQUENCE OF EsmcRecord
        MAX-ACCESS   not-accessible
        STATUS       current
        DESCRIPTION
            "Table with TimingSinkSelector records."
    ::= {sync 17}

    esmcRecord  OBJECT-TYPE
        SYNTAX      EsmcRecord
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "esmcTable entry.
             Every entries describes an ESMC channel of a TE interface.
            "
        INDEX {ifIndex}
    ::= {esmcTable 1}

    EsmcRecord  ::=
        SEQUENCE {
            esmcSsmEnable     INTEGER,
            esmcQlRx          INTEGER,
            esmcQlTx          INTEGER,
            esmcPktsRx        Counter32,
            esmcPktsTx        Counter32,
            esmcPktsRxDropped Counter32,
            esmcPktsRxErrored Counter32,
            esmc1000BaseTRole INTEGER,
            esmcRowStatus     RowStatus
        }

    esmcSsmEnable  OBJECT-TYPE
        SYNTAX      INTEGER {
                             disable  (1),
                             enable   (2)
                            }
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "This object enables SSM messaging on this ifIndex.
            "
        DEFVAL {disable}
    ::= {esmcRecord 1}

    esmcQlRx  OBJECT-TYPE
        SYNTAX      INTEGER {
                             qUNKN  (0),
                             qPRC   (2),
                             qSSUT  (4),
                             qSSUL  (8),
                             qSEC   (11),
                             qDNU   (15)
                            }
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "This object show quality received on ESMC-PDU this interface.
            "
    ::= {esmcRecord 2}

    esmcQlTx  OBJECT-TYPE
        SYNTAX      INTEGER {
                             qUNKN  (0),
                             qPRC   (2),
                             qSSUT  (4),
                             qSSUL  (8),
                             qSEC   (11),
                             qDNU   (15)
                            }
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "This object show quality transmitted in ESMC-PDU on this interface.
            "
    ::= {esmcRecord 3}

    esmcPktsRx  OBJECT-TYPE
        SYNTAX      Counter32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "This object contains the total number of received ESMC-PDU packets
             on this interface.
            "
    ::= {esmcRecord 4}

    esmcPktsTx  OBJECT-TYPE
        SYNTAX      Counter32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "This object contains the total number of transmitted ESMC-PDU
             packets on this interface.
            "
    ::= {esmcRecord 5}

    esmcPktsRxDropped  OBJECT-TYPE
        SYNTAX      Counter32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "This object contains the total number of dropped ESMC-PDU packets
             on this interface.
            "
    ::= {esmcRecord 6}

    esmcPktsRxErrored  OBJECT-TYPE
        SYNTAX      Counter32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "This object contains the total number of dropped ESMC-PDU packets
             whose processing(decoding) resulted into error.
            "
    ::= {esmcRecord 7}

    esmc1000BaseTRole  OBJECT-TYPE
        SYNTAX      INTEGER {
                              slave (1),
                              master(2),
                              auto  (3)
                            }
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "This object allows to input the clock generator role of a 1000BaseT
             interface. This objects is applicable when the quality management
             is disabled (timingGeneratorQualityEnable set to off(1)) and to 
             all interfaces not connected to any timingSink when the quality
             management is enabled.
            "
        DEFVAL {auto}
    ::= {esmcRecord 8}

    esmcRowStatus   OBJECT-TYPE 
        SYNTAX      RowStatus
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "Status of this row of esmcTable.
            "
    ::= {esmcRecord 9}

--
-------  End of esmcTable

END