summaryrefslogtreecommitdiff
path: root/MIBS/adva/F3-SYNC-MIB
blob: 15d1e3e8a05ed9cd2a11e2e79fffdddd1a93db27 (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
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
F3-SYNC-MIB DEFINITIONS ::= BEGIN

IMPORTS
    MODULE-COMPLIANCE, OBJECT-GROUP
             FROM SNMPv2-CONF
    MODULE-IDENTITY, OBJECT-TYPE, IpAddress, Integer32, Unsigned32
             FROM SNMPv2-SMI                                           
    DisplayString, TruthValue, RowStatus, StorageType, VariablePointer,DateAndTime,
    TEXTUAL-CONVENTION
             FROM SNMPv2-TC
    neIndex, shelfIndex, slotIndex
             FROM  CM-ENTITY-MIB
    fsp150cm
             FROM  ADVA-MIB
    AdminState, OperationalState, SecondaryState, F3DisplayString, RestartType
             FROM  CM-COMMON-MIB
    CmGenPgSwitchoverReason
             FROM  CM-REDUNDANCY-MIB;

f3SyncMIB MODULE-IDENTITY
    LAST-UPDATED    "202001150000Z"
    ORGANIZATION    "ADVA Optical Networking SE"
    CONTACT-INFO
        "Web URL: http://adva.com/
        E-mail:  support@adva.com
        Postal:  ADVA Optical Networking SE
             Campus Martinsried
             Fraunhoferstrasse 9a
             82152 Martinsried/Munich
             Germany
        Phone: +49 089 89 06 65 0
        Fax:  +49 089 89 06 65 199 "
    DESCRIPTION    "

        Notes from release 202001150000Z
          (1) Added f3TimeClockPhaseAdjust

        Notes from release 201909110000Z,
          (1) New textual conventions: 
                ClkSignalType
	
        Notes from release 201907080000Z,
           (1) Added f3TimeClockAtoiCurrentOffset, f3TimeClockAtoiJumpSeconds, 
                     f3TimeClockAtoiTimeOfNextJump, f3TimeClockAtoiDisplayName

        Notes from release 201901230000Z,
          (1) Added table indices: 
                f3SyncProtGroupIndex in f3SyncProtMemberEntry, 
                f3TimeClockProtGroupIndex in f3TimeClockProtMemberEntry 
          
        Notes from release 201807300000Z,
          (1) New tables: 
                f3SyncProtGroupTable, f3SyncProtMemberTable, 
                f3TimeClockProtGroupTable, f3TimeClockProtMemberTable 
        
    Notes from release 201901070000Z
          (1) Added f3TimeClockTimeHoldoverTimeout
          (2) Added f3TimeClockTimeInHoldover


      
        Notes from release 201802210000Z,
          (1) Added table: f3PrcTable
          (2) New textual conventions: 
                SsmMode and AcknowledgeType
        
        Notes from release 201304240000Z,
          (1) New tables: f3TimeClockTable, f3TimeClockRefTable
        
        Notes from release 201003250000Z,
          (1)f3SyncTable has new objects
               f3SyncSelectionMode,
               f3SyncWaitToRestoreTime, f3SyncOperationSyncRef,
               f3SyncOperationType,
          (2)f3SyncRefTable has new object
               f3SyncRefOperationType
        
        Notes from release 201002120000Z,
          (1)f3SyncTable has new objects f3SyncAlias, f3SyncDomain
          (2)f3SyncRefTable has new objects
               f3SyncRefAlias, f3SyncRefEffectiveQL
        
        Notes from release 200903190000Z,
          (1)MIB version ready for release of FSP150CC devices GE101 and GE206."
    ::= {fsp150cm 12}

-- 
-- OID definitions
-- 
f3SyncObjects                   OBJECT IDENTIFIER ::= {f3SyncMIB 1}
f3SyncConformance               OBJECT IDENTIFIER ::= {f3SyncMIB 2}

-- 
-- Textual Conventions 
-- 
NetworkClockType ::= TEXTUAL-CONVENTION
    STATUS         current
    DESCRIPTION    "Enumerations for Network Clock Type.
        option1 - represents an SDH regional clock type,
        option2 - represents a SONET regional clock type."
    SYNTAX INTEGER    {
        option1 (1),
        option2 (2)
        }

ClockMode ::= TEXTUAL-CONVENTION
    STATUS         current
    DESCRIPTION    "Enumerations for Clock Mode.
        freerun    - Free Run,
        holdover   - Hold over,
        tracking   - Tracking,
        lossoflock - Loss of Lock,
        locked     - Locked,
        bypass     - the frequency entity is not functioning and is being bypassed. One of its frequency inputs is externally selected to be used directly as the frequency output."
    SYNTAX INTEGER    {
        notAvailable(0),
        freerun (1),
        holdover (2),
        tracking (3),
        lossoflock (4),
        locked (5),
        bypass(6)
        }

SSMQualityLevel ::= TEXTUAL-CONVENTION
    STATUS         current
    DESCRIPTION    "Enumerations for Sync Status Messages Quality Level"
    SYNTAX INTEGER    {
        not-applicable(0),
        ql-dnu (1),
        ql-eec1 (2),
        ql-eec2 (3),
        ql-inv (4),
        ql-inv0 (5),
        ql-inv1 (6),
        ql-inv2 (7),
        ql-inv3 (8),
        ql-inv5 (9),
        ql-inv7 (10),
        ql-inv8 (11),
        ql-inv9 (12),
        ql-inv10 (13),
        ql-inv11 (14),
        ql-inv12 (15),
        ql-none (16),
        ql-nsupp (17),
        ql-prc (18),
        ql-prov (19),
        ql-prs (20),
        ql-smc (21),
        ql-ssu-a (22),
        ql-ssu-b (23),
        ql-st2 (24),
        ql-st3e (25),
        ql-stu (26),
        ql-tnc (27),
        ql-unc (28),
        --
        ql-failed(29),
        ql-inv6(30),
        ql-inv13(31),
        ql-inv14(32),
        ql-dus (33),
        ql-na (34)
        
        }

SyncRefStatus ::= TEXTUAL-CONVENTION
    STATUS         current
    DESCRIPTION    "Enumerations for Sync Reference status,
        ref-ok,
        ref-failed."
    SYNTAX INTEGER    {
        not-applicable(0),
        ref-ok(1),
        ref-failed(2),
        ref-freq-ok(3)
        }

SyncRefState ::= TEXTUAL-CONVENTION
    STATUS         current
    DESCRIPTION    "Enumerations for Sync Reference state,
        active,
        standby,
        unavailable."
    SYNTAX INTEGER    {
        not-applicable(0),
        active(1),
        standby(2),
        unavailable(3),
        lockedout(4)
        }

SyncDomainType ::= TEXTUAL-CONVENTION
    STATUS         current
    DESCRIPTION    "Enumerations for Sync Domain type,
        chassis,
        linecard."
    SYNTAX INTEGER    {
        chassis(1), -- applicable to Hub Shelf/Line Cards sync entities
        linecard(2) -- applicable for NIDs and Line Cards
        }

SyncOperationType ::= TEXTUAL-CONVENTION
    STATUS         current
    DESCRIPTION    "Enumerations for Sync Operation Type,
        none         - No action,
        forcedswitch - can be used to override the currently selected reference, assuming
        the the chosen reference is not locked out.  A forced switch
        overrides a manual switch and subsequent forced switch preempts
        a previous forced switch.  A forced switch request to a reference
        which is in SF state or has a QL of DL-DNU when QL mode=Enabled
        will result in the clock selector entering holdover.
        manualswitch - can be used to switch to a reference, overriding the currently
        selected reference assuming a forced switch is not active
        on a reference other than chosen reference; it is not locked out,
        not in SF state, has a QL not QL-DNU and has the highest
        available QL. A manual switch request can only be used to
        override the assigned reference priorities.
        A manual switch request overrides a previous manual switch.
        lockout      - sets the state of reference to locked-out, it is no longer
        considered available by the selection process,
        clearwtr     - causes any active Wait to Restore timer for the reference,
        clearlockout - causes the reference to be considered available again by
        the selection process,
        clearswitch."
    SYNTAX INTEGER    {
        none(1),
        forcedswitch(2),
        manualswitch(3),
        lockout(4),
        clearwtr(5),
        clearlockout(6),
        clearswitch(7)
        }

SyncSelectionMode ::= TEXTUAL-CONVENTION
    STATUS         current
    DESCRIPTION    "Enumerations for Sync Selection Mode,
        ql-mode,
        priority-mode."
    SYNTAX INTEGER    {
        ql-mode(1),
        priority-mode(2)
        }

TimeScale ::= TEXTUAL-CONVENTION
    STATUS         current
    DESCRIPTION    "Enumerations for Time Scale,
        ptp,
        arb."
    SYNTAX INTEGER    {
    ptp(1),
        arb(2)
        }

TODSource ::= TEXTUAL-CONVENTION
    STATUS         current
    DESCRIPTION    "Enumerations for ARB ToD Source,
        na,
    system-tod,
        manual."
    SYNTAX INTEGER    {
    na(1),
        system-tod(2),
    manual(3)
        }

SquelchControl ::= TEXTUAL-CONVENTION
    STATUS         current
    DESCRIPTION    "Describes the Squelch Control of the PTP ports."
    SYNTAX INTEGER    {
        never(1),
        holdover (2),
        lock (3),
        squelch-ql(4)
        }

TimeClockMode ::= TEXTUAL-CONVENTION
    STATUS         current
    DESCRIPTION    "Enumerations for Time Clock Mode.
        freerun    - Free Run,
        warmup     - Warm Up,
        tracking   - Tracking,
        transition - Transition,
        holdover   - Holdover,
        locked     - Locked."
    SYNTAX INTEGER    {
        freerun (1),
        warmup (2),
        tracking (3),
        transition (4),
        holdover (5),
        locked (6)
        }

TimeTraceAbilityStatus ::= TEXTUAL-CONVENTION
    STATUS         current
    DESCRIPTION    "Describes the time trace ability status."
    SYNTAX INTEGER    {
        notTraceAble (1),
        timeLocked (2),
        timeFreqLock (3),
        timeHoldover (4)
        }

HoldoverAccuracy ::= TEXTUAL-CONVENTION
    STATUS         current
    DESCRIPTION    ""
    SYNTAX INTEGER    {
        time-500ns(1),
        time-1000ns(2),
        time-1500ns(3),
        time-5000ns(4),
        time-10000ns(5)
        }

TimeHoldoverPerformance ::= TEXTUAL-CONVENTION
    STATUS         current
    DESCRIPTION    ""
    SYNTAX INTEGER    {
        time-500ns(1),
        time-1000ns(2),
        time-1500ns(3),
        time-5000ns(4),
        time-10000ns(5),
        time-0ns(6),
        time-100ns(7),
        na(8)
        }

TimeSource ::= TEXTUAL-CONVENTION
    STATUS         current
    DESCRIPTION    "Enumerations for Time Source,
        atomic, gps, ptp,
        internal, other."
    SYNTAX INTEGER    {
        atomic(1),
        gps(2),
        ptp(3),
        internal(4),
        other(5)
        }

PLLBw ::= TEXTUAL-CONVENTION
    STATUS         current
    DESCRIPTION    "Enumerations for Clock PLL Bandwidth,
        eec,
        ssu."
    SYNTAX INTEGER    {
        eec(1),
        ssu(2)
        }

SsmMode ::= TEXTUAL-CONVENTION
    STATUS         current
    DESCRIPTION    "Enumerations for SSM Mode,
        enabled or disabled."
    SYNTAX INTEGER    {
        enabled(1),
        disbled(2)
        }

AcknowledgeType ::= TEXTUAL-CONVENTION
    STATUS         current
    DESCRIPTION    "Enumerations for Acknowledgement Type."
    SYNTAX INTEGER    {
        no-action(1),
        accuracy-adjust(2)
        }

ClkSignalType ::= TEXTUAL-CONVENTION
    STATUS         current
    DESCRIPTION    "Enumerations for Clk Signal Type,
        10mhz,
        2048khz."
    SYNTAX INTEGER    {
        not-applicable(0),
        freq-10mhz(1),
        freq-2048khz(2)
        }
--
-- Sync Table 
--
f3SyncTable OBJECT-TYPE
    SYNTAX         SEQUENCE OF F3SyncEntry
    MAX-ACCESS     not-accessible
    STATUS         current
    DESCRIPTION    "A list of entries corresponding to the Sync entities."
    ::= { f3SyncObjects 1 }

f3SyncEntry OBJECT-TYPE
    SYNTAX         F3SyncEntry
    MAX-ACCESS     not-accessible
    STATUS         current
    DESCRIPTION    "An entry containing information applicable to a particular
        Sync Entity."
    INDEX    { neIndex, shelfIndex, slotIndex, f3SyncIndex }
    ::= { f3SyncTable 1 }

F3SyncEntry  ::=  SEQUENCE    {
        f3SyncIndex               Integer32,
        
        f3SyncAdminState          AdminState,
        f3SyncOperationalState    OperationalState,
        f3SyncSecondaryState      SecondaryState,
        
        f3SyncNetworkClockType    NetworkClockType,
        f3SyncSelectedReference   VariablePointer,
        f3SyncClockMode           ClockMode,
        f3SyncQL                  SSMQualityLevel,
        
        -- new columns added for R4.3CC
        f3SyncAlias               DisplayString,
        f3SyncDomain              SyncDomainType,
        f3SyncSelectionMode       SyncSelectionMode,
        f3SyncWaitToRestoreTime   Integer32,
        f3SyncOperationSyncRef    VariablePointer,
        f3SyncOperationType       SyncOperationType,
        f3SyncPLLBw               PLLBw
        }

f3SyncIndex OBJECT-TYPE
    SYNTAX         Integer32
    MAX-ACCESS     read-only
    STATUS         current
    DESCRIPTION    "Unique index value associated with the Synchronization Entity."
    ::= { f3SyncEntry 1 }

f3SyncAdminState OBJECT-TYPE
    SYNTAX         AdminState
    MAX-ACCESS     read-write
    STATUS         current
    DESCRIPTION    "This object represents the Administrative State of the Sync
        Entity."
    ::= { f3SyncEntry 2 }

f3SyncOperationalState OBJECT-TYPE
    SYNTAX         OperationalState
    MAX-ACCESS     read-only
    STATUS         current
    DESCRIPTION    "This object represents the Operational State of the Sync
        Entity."
    ::= { f3SyncEntry 3 }

f3SyncSecondaryState OBJECT-TYPE
    SYNTAX         SecondaryState
    MAX-ACCESS     read-only
    STATUS         current
    DESCRIPTION    "This object represents the Secondary State of the Sync
        Entity."
    ::= { f3SyncEntry 4 }

f3SyncNetworkClockType OBJECT-TYPE
    SYNTAX         NetworkClockType
    MAX-ACCESS     read-write
    STATUS         current
    DESCRIPTION    "This object represents the regional clock type for
        the system.  This object determines which QL codes are
        supported."
    ::= { f3SyncEntry 5 }

f3SyncSelectedReference OBJECT-TYPE
    SYNTAX         VariablePointer
    MAX-ACCESS     read-only
    STATUS         current
    DESCRIPTION    "This object provides the source of the currently selected
        Sync reference. This would be the OID of the actual entity (bits port,
        traffic port etc.).
        An OID value of {0 0} represents internal clock."
    ::= { f3SyncEntry 6 }

f3SyncClockMode OBJECT-TYPE
    SYNTAX         ClockMode
    MAX-ACCESS     read-only
    STATUS         current
    DESCRIPTION    "This object provides the system clock mode."
    ::= { f3SyncEntry 7 }

f3SyncQL OBJECT-TYPE
    SYNTAX         SSMQualityLevel
    MAX-ACCESS     read-only
    STATUS         current
    DESCRIPTION    "This object provides the QL of the system reference.
        This is the value for each external reference's Transmit 
        QL attribute unless it should be transmitting QL-DNU."
    ::= { f3SyncEntry 8 }

f3SyncAlias OBJECT-TYPE
    SYNTAX         DisplayString (SIZE(0..256))
    MAX-ACCESS     read-create
    STATUS         current
    DESCRIPTION    "This object allows SNMP management entities to provide an
        alias to the Sync entity."
    ::= { f3SyncEntry 9 }

f3SyncDomain OBJECT-TYPE
    SYNTAX         SyncDomainType
    MAX-ACCESS     read-write
    STATUS         current
    DESCRIPTION    "This object represents the Sync entity's domain type. A Sync entity can be in
        chassis (system) domain (applicable for HUB shelf and Aggregation shelf)
        or  line card domain (applicable for HUB shelf, Aggregation shelf as well as
        NIDs)."
    ::= { f3SyncEntry 10 }

f3SyncSelectionMode OBJECT-TYPE
    SYNTAX         SyncSelectionMode
    MAX-ACCESS     read-write
    STATUS         current
    DESCRIPTION    "This object represents the Sync entity's selection mode.
        If this mode is configured as ql-mode, the selection of
        which reference should be used shall be based upon the
        reference's Quality Level.  The highest received
        Quality Level shall be the selected reference.  The priority
        shall only be used to distinguish between references with the
        same received QL.  When multiple references have the same QL
        and same priority, the behavior of selection process within
        the group is non-revertive.
        If this mode is configued as priority-mode, the selection
        of which reference should be used shall be based upon
        the reference's priority (i.e. QL is disabled).  When
        multiple references have the same priority, the behavior of
        selection process within the group is non-revertive."
    ::= { f3SyncEntry 11 }

f3SyncWaitToRestoreTime OBJECT-TYPE
    SYNTAX         Integer32 (0..12)
    MAX-ACCESS     read-write
    STATUS         current
    DESCRIPTION    "This object allows configuration of the Sync entity's wait-to-restore
        time (in minutes).  A value of 0 disables WTR timers for all references."
    ::= { f3SyncEntry 12 }

f3SyncOperationSyncRef OBJECT-TYPE
    SYNTAX         VariablePointer
    MAX-ACCESS     read-write
    STATUS         current
    DESCRIPTION    "This object allows configuration of the Object Identifier of the
        Sync Reference Entity on which the f3SyncOperationType is performed.
        A value of 0.0 denotes no sync reference is chosen for operation."
    ::= { f3SyncEntry 13 }

f3SyncOperationType OBJECT-TYPE
    SYNTAX         SyncOperationType
    MAX-ACCESS     read-write
    STATUS         current
    DESCRIPTION    "This object allows to perform the specified operation on the Sync Reference
        specified by f3SyncOperationSyncRef."
    ::= { f3SyncEntry 14 }
    
f3SyncPLLBw OBJECT-TYPE
    SYNTAX         PLLBw
    MAX-ACCESS     read-write
    STATUS         current
    DESCRIPTION    "This object allows configuration of the Sync entity's Clock PLL Bandwidth."
    ::= { f3SyncEntry 15 }

--
-- Sync Reference Table 
--
f3SyncRefTable OBJECT-TYPE
    SYNTAX         SEQUENCE OF F3SyncRefEntry
    MAX-ACCESS     not-accessible
    STATUS         current
    DESCRIPTION    "A list of entries corresponding to the Sync Reference entities."
    ::= { f3SyncObjects 2 }

f3SyncRefEntry OBJECT-TYPE
    SYNTAX         F3SyncRefEntry
    MAX-ACCESS     not-accessible
    STATUS         current
    DESCRIPTION    "An entry containing information applicable to a particular
        Sync Reference Entity."
    INDEX    { neIndex, shelfIndex, slotIndex, f3SyncIndex, f3SyncRefIndex }
    ::= { f3SyncRefTable 1 }

F3SyncRefEntry  ::=  SEQUENCE    {
        f3SyncRefIndex         Integer32,
        f3SyncRefReference     VariablePointer,
        f3SyncRefPriority      Integer32,
        f3SyncRefStatus        SyncRefStatus,
        f3SyncRefState         SyncRefState,
        f3SyncRefReceivedQL    SSMQualityLevel,
        f3SyncRefStorageType   StorageType,
        f3SyncRefRowStatus     RowStatus,
        -- new columns added for R4.3CC
        f3SyncRefAlias         DisplayString,
        f3SyncRefEffectiveQL   SSMQualityLevel,
        f3SyncRefOperationType SyncOperationType
        }

f3SyncRefIndex OBJECT-TYPE
    SYNTAX         Integer32
    MAX-ACCESS     read-only
    STATUS         current
    DESCRIPTION    "Unique index value associated with the Sync Reference Entity."
    ::= { f3SyncRefEntry 1 }

f3SyncRefReference OBJECT-TYPE
    SYNTAX         VariablePointer
    MAX-ACCESS     read-create
    STATUS         current
    DESCRIPTION    "This object represents the external sync reference to be
        used as system clock reference source."
    ::= { f3SyncRefEntry 2 }

f3SyncRefPriority OBJECT-TYPE
    SYNTAX         Integer32 (1..10)
    MAX-ACCESS     read-create
    STATUS         current
    DESCRIPTION    "This object represents the priority of the external sync reference
        to be used as system clock reference source.  This value is
        not mandatory when a single clock reference source is supported.
        Lower priority value indicates higher priority."
    ::= { f3SyncRefEntry 3 }

f3SyncRefStatus OBJECT-TYPE
    SYNTAX         SyncRefStatus
    MAX-ACCESS     read-only
    STATUS         current
    DESCRIPTION    "This object provides the sync reference status."
    ::= { f3SyncRefEntry 4 }

f3SyncRefState OBJECT-TYPE
    SYNTAX         SyncRefState
    MAX-ACCESS     read-only
    STATUS         current
    DESCRIPTION    "This object provides the sync reference state."
    ::= { f3SyncRefEntry 5 }

f3SyncRefReceivedQL OBJECT-TYPE
    SYNTAX         SSMQualityLevel
    MAX-ACCESS     read-only
    STATUS         current
    DESCRIPTION    "This object provides the sync reference received QL."
    ::= { f3SyncRefEntry 6 }

f3SyncRefStorageType OBJECT-TYPE
    SYNTAX         StorageType
    MAX-ACCESS     read-create
    STATUS         current
    DESCRIPTION    "The type of storage configured for this entry."
    ::= { f3SyncRefEntry 7 }

f3SyncRefRowStatus OBJECT-TYPE
    SYNTAX         RowStatus
    MAX-ACCESS     read-create
    STATUS         current
    DESCRIPTION    "The status of this row.  An entry MUST NOT exist in the
        active state unless all objects in the entry have an
        appropriate value, as described
        in the description clause for each writable object.
        
        The values of f3SyncRefRowStatus supported are
        createAndGo(4) and destroy(6).  All mandatory attributes
        must be specified in a single SNMP SET request with
        f3SyncRefRowStatus value as createAndGo(4).
        Upon successful row creation, this object has a
        value of active(1).
        
        The f3SyncRefRowStatus object may be modified if
        the associated instance of this object is equal to active(1)."
    ::= { f3SyncRefEntry 8 }

f3SyncRefAlias OBJECT-TYPE
    SYNTAX         DisplayString (SIZE(0..256))
    MAX-ACCESS     read-create
    STATUS         current
    DESCRIPTION    "This object allows SNMP management entities to provide an
        alias to the Sync Reference entity."
    ::= { f3SyncRefEntry 9 }

f3SyncRefEffectiveQL OBJECT-TYPE
    SYNTAX         SSMQualityLevel
    MAX-ACCESS     read-only
    STATUS         current
    DESCRIPTION    "This object provides the sync reference effective QL."
    ::= { f3SyncRefEntry 10 }

f3SyncRefOperationType OBJECT-TYPE
    SYNTAX         SyncOperationType
    MAX-ACCESS     read-only
    STATUS         current
    DESCRIPTION    "This object provides information on the current/active operation
        on this sync reference."
    ::= { f3SyncRefEntry 11 }

--
-- Time Clock Table 
--
f3TimeClockTable OBJECT-TYPE
    SYNTAX         SEQUENCE OF F3TimeClockEntry
    MAX-ACCESS     not-accessible
    STATUS         current
    DESCRIPTION    "A list of entries corresponding to the Time Clock entities."
    ::= { f3SyncObjects 3 }

f3TimeClockEntry OBJECT-TYPE
    SYNTAX         F3TimeClockEntry
    MAX-ACCESS     not-accessible
    STATUS         current
    DESCRIPTION    "An entry containing information applicable to a particular
        Time Clock Entity."
    INDEX    { neIndex, shelfIndex, slotIndex, f3TimeClockIndex }
    ::= { f3TimeClockTable 1 }

F3TimeClockEntry  ::=  SEQUENCE    {
        f3TimeClockIndex                   Integer32,
        f3TimeClockAlias                   F3DisplayString,
        f3TimeClockAdminState              AdminState,
        f3TimeClockOperationalState        OperationalState,
        f3TimeClockSecondaryState          SecondaryState,
        f3TimeClockSelectedReference       VariablePointer,
        f3TimeClockClockMode               TimeClockMode,
        f3TimeClockClockClass              Unsigned32,
        f3TimeClockSelectionMode           SyncSelectionMode,
        f3TimeClockWaitToRestoreTime       Integer32,
        f3TimeClockOperationTimeClockRef   VariablePointer,
        f3TimeClockOperationType           SyncOperationType,
        f3TimeClockLeap59                  TruthValue,
        f3TimeClockLeap61                  TruthValue,
        f3TimeClockTimeTraceAbilityStatus  TimeTraceAbilityStatus,
        f3TimeClockExpectedQL              SSMQualityLevel,
        f3TimeClockCurrentQL               SSMQualityLevel,
        f3TimeClockSyncRefCandidate        TruthValue,
        f3TimeClockTimeHoldoverPerformance TimeHoldoverPerformance,
        f3TimeClockUtcOffset               Unsigned32,
        f3TimeClockCurrentTimeOfDay        DateAndTime,
        f3TimeClockFrequencyReference      VariablePointer,
        f3TimeClockFrequencyClockMode      ClockMode,
        f3TimeClockTimeScale               TimeScale,
        f3TimeClockTODSource               TODSource,
        f3TimeClockEPRTCModeEnabled        TruthValue,
        f3TimeClockTimeHoldoverTimeout     Integer32,
        f3TimeClockTimeInHoldover          Integer32,
        f3TimeClockAtoiCurrentOffset       Integer32,
        f3TimeClockAtoiJumpSeconds         Integer32,
        f3TimeClockAtoiTimeOfNextJump      Counter64,
        f3TimeClockAtoiDisplayName         DisplayString,
        f3TimeClockPhaseAdjust             Integer32
        }

f3TimeClockIndex OBJECT-TYPE
    SYNTAX         Integer32
    MAX-ACCESS     not-accessible
    STATUS         current
    DESCRIPTION    "Unique index value associated with the Time Clock Entity."
    ::= { f3TimeClockEntry 1 }

f3TimeClockAlias OBJECT-TYPE
    SYNTAX         F3DisplayString (SIZE(0..256))
    MAX-ACCESS     read-write
    STATUS         current
    DESCRIPTION    "This object allows SNMP management entities to provide an
        alias to the Time Clock entity."
    ::= { f3TimeClockEntry 2 }

f3TimeClockAdminState OBJECT-TYPE
    SYNTAX         AdminState
    MAX-ACCESS     read-write
    STATUS         current
    DESCRIPTION    "This object represents the Administrative State of the Time Clock
        Entity."
    ::= { f3TimeClockEntry 3 }

f3TimeClockOperationalState OBJECT-TYPE
    SYNTAX         OperationalState
    MAX-ACCESS     read-only
    STATUS         current
    DESCRIPTION    "This object represents the Operational State of the Time Clock
        Entity."
    ::= { f3TimeClockEntry 4 }

f3TimeClockSecondaryState OBJECT-TYPE
    SYNTAX         SecondaryState
    MAX-ACCESS     read-only
    STATUS         current
    DESCRIPTION    "This object represents the Secondary State of the Time Clock
        Entity."
    ::= { f3TimeClockEntry 5 }

f3TimeClockSelectedReference OBJECT-TYPE
    SYNTAX         VariablePointer
    MAX-ACCESS     read-only
    STATUS         current
    DESCRIPTION    "This object provides the source of the currently selected
        Time Clock reference. This would be the OID of the actual entity (GPS port, PPS port etc.).
        An OID value of {0 0} represents internal clock."
    ::= { f3TimeClockEntry 6 }

f3TimeClockClockMode OBJECT-TYPE
    SYNTAX         TimeClockMode
    MAX-ACCESS     read-only
    STATUS         current
    DESCRIPTION    "This object provides the Time Clock mode."
    ::= { f3TimeClockEntry 7 }

f3TimeClockClockClass OBJECT-TYPE
    SYNTAX         Unsigned32
    MAX-ACCESS     read-only
    STATUS         deprecated
    DESCRIPTION    "This object provides the Time Clock Clock Class"
    ::= { f3TimeClockEntry 8 }

f3TimeClockSelectionMode OBJECT-TYPE
    SYNTAX         SyncSelectionMode
    MAX-ACCESS     read-write
    STATUS         current
    DESCRIPTION    "!! Currently Only Priority Mode is supported !!
        This object represents the Time Clock entity's selection mode.
        If this mode is configured as ql-mode, the selection of
        which reference should be used shall be based upon the
        reference's Quality Level.  The highest received
        Quality Level shall be the selected reference.  The priority
        shall only be used to distinguish between references with the
        same received QL.  When multiple references have the same QL
        and same priority, the behavior of selection process within
        the group is non-revertive.
        If this mode is configued as priority-mode, the selection
        of which reference should be used shall be based upon
        the reference's priority (i.e. QL is disabled).  When
        multiple references have the same priority, the behavior of
        selection process within the group is non-revertive."
    ::= { f3TimeClockEntry 9 }

f3TimeClockWaitToRestoreTime OBJECT-TYPE
    SYNTAX         Integer32 (0..12)
    MAX-ACCESS     read-write
    STATUS         current
    DESCRIPTION    "This object allows configuration of the Time Clock entity's wait-to-restore
        time (in minutes).  A value of 0 disables WTR timers for all references."
    ::= { f3TimeClockEntry 10 }

f3TimeClockOperationTimeClockRef OBJECT-TYPE
    SYNTAX         VariablePointer
    MAX-ACCESS     read-write
    STATUS         current
    DESCRIPTION    "This object allows configuration of the Object Identifier of the
        TimeClock Reference Entity on which the f3TimeClockOperationType is performed.
        A value of 0.0 denotes no Time Clock reference is chosen for operation."
    ::= { f3TimeClockEntry 11 }

f3TimeClockOperationType OBJECT-TYPE
    SYNTAX         SyncOperationType
    MAX-ACCESS     read-write
    STATUS         current
    DESCRIPTION    "This object allows to perform the specified operation on the Time Clock Reference
        specified by f3TimeClockOperationTimeClockRef."
    ::= { f3TimeClockEntry 12 }

f3TimeClockLeap59 OBJECT-TYPE
    SYNTAX         TruthValue
    MAX-ACCESS     read-only
    STATUS         current
    DESCRIPTION    "True if last minute of current UTC day contains 59 seconds, else false"
    ::= { f3TimeClockEntry 13 }

f3TimeClockLeap61 OBJECT-TYPE
    SYNTAX         TruthValue
    MAX-ACCESS     read-only
    STATUS         current
    DESCRIPTION    "True if last minute of current UTC day contains 61 seconds, else false"
    ::= { f3TimeClockEntry 14 }

f3TimeClockTimeTraceAbilityStatus OBJECT-TYPE
    SYNTAX         TimeTraceAbilityStatus
    MAX-ACCESS     read-only
    STATUS         current
    DESCRIPTION    "This object describe the trace ability status."
    ::= { f3TimeClockEntry 15 }

f3TimeClockExpectedQL OBJECT-TYPE
    SYNTAX         SSMQualityLevel
    MAX-ACCESS     read-write
    STATUS         current
    DESCRIPTION    "This object describe the expected quality level."
    ::= { f3TimeClockEntry 16 }

f3TimeClockCurrentQL OBJECT-TYPE
    SYNTAX         SSMQualityLevel
    MAX-ACCESS     read-only
    STATUS         current
    DESCRIPTION    "This object describe the current quality level."
    ::= { f3TimeClockEntry 17 }

f3TimeClockSyncRefCandidate OBJECT-TYPE
    SYNTAX         TruthValue
    MAX-ACCESS     read-write
    STATUS         current
    DESCRIPTION    "This object describe whether it is sync reference candiddate."
    ::= { f3TimeClockEntry 18 }

f3TimeClockTimeHoldoverPerformance OBJECT-TYPE
    SYNTAX         TimeHoldoverPerformance
    MAX-ACCESS     read-write
    STATUS         current
    DESCRIPTION    "This object describe the Holdover performance."
    ::= { f3TimeClockEntry 19 }

f3TimeClockUtcOffset OBJECT-TYPE
    SYNTAX         Unsigned32
    MAX-ACCESS     read-only
    STATUS         current
    DESCRIPTION    "This object describe the UTC offset."
    ::= { f3TimeClockEntry 20 }

f3TimeClockCurrentTimeOfDay OBJECT-TYPE
    SYNTAX         DateAndTime
    MAX-ACCESS     read-only
    STATUS         current
    DESCRIPTION    "This object allows specification of the Time Clock Current
        Time of Day."
    ::= { f3TimeClockEntry 21 }

f3TimeClockFrequencyReference OBJECT-TYPE
    SYNTAX         VariablePointer
    MAX-ACCESS     read-write
    STATUS         current
    DESCRIPTION    "This object provides the source of the currently selected frequency source for the Time Clock.
        This would be the OID of the actual entity (GNSS Receiver port, Input Frquency Port, Sync object).
        An OID value of {0.0} represents a state where the Time Clock does not use a dedicated frequency input."
    ::= { f3TimeClockEntry 22 }

f3TimeClockFrequencyClockMode OBJECT-TYPE
    SYNTAX         ClockMode
    MAX-ACCESS     read-only
    STATUS         current
    DESCRIPTION    "This object provides the Frequency Clock mode determined according to the used f3TimeClockFrequencyReference.
        In Case the f3TimeClockFrequencyReference is not selected (0.0), a 'notAvailable' value shall be used here"
    ::= { f3TimeClockEntry 23 }

f3TimeClockTimeScale OBJECT-TYPE
    SYNTAX         TimeScale
    MAX-ACCESS     read-write
    STATUS         current
    DESCRIPTION    "This object allows configuration of the Sync entity's Time Scale. Only PTP or ARB values are allowed.
    In PTP mode, phase is recovered from time reference source. In ARB mode phase is taken from Linux time and locked on chosen reference."
    ::= { f3TimeClockEntry 24 }

f3TimeClockTODSource OBJECT-TYPE
    SYNTAX         TODSource
    MAX-ACCESS     read-only
    STATUS         current
    DESCRIPTION    "This object provides the ARB TOD Source. The value decided according to the Time Scale parameter.
    Can be NA or System TOD."
    ::= { f3TimeClockEntry 25 }
f3TimeClockEPRTCModeEnabled OBJECT-TYPE
    SYNTAX         TruthValue
    MAX-ACCESS     read-write
    STATUS         current
    DESCRIPTION    "This object describe whether it is EPRTC Mode Enabled.
    When enabled, the time clock combines the stable frequency input, such as a Cesium Clock, to extend the holdover capability to meet the e-PRTC holdover standards. 
    Before configuring this setting, ensure that you activate the e-PRTC license.
    Note: This setting is applicable for Rb/HQ++ oscillators only."
    ::= { f3TimeClockEntry 26 }

f3TimeClockTimeHoldoverTimeout OBJECT-TYPE
    SYNTAX         Integer32 (0..3000000)
    MAX-ACCESS     read-write
    STATUS         current
    DESCRIPTION    "Configurable Holdover time
                    The time (0..3000000 seconds) that the OCXO is expected to maintain the
                    required accuracy and maintain Holdover-within-limits. Default is 0."
    ::= { f3TimeClockEntry 27 }

f3TimeClockTimeInHoldover OBJECT-TYPE
    SYNTAX         Integer32
    MAX-ACCESS     read-only
    STATUS         current
    DESCRIPTION    "Time (seconds) in Holdover."
    ::= { f3TimeClockEntry 28 }

f3TimeClockAtoiCurrentOffset OBJECT-TYPE
    SYNTAX         Integer32 (-32768..32767)
    UNITS          "seconds"
    MAX-ACCESS     read-only
    STATUS         current
    DESCRIPTION
            "The value of currentOffset (offset of the alternate time, in seconds, from
            the time of this node). The alternate time is the sum of this value and the time of
            the node, which is TAI if the PTP time scale is used."
    REFERENCE "IEC61588 16.3.3.4"
    ::= { f3TimeClockEntry 29 }

f3TimeClockAtoiJumpSeconds OBJECT-TYPE
    SYNTAX         Integer32 (-32768..32767)
    UNITS          "seconds"
    MAX-ACCESS     read-only
    STATUS         current
    DESCRIPTION
            "The value of jumpSeconds (size of the next discontinuity, in seconds, of the
            alternate time). A value of zero indicates that no discontinuity is expected. A
            positive value indicates that the discontinuity
            will cause the currentOffset of the alternate time to increase."
    REFERENCE "IEC61588 16.3.3.5"
    ::= { f3TimeClockEntry 30 }

f3TimeClockAtoiTimeOfNextJump OBJECT-TYPE
    SYNTAX         Counter64
    UNITS          "seconds"
    MAX-ACCESS     read-only
    STATUS         current
    DESCRIPTION
            "The value of timeOfNextJump (value of the seconds portion of the time of the
            transmitting node at the time that the next discontinuity will occur). The
            discontinuity occurs at the start of the second indicated
            by the value of timeOfNextJump."
    REFERENCE "IEC61588 16.3.3.6"
    ::= { f3TimeClockEntry 31 }

f3TimeClockAtoiDisplayName OBJECT-TYPE
    SYNTAX         DisplayString (SIZE(0..10))
    MAX-ACCESS     read-only
    STATUS         current
    DESCRIPTION
            "The value of displayName (text name of the alternate timescale in ASCII-8).
            It represent the time zone, e.g. CET;
            a leading character of * indicates that daylight saving time is in effect."
    REFERENCE "IEC61588 16.3.3.6"
    ::= { f3TimeClockEntry 32 }

f3TimeClockPhaseAdjust OBJECT-TYPE
    SYNTAX         Integer32 (0..250000)
    MAX-ACCESS     read-write
    STATUS         current
    DESCRIPTION    "Configurable Phase Adjust (0..250000 nSec) ."
    ::= { f3TimeClockEntry 33 }

--
-- Time Clock Reference Table 
--
f3TimeClockRefTable OBJECT-TYPE
    SYNTAX         SEQUENCE OF F3TimeClockRefEntry
    MAX-ACCESS     not-accessible
    STATUS         current
    DESCRIPTION    "A list of entries corresponding to the Time Clock Reference entities."
    ::= { f3SyncObjects 4 }

f3TimeClockRefEntry OBJECT-TYPE
    SYNTAX         F3TimeClockRefEntry
    MAX-ACCESS     not-accessible
    STATUS         current
    DESCRIPTION    "An entry containing information applicable to a particular
        Time Clock Reference Entity."
    INDEX    { neIndex, shelfIndex, slotIndex, f3TimeClockIndex, f3TimeClockRefIndex }
    ::= { f3TimeClockRefTable 1 }

F3TimeClockRefEntry  ::=  SEQUENCE    {
        f3TimeClockRefIndex         Integer32,
        f3TimeClockRefAlias         F3DisplayString,
        f3TimeClockRefReference     VariablePointer,
        f3TimeClockRefPriority      Integer32,
        f3TimeClockRefStatus        SyncRefStatus,
        f3TimeClockRefState         SyncRefState,
        f3TimeClockRefOperationType SyncOperationType,
        f3TimeClockRefStorageType   StorageType,
        f3TimeClockRefRowStatus     RowStatus
        }

f3TimeClockRefIndex OBJECT-TYPE
    SYNTAX         Integer32
    MAX-ACCESS     not-accessible
    STATUS         current
    DESCRIPTION    "Unique index value associated with the Time Clock Reference Entity."
    ::= { f3TimeClockRefEntry 1 }

f3TimeClockRefAlias OBJECT-TYPE
    SYNTAX         F3DisplayString (SIZE(0..256))
    MAX-ACCESS     read-create
    STATUS         current
    DESCRIPTION    "This object allows SNMP management entities to provide an
        alias to the Time Clock Reference entity."
    ::= { f3TimeClockRefEntry 2 }

f3TimeClockRefReference OBJECT-TYPE
    SYNTAX         VariablePointer
    MAX-ACCESS     read-create
    STATUS         current
    DESCRIPTION    "This object represents the external reference to be
        used as system clock reference source."
    ::= { f3TimeClockRefEntry 3 }

f3TimeClockRefPriority OBJECT-TYPE
    SYNTAX         Integer32 (1..10)
    MAX-ACCESS     read-create
    STATUS         current
    DESCRIPTION    "This object represents the priority of the external reference
        to be used as Time clock reference source.  This value is
        not mandatory when a single clock reference source is supported.
        Lower priority value indicates higher priority."
    ::= { f3TimeClockRefEntry 4 }

f3TimeClockRefStatus OBJECT-TYPE
    SYNTAX         SyncRefStatus
    MAX-ACCESS     read-only
    STATUS         current
    DESCRIPTION    "This object provides the Time Clock reference status."
    ::= { f3TimeClockRefEntry 5 }

f3TimeClockRefState OBJECT-TYPE
    SYNTAX         SyncRefState
    MAX-ACCESS     read-only
    STATUS         current
    DESCRIPTION    "This object provides the Time Clock reference state."
    ::= { f3TimeClockRefEntry 6 }

f3TimeClockRefOperationType OBJECT-TYPE
    SYNTAX         SyncOperationType
    MAX-ACCESS     read-only
    STATUS         current
    DESCRIPTION    "This object provides information on the current/active operation
        on this Time Clock reference."
    ::= { f3TimeClockRefEntry 7 }

f3TimeClockRefStorageType OBJECT-TYPE
    SYNTAX         StorageType
    MAX-ACCESS     read-create
    STATUS         current
    DESCRIPTION    "The type of storage configured for this entry."
    ::= { f3TimeClockRefEntry 8 }

f3TimeClockRefRowStatus OBJECT-TYPE
    SYNTAX         RowStatus
    MAX-ACCESS     read-create
    STATUS         current
    DESCRIPTION    "The status of this row.  An entry MUST NOT exist in the
        active state unless all objects in the entry have an
        appropriate value, as described
        in the description clause for each writable object.
        
        The values of f3TimeClockRefRowStatus supported are
        createAndGo(4) and destroy(6).  All mandatory attributes
        must be specified in a single SNMP SET request with
        f3TimeClockRefRowStatus value as createAndGo(4).
        Upon successful row creation, this object has a
        value of active(1).
        
        The f3TimeClockRefRowStatus object may be modified if
        the associated instance of this object is equal to active(1)."
    ::= { f3TimeClockRefEntry 9 }

--
-- PRC Table 
--
f3PrcTable OBJECT-TYPE
    SYNTAX         SEQUENCE OF F3PrcEntry
    MAX-ACCESS     not-accessible
    STATUS         current
    DESCRIPTION    "A list of entries corresponding to the Primary Reference Clock (PRC) entities."
    ::= { f3SyncObjects 5 }

f3PrcEntry OBJECT-TYPE
    SYNTAX         F3PrcEntry
    MAX-ACCESS     not-accessible
    STATUS         current
    DESCRIPTION    "An entry containing information applicable to a particular
        Primary Reference Clock Entity."
    INDEX    { neIndex, shelfIndex, slotIndex, f3PrcIndex }
    ::= { f3PrcTable 1 }

F3PrcEntry  ::=  SEQUENCE    {
        f3PrcIndex                   Integer32,
        f3PrcAlias                   F3DisplayString,
        f3PrcAdminState              AdminState,
        f3PrcOperationalState        OperationalState,
        f3PrcSecondaryState          SecondaryState,
        f3PrcSsmMode                 SsmMode,
        f3PrcClockMode               TimeClockMode,
        f3PrcAccuracyAdjustement     Integer32,
        f3PrcCurrentQL               SSMQualityLevel,
        f3PrcAcknowledgeAction       AcknowledgeType,
        f3PrcRestartAction           RestartType
        }

f3PrcIndex OBJECT-TYPE
    SYNTAX         Integer32(-2147483648..2147483647)
    MAX-ACCESS     not-accessible
    STATUS         current
    DESCRIPTION    "Unique index value associated with the Primary Reference Clock Entity."
    ::= { f3PrcEntry 1 }

f3PrcAlias OBJECT-TYPE
    SYNTAX         F3DisplayString (SIZE(0..256))
    MAX-ACCESS     read-write
    STATUS         current
    DESCRIPTION    "This object allows SNMP management entities to provide an
        alias to the Primary Reference Clock entity."
    ::= { f3PrcEntry 2 }

f3PrcAdminState OBJECT-TYPE
    SYNTAX         AdminState
    MAX-ACCESS     read-write
    STATUS         current
    DESCRIPTION    "This object represents the Administrative State of the Primary Reference Clock
        Entity."
    ::= { f3PrcEntry 3 }

f3PrcOperationalState OBJECT-TYPE
    SYNTAX         OperationalState
    MAX-ACCESS     read-only
    STATUS         current
    DESCRIPTION    "This object represents the Operational State of the Primary Reference Clock
        Entity."
    ::= { f3PrcEntry 4 }

f3PrcSecondaryState OBJECT-TYPE
    SYNTAX         SecondaryState
    MAX-ACCESS     read-only
    STATUS         current
    DESCRIPTION    "This object represents the Secondary State of the Primary Reference Clock
        Entity."
    ::= { f3PrcEntry 5 }

f3PrcSsmMode OBJECT-TYPE
    SYNTAX         SsmMode
    MAX-ACCESS     read-write
    STATUS         current
    DESCRIPTION    "This object provides the PRC SSM mode. It determines whether or not the SSM
        is given to the BITS-OUT Ports."
    ::= { f3PrcEntry 6 }

f3PrcClockMode OBJECT-TYPE
    SYNTAX         TimeClockMode
    MAX-ACCESS     read-only
    STATUS         current
    DESCRIPTION    "This object provides the PRC Clock Mode."
    ::= { f3PrcEntry 7 }

f3PrcAccuracyAdjustement OBJECT-TYPE
    SYNTAX         Integer32 (-1000000..1000000)
    MAX-ACCESS     read-write
    STATUS         current
    DESCRIPTION    "This object allows to adjust an internal frequency to optimize
        the PRC accuracy. This is typically done only once after the Prc has been
        tested. The value is a relative frequency with unit value of 10e-15."
    ::= { f3PrcEntry 8 }

f3PrcCurrentQL OBJECT-TYPE
    SYNTAX         SSMQualityLevel
    MAX-ACCESS     read-only
    STATUS         current
    DESCRIPTION    "This object describe the current quality level."
    ::= { f3PrcEntry 9 }

f3PrcAcknowledgeAction OBJECT-TYPE
    SYNTAX         AcknowledgeType 
    MAX-ACCESS     read-write
    STATUS         current
    DESCRIPTION    "Allows to acknowledge the alarm that raises when 
        f3AccuracyAdjustement value is changed."
    ::= { f3PrcEntry 10 }

f3PrcRestartAction OBJECT-TYPE
    SYNTAX         RestartType 
    MAX-ACCESS     read-write
    STATUS         current
    DESCRIPTION    "Allows to perform specified warm restart action on the PRC Clock.
        Cold restart is refused by the equipment"
    ::= { f3PrcEntry 11 }


--
-- Sync Protection Group Table 
--
f3SyncProtGroupTable OBJECT-TYPE
    SYNTAX     SEQUENCE OF F3SyncProtGroupEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION
            "A list of entries corresponding to the Sync Protection Groups.
             "
    ::= { f3SyncObjects 6 }

f3SyncProtGroupEntry OBJECT-TYPE
    SYNTAX     F3SyncProtGroupEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION
            "An entry containing information applicable to a Sync
             Protection Group."
    INDEX { neIndex, f3SyncProtGroupIndex }
    ::= { f3SyncProtGroupTable 1 }

F3SyncProtGroupEntry ::= SEQUENCE {
    f3SyncProtGroupIndex                 Integer32,
    f3SyncProtGroupAdminState            AdminState,
    f3SyncProtGroupActiveMember          VariablePointer,
    f3SyncProtGroupLastSwitchOverTime    TimeTicks,
    f3SyncProtGroupLastSwitchOverReason  CmGenPgSwitchoverReason,
    f3SyncProtGroupStorageType           StorageType, 
    f3SyncProtGroupRowStatus             RowStatus
}

f3SyncProtGroupIndex OBJECT-TYPE
    SYNTAX     Integer32
    MAX-ACCESS read-only 
    STATUS     current
    DESCRIPTION
         "Unique index value associated with the Sync Protection Group
          entity."
     ::= { f3SyncProtGroupEntry 1 }

f3SyncProtGroupAdminState OBJECT-TYPE
    SYNTAX         AdminState
    MAX-ACCESS     read-write
    STATUS         current
    DESCRIPTION
         "This object represents the Administrative State of the Sync
          Protection Group."
    ::= { f3SyncProtGroupEntry 2 }

f3SyncProtGroupActiveMember OBJECT-TYPE
    SYNTAX     VariablePointer
    MAX-ACCESS read-only 
    STATUS     current
    DESCRIPTION
         "The corresponding OID of the Active Member in the Sync Protection Group."
     ::= { f3SyncProtGroupEntry 3 }
     
f3SyncProtGroupLastSwitchOverTime OBJECT-TYPE
    SYNTAX     TimeTicks
    MAX-ACCESS read-only 
    STATUS     current
    DESCRIPTION
         "The value of sysUpTime when last switch over occurred."
     ::= { f3SyncProtGroupEntry 4 }

f3SyncProtGroupLastSwitchOverReason OBJECT-TYPE
    SYNTAX     CmGenPgSwitchoverReason
    MAX-ACCESS read-only 
    STATUS     current
    DESCRIPTION
         "The reason for last switch over in the Sync Protection Group."
     ::= { f3SyncProtGroupEntry 5 }

f3SyncProtGroupStorageType OBJECT-TYPE
    SYNTAX     StorageType
    MAX-ACCESS read-create
    STATUS     current
    DESCRIPTION
            "The type of storage configured for this entry."
    ::= { f3SyncProtGroupEntry 6 }

f3SyncProtGroupRowStatus OBJECT-TYPE
    SYNTAX      RowStatus
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
           "The status of this row.  An entry MUST NOT exist in the 
            active state unless all objects in the entry have an 
            appropriate value, as described
            in the description clause for each writable object.

            The values of f3SyncProtGroupRowStatus supported are
            createAndGo(4) and destroy(6).  All mandatory attributes
            must be specified in a single SNMP SET request with
            f3SyncProtGroupRowStatus value as createAndGo(4).
            Upon successful row creation, this object has a
            value of active(1).

            The f3SyncProtGroupRowStatus object may be modified if
            the associated instance of this object is equal to active(1)."
    ::= { f3SyncProtGroupEntry 7 }


---
--- Sync Protection Member Table
---
f3SyncProtMemberTable  OBJECT-TYPE
    SYNTAX      SEQUENCE OF F3SyncProtMemberEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
            "A list of entries for the Sync Protection Group Members."
    ::= { f3SyncObjects 7 }

f3SyncProtMemberEntry  OBJECT-TYPE
    SYNTAX      F3SyncProtMemberEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
            "A conceptual row in the f3SyncProtMemberTable."
    INDEX { neIndex, f3SyncProtGroupIndex, f3SyncProtMemberObject }
    ::= { f3SyncProtMemberTable 1 }

F3SyncProtMemberEntry ::= SEQUENCE {
    f3SyncProtMemberObject             VariablePointer,
    f3SyncProtMemberStorageType        StorageType,
    f3SyncProtMemberRowStatus          RowStatus
}

f3SyncProtMemberObject OBJECT-TYPE
    SYNTAX      VariablePointer
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
           "This object points to the Protection Group Member."
    ::= { f3SyncProtMemberEntry 1 }

f3SyncProtMemberStorageType OBJECT-TYPE
    SYNTAX      StorageType
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
           "The type of storage configured for this entry."
    ::= { f3SyncProtMemberEntry 2 }

f3SyncProtMemberRowStatus OBJECT-TYPE
    SYNTAX      RowStatus
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
           "The status of this row.
            An entry MUST NOT exist in the active state unless all
            objects in the entry have an appropriate value, as described
            in the description clause for each writable object.
    
            The values of f3SyncProtMemberRowStatus supported are
            createAndGo(4) and destroy(6).  All mandatory attributes
            must be specified in a single SNMP SET request with
            f3SyncProtMemberRowStatus value as createAndGo(4).
            Upon successful row creation, this object has a
            value of active(1).
    
            The f3SyncProtMemberRowStatus object may be modified if
            the associated instance of this object is equal to active(1)."
    ::= { f3SyncProtMemberEntry 3 }


--
-- Time Clock Protection Group Table 
--
f3TimeClockProtGroupTable OBJECT-TYPE
    SYNTAX     SEQUENCE OF F3TimeClockProtGroupEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION
            "A list of entries corresponding to the Time Clock Protection Groups.
             "
    ::= { f3SyncObjects 8 }

f3TimeClockProtGroupEntry OBJECT-TYPE
    SYNTAX     F3TimeClockProtGroupEntry
    MAX-ACCESS not-accessible
    STATUS     current
    DESCRIPTION
            "An entry containing information applicable to a Time Clock
             Protection Group."
    INDEX { neIndex, f3TimeClockProtGroupIndex }
    ::= { f3TimeClockProtGroupTable 1 }

F3TimeClockProtGroupEntry ::= SEQUENCE {
    f3TimeClockProtGroupIndex                 Integer32,
    f3TimeClockProtGroupAdminState            AdminState,
    f3TimeClockProtGroupActiveMember          VariablePointer,
    f3TimeClockProtGroupLastSwitchOverTime    TimeTicks,
    f3TimeClockProtGroupLastSwitchOverReason  CmGenPgSwitchoverReason,
    f3TimeClockProtGroupStorageType           StorageType, 
    f3TimeClockProtGroupRowStatus             RowStatus
}

f3TimeClockProtGroupIndex OBJECT-TYPE
    SYNTAX     Integer32
    MAX-ACCESS read-only 
    STATUS     current
    DESCRIPTION
         "Unique index value associated with the Time Clock Protection Group
          entity."
     ::= { f3TimeClockProtGroupEntry 1 }

f3TimeClockProtGroupAdminState OBJECT-TYPE
    SYNTAX         AdminState
    MAX-ACCESS     read-write
    STATUS         current
    DESCRIPTION
         "This object represents the Administrative State of the
          Time Clock Protection Group."
    ::= { f3TimeClockProtGroupEntry 2 }

f3TimeClockProtGroupActiveMember OBJECT-TYPE
    SYNTAX     VariablePointer
    MAX-ACCESS read-only 
    STATUS     current
    DESCRIPTION
         "The corresponding OID of the Active Member in the Time Clock Protection Group."
     ::= { f3TimeClockProtGroupEntry 3 }
     
f3TimeClockProtGroupLastSwitchOverTime OBJECT-TYPE
    SYNTAX     TimeTicks
    MAX-ACCESS read-only 
    STATUS     current
    DESCRIPTION
         "The value of sysUpTime when last switch over occurred."
     ::= { f3TimeClockProtGroupEntry 4 }

f3TimeClockProtGroupLastSwitchOverReason OBJECT-TYPE
    SYNTAX     CmGenPgSwitchoverReason
    MAX-ACCESS read-only 
    STATUS     current
    DESCRIPTION
         "The reason for last switch over in the Time Clock Redundancy Group."
     ::= { f3TimeClockProtGroupEntry 5 }

f3TimeClockProtGroupStorageType OBJECT-TYPE
    SYNTAX     StorageType
    MAX-ACCESS read-create
    STATUS     current
    DESCRIPTION
            "The type of storage configured for this entry."
    ::= { f3TimeClockProtGroupEntry 6 }

f3TimeClockProtGroupRowStatus OBJECT-TYPE
    SYNTAX      RowStatus
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
           "The status of this row.  An entry MUST NOT exist in the 
            active state unless all objects in the entry have an 
            appropriate value, as described
            in the description clause for each writable object.

            The values of f3TimeClockProtGroupRowStatus supported are
            createAndGo(4) and destroy(6).  All mandatory attributes
            must be specified in a single SNMP SET request with
            f3TimeClockProtGroupRowStatus value as createAndGo(4).
            Upon successful row creation, this object has a
            value of active(1).

            The f3TimeClockProtGroupRowStatus object may be modified if
            the associated instance of this object is equal to active(1)."
    ::= { f3TimeClockProtGroupEntry 7 }


---
--- Time Clock Protection Member Table
---
f3TimeClockProtMemberTable  OBJECT-TYPE
    SYNTAX      SEQUENCE OF F3TimeClockProtMemberEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
            "A list of entries for the Time Clock Protection Group Members."
    ::= { f3SyncObjects 9 }

f3TimeClockProtMemberEntry  OBJECT-TYPE
    SYNTAX      F3TimeClockProtMemberEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
            "A conceptual row in the f3TimeClockProtMemberTable."
    INDEX { neIndex, f3TimeClockProtGroupIndex, f3TimeClockProtMemberObject }
    ::= { f3TimeClockProtMemberTable 1 }

F3TimeClockProtMemberEntry ::= SEQUENCE {
    f3TimeClockProtMemberObject             VariablePointer,
    f3TimeClockProtMemberStorageType        StorageType,
    f3TimeClockProtMemberRowStatus          RowStatus
}

f3TimeClockProtMemberObject OBJECT-TYPE
    SYNTAX      VariablePointer
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
           "This object points to the Protection Group Member."
    ::= { f3TimeClockProtMemberEntry 1 }

f3TimeClockProtMemberStorageType OBJECT-TYPE
    SYNTAX      StorageType
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
           "The type of storage configured for this entry."
    ::= { f3TimeClockProtMemberEntry 2 }

f3TimeClockProtMemberRowStatus OBJECT-TYPE
    SYNTAX      RowStatus
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
           "The status of this row.
            An entry MUST NOT exist in the active state unless all
            objects in the entry have an appropriate value, as described
            in the description clause for each writable object.
    
            The values of f3TimeClockProtMemberRowStatus supported are
            createAndGo(4) and destroy(6).  All mandatory attributes
            must be specified in a single SNMP SET request with
            f3TimeClockProtMemberRowStatus value as createAndGo(4).
            Upon successful row creation, this object has a
            value of active(1).
    
            The f3TimeClockProtMemberRowStatus object may be modified if
            the associated instance of this object is equal to active(1)."
    ::= { f3TimeClockProtMemberEntry 3 }


--
-- Conformance
--
f3SyncCompliances OBJECT IDENTIFIER ::= {f3SyncConformance 1}
f3SyncGroups      OBJECT IDENTIFIER ::= {f3SyncConformance 2}

f3SyncCompliance MODULE-COMPLIANCE
    STATUS         current
    DESCRIPTION    "Describes the requirements for conformance to the F3 Sync
        group."
    MODULE    -- this module
        MANDATORY-GROUPS {
              f3SyncObjectGroup
        }

    ::= { f3SyncCompliances 1 }

f3SyncObjectGroup OBJECT-GROUP
    OBJECTS    {
        f3SyncIndex, f3SyncAdminState, f3SyncOperationalState,
        f3SyncSecondaryState,
        f3SyncNetworkClockType, f3SyncSelectedReference,
        f3SyncClockMode, f3SyncQL,
        f3SyncAlias, f3SyncDomain, f3SyncSelectionMode,
        f3SyncWaitToRestoreTime, f3SyncOperationSyncRef,
        f3SyncOperationType, f3SyncPLLBw,
        
        f3SyncRefIndex, f3SyncRefReference, f3SyncRefPriority,
        f3SyncRefStatus, f3SyncRefState, f3SyncRefReceivedQL,
        f3SyncRefStorageType, f3SyncRefRowStatus, f3SyncRefAlias,
        f3SyncRefEffectiveQL, f3SyncRefOperationType
        }
    STATUS         current
    DESCRIPTION    "A collection of objects used to manage the F3 Sync Object group."
    ::= { f3SyncGroups 1 }

f3TimeClockObjectGroup OBJECT-GROUP
    OBJECTS    {
        f3TimeClockIndex, f3TimeClockAlias,
        f3TimeClockAdminState, f3TimeClockOperationalState, f3TimeClockSecondaryState,
        f3TimeClockSelectedReference, f3TimeClockClockMode, f3TimeClockClockClass,
        f3TimeClockSelectionMode, f3TimeClockWaitToRestoreTime, f3TimeClockOperationTimeClockRef,
        f3TimeClockOperationType, f3TimeClockLeap59, f3TimeClockLeap61,
        f3TimeClockTimeTraceAbilityStatus,
        f3TimeClockExpectedQL, f3TimeClockCurrentQL,
        f3TimeClockSyncRefCandidate, f3TimeClockTimeHoldoverPerformance, f3TimeClockUtcOffset,f3TimeClockCurrentTimeOfDay,
        f3TimeClockFrequencyReference, f3TimeClockFrequencyClockMode, f3TimeClockTimeScale, f3TimeClockTODSource,f3TimeClockEPRTCModeEnabled,
        f3TimeClockTimeHoldoverTimeout, f3TimeClockTimeInHoldover, 
        f3TimeClockAtoiCurrentOffset, f3TimeClockAtoiJumpSeconds, f3TimeClockAtoiTimeOfNextJump, f3TimeClockAtoiDisplayName,
        f3TimeClockPhaseAdjust, 
        f3TimeClockRefIndex, f3TimeClockRefAlias, f3TimeClockRefReference, f3TimeClockRefPriority,
        f3TimeClockRefStatus, f3TimeClockRefState, f3TimeClockRefOperationType,
        f3TimeClockRefStorageType, f3TimeClockRefRowStatus
        }
    STATUS         current
    DESCRIPTION    "A collection of objects used to manage the F3 TimeClock Object group."
    ::= { f3SyncGroups 2 }

f3PrcObjectGroup OBJECT-GROUP
    OBJECTS    {
        f3PrcIndex, f3PrcAlias,
        f3PrcAdminState, f3PrcOperationalState, f3PrcSecondaryState,
        f3PrcClockMode, f3PrcSsmMode, f3PrcAccuracyAdjustement,
        f3PrcCurrentQL, f3PrcAcknowledgeAction, f3PrcRestartAction
        }
    STATUS         current
    DESCRIPTION    "A collection of objects used to manage the F3 Primary Reference Clock Object group."
    ::= { f3SyncGroups 3 }

f3ProtObjectGroup OBJECT-GROUP
    OBJECTS {
        f3SyncProtGroupIndex, f3SyncProtGroupAdminState,
        f3SyncProtGroupActiveMember,
        f3SyncProtGroupLastSwitchOverTime, f3SyncProtGroupLastSwitchOverReason,
        f3SyncProtGroupStorageType, f3SyncProtGroupRowStatus,
        
        f3SyncProtMemberObject, f3SyncProtMemberStorageType, f3SyncProtMemberRowStatus,
        
        f3TimeClockProtGroupIndex, f3TimeClockProtGroupAdminState,
        f3TimeClockProtGroupActiveMember,
        f3TimeClockProtGroupLastSwitchOverTime, f3TimeClockProtGroupLastSwitchOverReason,
        f3TimeClockProtGroupStorageType, f3TimeClockProtGroupRowStatus,
        
        f3TimeClockProtMemberObject, f3TimeClockProtMemberStorageType, f3TimeClockProtMemberRowStatus
    }
    STATUS  current
    DESCRIPTION
        "A collection of objects used to manage the Protection Object group."
    ::= { f3SyncGroups 4 }

END