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
|
-- Revision 4.00 12/20/08
TEMPUSLXUNISON-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE,
Counter32, enterprises FROM SNMPv2-SMI
DisplayString FROM SNMPv2-TC;
endRunTechnologiesMIB OBJECT IDENTIFIER ::= { enterprises 13827 }
endRunTechnologies MODULE-IDENTITY
LAST-UPDATED
"0812200000Z"
ORGANIZATION
"EndRun Technologies LLC"
CONTACT-INFO
"Technical Support 1-877-749-3878 snmpsupport@endruntechnologies.com"
DESCRIPTION
"EndRun Technologies Enterprise MIB"
::= { endRunTechnologiesMIB 0 }
-- Tempus LX/Unison Cntp Product Group
tempuslxCntp OBJECT IDENTIFIER ::= { endRunTechnologiesMIB 5 }
cntp OBJECT IDENTIFIER ::= { tempuslxCntp 0 }
cntptrap OBJECT IDENTIFIER ::= { cntp 0 }
cdma OBJECT IDENTIFIER ::= { tempuslxCntp 1 }
cdmatrap OBJECT IDENTIFIER ::= { cdma 0 }
cCPUOptions OBJECT IDENTIFIER ::= { tempuslxCntp 2 }
-- cntp branch of the TempusLX/Unison Cntp subtree
cntpTrapLeapIndBitsChange NOTIFICATION-TYPE
OBJECTS { cntpLeapIndBits }
STATUS current
DESCRIPTION
"A cntpTrapNTPLeapIndBitsChange trap signifies that the value of the leap
indicator bits contained in the NTP reply packets sent by the time server
has changed. The current value of these bits is contained in the included
cntpLeapIndBits. The decimal value of these bits ranges from 0 to 3:
0 is the no fault, no leap warning condition
1 is the no fault, leap second insertion warning condition
2 is the no fault, leap second deletion warning condition
3 is the unsynchronized, alarm condition"
::= { cntptrap 1 }
cntpTrapStratumChange NOTIFICATION-TYPE
OBJECTS { cntpStratum }
STATUS current
DESCRIPTION
"A cntpTrapStratumChange trap signifies that the value of the stratum
field contained in the NTP reply packets sent by the time server
has changed. The current value is contained in the included
variable, cntpStratum. The decimal value of this field ranges from 1 to 16:
1 is the synchronized, actively locked to the reference UTC source stratum
2 is the synchronized, actively locked to a network stratum 1 server stratum
16 is the unsynchronized stratum level"
::= { cntptrap 2 }
cntpRxPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of NTP request packets received by the NTP daemon."
::= { cntp 1 }
cntpTxPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of NTP reply packets transmitted by the NTP daemon."
::= { cntp 2 }
cntpIgnoredPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of NTP request packets ignored by the NTP daemon."
::= { cntp 3 }
cntpDroppedPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of NTP request packets dropped by the NTP daemon."
::= { cntp 4 }
cntpAuthFail OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of authentication failures detected by the NTP daemon."
::= { cntp 5 }
cntpTimeFigureOfMerit OBJECT-TYPE
SYNTAX INTEGER
{
lessthan100us (6),
lessthan1ms (7),
lessthan10ms (8),
greaterthan10ms (9)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Time Figure of Merit (TFOM) value ranges from 6 to 9 and indicates the
current estimate of the worst case time error. It is a logarithmic scale,
with each increment indicating a tenfold increase in the worst case time
error boundaries.
The scale is referenced to a worst case time error of 100 picoseconds,
equivalent to a TFOM of zero. During normal locked operation with CDMA
the TFOM is 6 and implies a worst case time error of 100 microseconds.
During periods of signal loss, the CDMA sub-system will compute an
extrapolated worst case time error. One hour after the worst case time error
has reached the value equivalent to a TFOM of 9, the NTP server will cease
to send stratum 1 reply packets and an Alarm LED will be energized."
::= { cntp 6 }
cntpLeapIndBits OBJECT-TYPE
SYNTAX INTEGER
{
noFaultorLeap (0),
leapInsWarning (1),
leapDelWarning (2),
unSynchronized (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is a status code indicating: normal operation, a leap second to
be inserted in the last minute of the current day, a leap second to be
deleted in the last second of the day or an alarm condition indicating
loss of timing synchronization. The leap indicator field of NTP reply
packets sent from this server is set to cntpLeapIndBits."
::= { cntp 7 }
cntpSyncSource OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is an ASCII string identifying the synchronization source for this
NTP server. It is one of CDMA, an IP address of a stratum 1 server, or NONE.
If it is NONE, then the server is not synchronized, has its Leap Indicator
Bits in the Alarm state and is running at Stratum 16. If it is an IP
address, then the server is operating as a stratum 2 server synchronized to
the network connected stratum 1 server whose IP address is shown.
Check the Stratum, Leap Indicator Bits and Time Figure of Merit for further
information. NTP reply packets from this server will have the reference
identifier field set to cntpSyncSource if it is CDMA. Otherwise
it will be set to either an IP address or 0.0.0.0 (NONE)."
::= { cntp 8 }
cntpOffsetToCDMAReference OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is an ASCII string containing the floating value of the current
offset in units of seconds of the NTP server CPU clock to the CDMA
reference time. Positive values imply that the NTP server clock is
ahead of the CDMA reference time."
::= { cntp 9 }
cntpStratum OBJECT-TYPE
SYNTAX INTEGER
{
cntpStratumOne (1),
cntpStratumTwo (2),
cntpStratumUnsync (16)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is an integer showing the current stratum level being reported by
the NTP daemon in its reply packets to clients. If it is 1, then the server
is fully synchronized and delivering Stratum 1 accuracy. If it is greater
than 1 and less than 16, it is synchronized to a network connected NTP
server operating at one stratum lower. If it is 16, then the server is
unambiguously unsynchronized.
NTP clients on the network should be configured to not use the time from
this server if the stratum is 16."
::= { cntp 10 }
cntpVersion OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..80))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is an ASCII string showing the NTP server firmware version."
::= { cntp 11 }
cntpOscType OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is an ASCII string showing the installed oscillator type. It is
one of TCXO, MS-OCXO, HS-OCXO or Rubidium."
::= { cntp 12 }
cntpTimeMode OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..8))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is an ASCII string showing the time mode of operation for any
optional IRIG timecode outputs or the optional front panel vacuum
fluorescent display. It DOES NOT indicate the time mode of the Linux
OS clock or the NTP sub-system. Both of these are ALWAYS UTC.
It can be LOCAL_AUTO, LOCAL_MANUAL, GPS or UTC. In LOCAL_AUTO mode,
the local offset to UTC is automatically determined from the CDMA
transmissions received from the base station. In LOCAL_MANUAL mode,
the local offset to UTC is user programmed and overrides the CDMA
system data."
::= { cntp 13 }
cntpLocalOffset OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This value is the local time offset configured for any optional IRIG
timecode outputs or the optional front panel vacuum fluorescent display.
It is only pertinent when cntpTimeMode is set to LOCAL_MANUAL or LOCAL_AUTO.
It DOES NOT indicate the local time offset of the Linux OS clock or the
NTP sub-system. Both of these are ALWAYS UTC.
When cntpTimeMode is set to LOCAL_AUTO, cntpLocalOffset is determined
from the CDMA base station. When cntpTimeMode is set to LOCAL_MANUAL,
cntpLocalOffset is the user configured value.
Its units are half-hours, ranging from -25 to 25, where negative values
imply that the local time is behind UTC."
::= { cntp 14 }
cntpDSTStartMonth OBJECT-TYPE
SYNTAX INTEGER
{
disabled (0),
Jan (1),
Feb (2),
Mar (3),
Apr (4),
May (5),
Jun (6),
Jul (7),
Aug (8),
Sep (9),
Oct (10),
Nov (11),
Dec (12)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This value is the month that Daylight Savings Time begins. It affects
the local time operation of any optional IRIG timecode outputs or the
optional front panel vacuum fluorescent display. It is only pertinent
when cntpTimeMode is set to LOCAL_MANUAL. It DOES NOT affect the Linux OS
clock or the NTP sub-system. Both of these are ALWAYS UTC."
::= { cntp 15 }
cntpDSTStartSunday OBJECT-TYPE
SYNTAX INTEGER
{
disabled (0),
1stSunday (1),
2ndSunday (2),
3rdSunday (3),
4thSunday (4),
lastSunday (5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This value is the Sunday of the month that Daylight Savings Time begins.
It affects the local time operation of any optional IRIG timecode outputs
or the optional front panel vacuum fluorescent display. It is only
pertinent when cntpTimeMode is set to LOCAL_MANUAL. It DOES NOT affect the
Linux OS clock or the NTP sub-system. Both of these are ALWAYS UTC."
::= { cntp 16 }
cntpDSTStartHour OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This value is the hour that Daylight Savings Time begins. It affects the
local time operation of any optional IRIG timecode outputs or the optional
front panel vacuum fluorescent display. It is only pertinent when
cntpTimeMode is set to LOCAL_MANUAL. It DOES NOT affect the Linux OS clock
or the NTP sub-system. Both of these are ALWAYS UTC.
It ranges from 0 to 23, where 0 is midnight."
::= { cntp 17 }
cntpDSTStopMonth OBJECT-TYPE
SYNTAX INTEGER
{
disabled (0),
Jan (1),
Feb (2),
Mar (3),
Apr (4),
May (5),
Jun (6),
Jul (7),
Aug (8),
Sep (9),
Oct (10),
Nov (11),
Dec (12)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This value is the month that Daylight Savings Time ends. It affects
the local time operation of any optional IRIG timecode outputs or the
optional front panel vacuum fluorescent display. It is only pertinent
when cntpTimeMode is set to LOCAL_MANUAL. It DOES NOT affect the Linux OS
clock or the NTP sub-system. Both of these are ALWAYS UTC."
::= { cntp 18 }
cntpDSTStopSunday OBJECT-TYPE
SYNTAX INTEGER
{
disabled (0),
1stSunday (1),
2ndSunday (2),
3rdSunday (3),
4thSunday (4),
lastSunday (5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This value is the Sunday of the month that Daylight Savings Time ends.
It affects the local time operation of any optional IRIG timecode outputs
or the optional front panel vacuum fluorescent display. It is only
pertinent when cntpTimeMode is set to LOCAL_MANUAL. It DOES NOT affect the
Linux OS clock or the NTP sub-system. Both of these are ALWAYS UTC."
::= { cntp 19 }
cntpDSTStopHour OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This value is the hour that Daylight Savings Time ends. It affects the
local time operation of any optional IRIG timecode outputs or the optional
front panel vacuum fluorescent display. It is only pertinent when
cntpTimeMode is set to LOCAL_MANUAL. It DOES NOT affect the Linux OS clock
or the NTP sub-system. Both of these are ALWAYS UTC.
It ranges from 0 to 23, where 0 is midnight."
::= { cntp 20 }
-- cdma branch of the Tempus LX/Unison Cntp subtree
cdmaTrapFaultStatusChange NOTIFICATION-TYPE
OBJECTS { cdmaFaultStatus }
STATUS current
DESCRIPTION
"A cdmaTrapFaultStatusChange trap signifies that the value of the fault
status word reported by the CDMA sub-system has changed. The current value
is contained in the included cdmaFaultStatus."
::= { cdmatrap 1 }
cdmaTrapTimeFigureOfMeritChange NOTIFICATION-TYPE
OBJECTS { cdmaTimeFigureOfMerit }
STATUS current
DESCRIPTION
"A cdmaTrapTimeFigureOfMeritChange trap signifies that the value of the TFOM
reported by the CDMA sub-system has changed. The current value is
contained in the included cdmaTimeFigureOfMerit."
::= { cdmatrap 2 }
cdmaFaultStatus OBJECT-TYPE
SYNTAX BITS
{
cdmaNotUsed (0)
cdmaNTPNotPolling (1)
cdmaRefTimeFlt (2)
cdmaLOPLLFlt (3)
cdmaFLASHWriteFlt (4)
cdmaFPGACfgFlt (5)
cdmaNoSignalTimeout (6)
cdmaDACNearLimit (7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is a bit string contained in one character representing the
least significant two nibbles of the CDMA fault status word. Unfortunately,
SNMP numbers the bits in the reverse order, so that the enumerated values
are backwards from the description contained in the User's Manual for the
fault status field returned by the cdmastat command. Each bit indicates
a fault when set. Currently defined fault states encoded in this value:
Bit 7: DAC controlling the TCXO is near the high or low limit.
Bit 6: Time Figure of Merit has been 9 (unsynchronized) for 1 hour.
Bit 5: Field Programmable Gate Array (FPGA) did not configure properly.
Bit 4: FLASH memory had a write fault.
Bit 3: Local Oscillator PLL fault.
Bit 2: CDMA reference time fault (fails sanity checks).
Bit 1: NTP daemon is not polling the CDMA reference clock.
Bit 0: Not Used."
::= { cdma 1 }
cdmaTimeFigureOfMerit OBJECT-TYPE
SYNTAX INTEGER
{
lessthan100us (6),
lessthan1ms (7),
lessthan10ms (8),
greaterthan10ms (9)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Time Figure of Merit (TFOM) value ranges from 6 to 9 and indicates the
current estimate of the worst case time error. It is a logarithmic scale,
with each increment indicating a tenfold increase in the worst case time
error boundaries. The scale is referenced to a worst case time error of
100 picoseconds, equivalent to a TFOM of zero. During normal locked
operation the TFOM is 6 and implies a worst case time error of 100
microseconds.
During periods of signal loss, the CDMA sub-system will compute an
extrapolated worst case time error. One hour after the worst case time error
has reached the value equivalent to a TFOM of 9, the NTP server will cease
to send stratum 1 reply packets and an Alarm LED will be energized."
::= { cdma 2 }
cdmaSigProcState OBJECT-TYPE
SYNTAX INTEGER
{
cdmaAcquiring (0),
cdmaDetected (1),
cdmaCodeLocking (2),
cdmaCarrierLocking (4),
cdmaLocked (8)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current CDMA signal processor state. One of 0, 1, 2, 4 or 8, with 0
indicating the acquisition state and 8 the fully locked on state."
::= { cdma 3 }
cdmaChannel OBJECT-TYPE
SYNTAX INTEGER
{
bandclass0subclass0Apri (0),
bandclass0subclass0Bpri (1),
bandclass0subclass0Asec (2),
bandclass0subclass0Bsec (3),
bandclass0subclass1Apri (4),
bandclass0subclass1Bpri (5),
bandclass0subclass1Asec (6),
bandclass0subclass1Bsec (7),
bandclass1A00 (8),
bandclass1A01 (9),
bandclass1A02 (10),
bandclass1A03 (11),
bandclass1A04 (12),
bandclass1A05 (13),
bandclass1A06 (14),
bandclass1A07 (15),
bandclass1A08 (16),
bandclass1A09 (17),
bandclass1A10 (18),
bandclass1D00 (19),
bandclass1D01 (20),
bandclass1D02 (21),
bandclass1B00 (22),
bandclass1B01 (23),
bandclass1B02 (24),
bandclass1B03 (25),
bandclass1B04 (26),
bandclass1B05 (27),
bandclass1B06 (28),
bandclass1B07 (29),
bandclass1B08 (30),
bandclass1B09 (31),
bandclass1B10 (32),
bandclass1E00 (33),
bandclass1E01 (34),
bandclass1E02 (35),
bandclass1F00 (36),
bandclass1F01 (37),
bandclass1F02 (38),
bandclass1C00 (39),
bandclass1C01 (40),
bandclass1C02 (41),
bandclass1C03 (42),
bandclass1C04 (43),
bandclass1C05 (44),
bandclass1C06 (45),
bandclass1C07 (46),
bandclass1C08 (47),
bandclass1C09 (48),
bandclass1C10 (49),
bandclass3Apri (50),
bandclass3Asec (51),
bandclass0India185 (52),
bandclass0India226 (53),
bandclass0India267 (54),
bandclass0India308 (55),
bandclass0India369 (56),
bandclass0India410 (57),
bandclass0India451 (58),
bandclass0India492 (59)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current CDMA frequency band and channel being used. Channels 0-3 are the
North American cellular channels. Channels 4-7 are the South Korean cellular
channels. Channels 8-49 are the North American PCS channels. Channels 50-51
are the Japanese cellular channels. Channels 52-59 are the Indian cellular
channels."
::= { cdma 4 }
cdmaPNO OBJECT-TYPE
SYNTAX INTEGER (0..511)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current Pseudo Noise Offset of the base station being tracked. The value
ranges from 0 to 511 and is in units of 64 Pseudo Noise Code chips. This
offset serves as a base station identifier that is analogous to the Pseudo
Random Noise (PRN) codes used by the individual satellites in the GPS system."
::= { cdma 5 }
cdmaAGC OBJECT-TYPE
SYNTAX INTEGER (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current 8 bit, Automatic Gain Control (AGC) DAC value. Typical values
are around 200, but proximity to the base station, type of building
construction and orientation within the building have a strong influence on
this value. More positive values have the effect of increasing the RF gain."
::= { cdma 6 }
cdmaVCDAC OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current 16 bit, Voltage Controlled TCXO DAC value. Typical range is 20000
to 40000, where more positive numbers have the effect of raising the TCXO
frequency."
::= { cdma 7 }
cdmaCarrierToNoiseRatio OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..4))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ASCII string representing the current received CDMA signal carrier-to-noise
ratio, a unitless quantity. Numbers less than 2.5 indicate a very weak
signal condition."
::= { cdma 8 }
cdmaFrameErrorRate OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..5))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ASCII string representing the current sync channel message error rate,
a number ranging from 0.000 to 1.000. It indicates the proportion of
messages received that fail the Cyclical Redundancy Check."
::= { cdma 9 }
cdmaLeapMode OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..80))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ASCII string showing the current leap second mode of operation for the
CDMA sub-system. It is either AUTO or USER. If the mode is USER, then the
current and future values of the UTC to GPS leap second offset is also
included."
::= { cdma 10 }
cdmaCurrentLeapSeconds OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This value is the current difference in seconds between GPS time and UTC
time. GPS time is ahead of UTC time by this amount."
::= { cdma 11 }
cdmaFutureLeapSeconds OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This value is the future difference in seconds between GPS time and UTC
time. Leap seconds may be inserted or deleted from the UTC timescale twice
during the year: Dec 31 and June 30 at UTC midnight. If this value is the
same as cdmaCurrentLeapSeconds, then no leap second insertion or deletion
will occur at the next possible time. If it is different, then the change
will take affect at the next possible time. GPS time will be ahead of UTC
time by this amount."
::= { cdma 12 }
cdmaVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ASCII string showing the CDMA sub-system firmware and FPGA versions."
::= { cdma 13 }
cdmaSignalLossFaultMask OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CDMA signal loss fault mask is either on or off. When it is off, the server will
set the Signal Loss Fault Bit in the Fault Status Byte one hour after TFOM reaches 9.
When the setting is on, the server will not set the Signal Loss Fault Bit in the Fault
Status Byte one hour or more after TFOM reaches 9."
::= { cdma 14 }
-- cCPUOptions branch of the Tempus LX/Unison CDMA subtree
copt1PPSWidth OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ASCII string showing the status of the Settable 1PPS PulseWidth CPU Option.
It may be NOT INSTALLED, or a string showing the current pulsewidth setting."
::= { cCPUOptions 1 }
coptTimeCodeFormat OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ASCII string showing the status of the Selectable Time Code Output Format
CPU Option. It may be NOT INSTALLED, or a string showing the current
time code output format setting."
::= { cCPUOptions 2 }
coptSynthesizer OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ASCII string showing the status of the Direct Digital Synthesizer CPU
Option. It may be NOT INSTALLED, or a string showing the current output
frequency in units of Hz."
::= { cCPUOptions 3 }
coptBNCOutputC OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ASCII string showing the status of the BNC Connector C Output CPU Option.
It may be NOT INSTALLED, or a string showing the current output selection."
::= { cCPUOptions 4 }
coptBNCOutputD OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ASCII string showing the status of the BNC Connector D Output CPU Option.
It may be NOT INSTALLED, or a string showing the current output selection."
::= { cCPUOptions 5 }
coptSerialTimeOutputBaudrate OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ASCII string showing the Baudrate of the Serial Time Output CPU Option.
It may be NOT INSTALLED, or a string showing one of 4800, 9600, 19200 or
57600."
::= { cCPUOptions 6 }
coptSerialTimeOutputFormat OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ASCII string showing the Format of the Serial Time Output CPU Option.
It may be NOT INSTALLED, or a string showing one of SYSPLEX, TRUETIME,
NENA0, NENA1, NENA8, ENDRUN, ENDRUNX or NMEA."
::= { cCPUOptions 7 }
coptSerialTimeOutputParity OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ASCII string showing the Parity of the Serial Time Output CPU Option.
It may be NOT INSTALLED, or a string showing one of ODD, EVEN or NONE."
::= { cCPUOptions 8 }
coptSerialTimeNMEASentence1 OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ASCII string showing the first NMEA sentence selected for output from
the Serial Time Output CPU Option. This sentence is only output from
the timeserver when the Serial Time Output CPU Option Format is set to NMEA.
It may be NOT INSTALLED, or a string showing one of GGA, GLL, GSA, GSV1,
GSV2, RMC, VTG, ZDA or NONE. At this time, only the ZDA sentence is active
from the CDMA products."
::= { cCPUOptions 9}
coptSerialTimeNMEASentence2 OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ASCII string showing the second NMEA sentence selected for output from
the Serial Time Output CPU Option. This sentence is only output from
the timeserver when the Serial Time Output CPU Option Format is set to NMEA.
It may be NOT INSTALLED, or a string showing one of GGA, GLL, GSA, GSV1,
GSV2, RMC, VTG, ZDA or NONE. At this time, only the ZDA sentence is active
from the CDMA products."
::= { cCPUOptions 10}
coptSerialTimeNMEASentence3 OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ASCII string showing the third NMEA sentence selected for output from
the Serial Time Output CPU Option. This sentence is only output from
the timeserver when the Serial Time Output CPU Option Format is set to NMEA.
It may be NOT INSTALLED, or a string showing one of GGA, GLL, GSA, GSV1,
GSV2, RMC, VTG, ZDA or NONE. At this time, only the ZDA sentence is active
from the CDMA products."
::= { cCPUOptions 11}
-- TempusLX/Unison Gntp Product Group
tempuslxGntp OBJECT IDENTIFIER ::= { endRunTechnologiesMIB 6 }
gntp OBJECT IDENTIFIER ::= { tempuslxGntp 0 }
gntptrap OBJECT IDENTIFIER ::= { gntp 0 }
gps OBJECT IDENTIFIER ::= { tempuslxGntp 1 }
gpstrap OBJECT IDENTIFIER ::= { gps 0 }
gCPUOptions OBJECT IDENTIFIER ::= { tempuslxGntp 2 }
-- gntp branch of the Tempus LX/Unison Gntp subtree
gntpTrapLeapIndBitsChange NOTIFICATION-TYPE
OBJECTS { gntpLeapIndBits }
STATUS current
DESCRIPTION
"A gntpTrapNTPLeapIndBitsChange trap signifies that the value of the leap
indicator bits contained in the NTP reply packets sent by the time server
has changed. The current value of these bits is contained in the included
gntpLeapIndBits. The decimal value of these bits ranges from 0 to 3:
0 is the no fault, no leap warning condition
1 is the no fault, leap second insertion warning condition
2 is the no fault, leap second deletion warning condition
3 is the unsynchronized, alarm condition"
::= { gntptrap 1 }
gntpTrapStratumChange NOTIFICATION-TYPE
OBJECTS { gntpStratum }
STATUS current
DESCRIPTION
"A gntpTrapStratumChange trap signifies that the value of the stratum
field contained in the NTP reply packets sent by the time server
has changed. The current value is contained in the included
variable, gntpStratum. The decimal value of this field ranges from 1 to 16:
1 is the synchronized, actively locked to the reference UTC source stratum
2 is the synchronized, actively locked to a network stratum 1 server stratum
16 is the unsynchronized stratum level"
::= { gntptrap 2 }
gntpRxPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of NTP request packets received by the NTP daemon."
::= { gntp 1 }
gntpTxPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of NTP reply packets transmitted by the NTP daemon."
::= { gntp 2 }
gntpIgnoredPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of NTP request packets ignored by the NTP daemon."
::= { gntp 3 }
gntpDroppedPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of NTP request packets dropped by the NTP daemon."
::= { gntp 4 }
gntpAuthFail OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of authentication failures detected by the NTP daemon."
::= { gntp 5 }
gntpTimeFigureOfMerit OBJECT-TYPE
SYNTAX INTEGER
{
lessthan100ns (3),
lessthan1us (4),
lessthan10us (5),
lessthan100us (6),
lessthan1ms (7),
lessthan10ms (8),
greaterthan10ms (9)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Time Figure of Merit (TFOM) value ranges from 3 to 9 and indicates the
current estimate of the worst case time error. It is a logarithmic scale,
with each increment indicating a tenfold increase in the worst case time
error boundaries.
The scale is referenced to a worst case time error of 100 picoseconds,
equivalent to a TFOM of zero. During normal locked operation with GPS the
TFOM is 3 and implies a worst case time error of 100 nanoseconds.
During periods of signal loss, the GPS sub-system will compute an
extrapolated worst case time error. One hour after the worst case time error
has reached the value equivalent to a TFOM of 9, the NTP server will cease
to send stratum 1 reply packets and an Alarm LED will be energized."
::= { gntp 6 }
gntpLeapIndBits OBJECT-TYPE
SYNTAX INTEGER
{
noFaultorLeap (0),
leapInsWarning (1),
leapDelWarning (2),
unSynchronized (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is a status code indicating: normal operation, a leap second to
be inserted in the last minute of the current day, a leap second to be
deleted in the last second of the day or an alarm condition indicating
loss of timing synchronization. The leap indicator field of NTP reply
packets sent from this server is set to gntpLeapIndBits."
::= { gntp 7 }
gntpSyncSource OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..4))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is an ASCII string identifying the synchronization source for this
NTP server. It is one of GPS, an IP address of a stratum 1 server, or NONE.
If it is NONE, then the server is not synchronized, has its Leap Indicator
Bits in the Alarm state and is running at Stratum 16. If it is an IP
address, then the server is operating as a stratum 2 server synchronized to
the network connected stratum 1 server whose IP address is shown.
Check the Stratum, Leap Indicator Bits and Time Figure of Merit for further
information. NTP reply packets from this server will have the reference
identifier field set to gntpSyncSource if it is GPS. Otherwise
it will be set to either an IP address or 0.0.0.0 (NONE)."
::= { gntp 8 }
gntpOffsetToGPSReference OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is an ASCII string containing the floating value of the current
offset in units of seconds of the NTP server CPU clock to the GPS
reference time. Positive values imply that the NTP server clock is
ahead of the GPS reference time."
::= { gntp 9 }
gntpStratum OBJECT-TYPE
SYNTAX INTEGER
{
gntpStratumOne (1),
gntpStratumTwo (2),
gntpStratumUnsync (16)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is an integer showing the current stratum level being reported by
the NTP daemon in its reply packets to clients. If it is 1, then the server
is fully synchronized and delivering Stratum 1 accuracy. If it is greater
than 1 and less than 16, it is synchronized to a network connected NTP
server operating at one stratum lower. If it is 16, then the server is
unambiguously unsynchronized.
NTP clients on the network should be configured to not use the time from
this server if the stratum is 16."
::= { gntp 10 }
gntpVersion OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..80))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is an ASCII string showing the NTP server firmware version."
::= { gntp 11 }
gntpOscType OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is an ASCII string showing the installed oscillator type. It is
one of TCXO, MS-OCXO, HS-OCXO or Rubidium."
::= { gntp 12 }
gntpTimeMode OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..8))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is an ASCII string showing the time mode of operation for any
optional IRIG timecode outputs or the optional front panel vacuum
fluorescent display. It DOES NOT indicate the time mode of the Linux
OS clock or the NTP sub-system. Both of these are ALWAYS UTC.
It can be LOCAL, GPS or UTC."
::= { gntp 13 }
gntpLocalOffset OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This value is the local time offset configured for any optional IRIG
timecode outputs or the optional front panel vacuum fluorescent display.
It is only pertinent when gntpTimeMode is set to LOCAL. It DOES NOT
indicate the local time offset of the Linux OS clock or the NTP sub-system.
Both of these are ALWAYS UTC.
Its units are half-hours, ranging from -25 to 25, where negative values
imply that the local time is behind UTC."
::= { gntp 14 }
gntpDSTStartMonth OBJECT-TYPE
SYNTAX INTEGER
{
disabled (0),
Jan (1),
Feb (2),
Mar (3),
Apr (4),
May (5),
Jun (6),
Jul (7),
Aug (8),
Sep (9),
Oct (10),
Nov (11),
Dec (12)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This value is the month that Daylight Savings Time begins. It affects
the local time operation of any optional IRIG timecode outputs or the
optional front panel vacuum fluorescent display. It is only pertinent
when gntpTimeMode is set to LOCAL. It DOES NOT affect the Linux OS
clock or the NTP sub-system. Both of these are ALWAYS UTC."
::= { gntp 15 }
gntpDSTStartSunday OBJECT-TYPE
SYNTAX INTEGER
{
disabled (0),
1stSunday (1),
2ndSunday (2),
3rdSunday (3),
4thSunday (4),
lastSunday (5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This value is the Sunday of the month that Daylight Savings Time begins.
It affects the local time operation of any optional IRIG timecode outputs
or the optional front panel vacuum fluorescent display. It is only
pertinent when gntpTimeMode is set to LOCAL. It DOES NOT affect the Linux
OS clock or the NTP sub-system. Both of these are ALWAYS UTC."
::= { gntp 16 }
gntpDSTStartHour OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This value is the hour that Daylight Savings Time begins. It affects the
local time operation of any optional IRIG timecode outputs or the optional
front panel vacuum fluorescent display. It is only pertinent when
gntpTimeMode is set to LOCAL. It DOES NOT affect the Linux OS clock or the
NTP sub-system. Both of these are ALWAYS UTC.
It ranges from 0 to 23, where 0 is midnight."
::= { gntp 17 }
gntpDSTStopMonth OBJECT-TYPE
SYNTAX INTEGER
{
disabled (0),
Jan (1),
Feb (2),
Mar (3),
Apr (4),
May (5),
Jun (6),
Jul (7),
Aug (8),
Sep (9),
Oct (10),
Nov (11),
Dec (12)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This value is the month that Daylight Savings Time ends. It affects
the local time operation of any optional IRIG timecode outputs or the
optional front panel vacuum fluorescent display. It is only pertinent
when gntpTimeMode is set to LOCAL. It DOES NOT affect the Linux OS
clock or the NTP sub-system. Both of these are ALWAYS UTC."
::= { gntp 18 }
gntpDSTStopSunday OBJECT-TYPE
SYNTAX INTEGER
{
disabled (0),
1stSunday (1),
2ndSunday (2),
3rdSunday (3),
4thSunday (4),
lastSunday (5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This value is the Sunday of the month that Daylight Savings Time ends.
It affects the local time operation of any optional IRIG timecode outputs
or the optional front panel vacuum fluorescent display. It is only
pertinent when gntpTimeMode is set to LOCAL. It DOES NOT affect the Linux
OS clock or the NTP sub-system. Both of these are ALWAYS UTC."
::= { gntp 19 }
gntpDSTStopHour OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This value is the hour that Daylight Savings Time ends. It affects the
local time operation of any optional IRIG timecode outputs or the optional
front panel vacuum fluorescent display. It is only pertinent when
gntpTimeMode is set to LOCAL. It DOES NOT affect the Linux OS clock or the
NTP sub-system. Both of these are ALWAYS UTC.
It ranges from 0 to 23, where 0 is midnight."
::= { gntp 20 }
-- gps branch of the Tempus LX/Unison Gntp subtree
gpsTrapFaultStatusChange NOTIFICATION-TYPE
OBJECTS { gpsFaultStatus }
STATUS current
DESCRIPTION
"A gpsTrapFaultStatusChange trap signifies that the value of the fault status
word reported by the GPS sub-system has changed. The current value is
contained in the included gpsFaultStatus."
::= { gpstrap 1 }
gpsTrapTimeFigureOfMeritChange NOTIFICATION-TYPE
OBJECTS { gpsTimeFigureOfMerit }
STATUS current
DESCRIPTION
"A gpsTrapTimeFigureOfMeritChange trap signifies that the value of the TFOM
reported by the GPS sub-system has changed. The current value is
contained in the included gpsTimeFigureOfMerit."
::= { gpstrap 2 }
gpsFaultStatus OBJECT-TYPE
SYNTAX BITS
{
gpsAntennaFlt (0)
gpsNTPNotPolling (1)
gpsRefTimeFlt (2)
gpsEngineCommFlt (3)
gpsFLASHWriteFlt (4)
gpsFPGACfgFlt (5)
gpsNoSignalTimeout (6)
gpsDACNearLimit (7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is a bit string contained in one character representing the
least significant two nibbles of the GPS fault status word. Unfortunately,
SNMP numbers the bits in the reverse order, so that the enumerated values
are backwards from the description contained in the User's Manual for the
fault status field returned by the gpsstat command. Each bit indicates
a fault when set. Currently defined fault states encoded in this value:
Bit 7: DAC controlling the TCXO is near the high or low limit.
Bit 6: Time Figure of Merit has been 9 (unsynchronized) for 1 hour.
Bit 5: Field Programmable Gate Array (FPGA) did not configure properly.
Bit 4: FLASH memory had a write fault.
Bit 3: GPS engine communication fault.
Bit 2: GPS reference time fault (fails sanity checks).
Bit 1: NTP daemon is not polling the GPS reference clock.
Bit 0: GPS antenna or feedline is shorted or open."
::= { gps 1 }
gpsTimeFigureOfMerit OBJECT-TYPE
SYNTAX INTEGER
{
lessthan100ns (3),
lessthan1us (4),
lessthan10us (5),
lessthan100us (6),
lessthan1ms (7),
lessthan10ms (8),
greaterthan10ms (9)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Time Figure of Merit (TFOM) value ranges from 3 to 9 and indicates
the current estimate of the worst case time error. It is a logarithmic
scale, with each increment indicating a tenfold increase in the worst case
time error boundaries. The scale is referenced to a worst case time error
of 100 picoseconds, equivalent to a TFOM of zero. During normal locked
operation the TFOM is 4 and implies a worst case time error of 100 nanoseconds.
During periods of signal loss, the GPS sub-system will compute an
extrapolated worst case time error. One hour after the worst case time error
has reached the value equivalent to a TFOM of 9, the NTP server will cease
to send stratum 1 reply packets and an Alarm LED will be energized."
::= { gps 2 }
gpsSigProcState OBJECT-TYPE
SYNTAX INTEGER
{
gpsAcquiring (0),
gpsLocking (1),
gpsLocked (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current GPS signal processor state. One of 0, 1 or 2, with 0 being the
acquisition state and 2 the fully locked on state."
::= { gps 3 }
gpsNumTrackSats OBJECT-TYPE
SYNTAX INTEGER (0..8)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current number of GPS satellites being tracked."
::= { gps 4 }
gpsVCDAC OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current 16 bit, Voltage Controlled TCXO DAC value. Typical range is 20000
to 40000, where more positive numbers have the effect of raising the TCXO
frequency."
::= { gps 5 }
gpsAvgCarrierToNoiseRatiodB OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..4))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ASCII string representing the current average carrier to noise ratio of all
tracked satellites, in units of dB. Values less than 35 indicate weak
signal conditions."
::= { gps 6 }
gpsReferencePosition OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..80))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"WGS-84 latitude, longitude and height above the reference ellipsoid of the
GPS antenna. Ellipsoid height may deviate from local Mean Sea Level by as
much as 100 meters."
::= { gps 7 }
gpsRefPosSource OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..3))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ASCII string indicating the source of the GPS antenna reference position.
It is one of:
USR (user supplied),
AVG (automatically determined by averaging thousands of 3-D position fixes),
DYN (current un-averaged 3-D position fix, operation is in dynamic mode),
UNK (unknown)."
::= { gps 8 }
gpsCurrentLeapSeconds OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This value is the current difference in seconds between GPS time and UTC
time. GPS time is ahead of UTC time by this amount."
::= { gps 9 }
gpsFutureLeapSeconds OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This value is the future difference in seconds between GPS time and UTC
time. Leap seconds may be inserted or deleted from the UTC timescale twice
during the year: Dec 31 and June 30 at UTC midnight. If this value is the
same as cdmaCurrentLeapSeconds, then no leap second insertion or deletion
will occur at the next possible time. If it is different, then the change
will take affect at the next possible time. GPS time will be ahead of UTC
time by this amount."
::= { gps 10 }
gpsVersion OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ASCII string showing the GPS sub-system firmware and FPGA versions."
::= { gps 11 }
gpsDynamicMode OBJECT-TYPE
SYNTAX INTEGER
{
gpsDynModeOFF (0),
gpsDynModeON (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The GPS dynamic mode is either on or off. When it is off, the server is
assumed to be in a static installation. In this case, single satellite mode
of operation is supported and Timing Receiver Autonomous Integrity Monitoring
(TRAIM) is supported. When the setting is on, the server is assumed to be on
a moving platform. In this case, minimum four satellite, 3-D operation is
required and the TRAIM functionality is minimal."
::= { gps 12 }
gpsAntennaFaultMask OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The GPS antenna fault mask is either on or off. When it is off, the server will
set the Antenna Fault Bit in the Fault Status Byte if an improper antenna impedance
is detected. When the setting is on, the server will not set the Antenna Fault Bit
in the Fault Status Byte if an improper antenna impedance is detected."
::= { gps 13 }
gpsSignalLossFaultMask OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The GPS signal loss fault mask is either on or off. When it is off, the server will
set the Signal Loss Fault Bit in the Fault Status Byte one hour after TFOM reaches 9.
When the setting is on, the server will not set the Signal Loss Fault Bit in the Fault
Status Byte one hour or more after TFOM reaches 9."
::= { gps 14 }
-- gCPUOptions branch of the Tempus LX/Unison GPS subtree
gopt1PPSWidth OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ASCII string showing the status of the Settable 1PPS PulseWidth CPU Option.
It may be NOT INSTALLED, or a string showing the current pulsewidth setting."
::= { gCPUOptions 1 }
goptTimeCodeFormat OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ASCII string showing the status of the Selectable Time Code Output Format
CPU Option. It may be NOT INSTALLED, or a string showing the current
time code output format setting."
::= { gCPUOptions 2 }
goptSynthesizer OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ASCII string showing the status of the Direct Digital Synthesizer CPU
Option. It may be NOT INSTALLED, or a string showing the current output
frequency in units of Hz."
::= { gCPUOptions 3 }
goptBNCOutputC OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ASCII string showing the status of the BNC Connector C Output CPU Option.
It may be NOT INSTALLED, or a string showing the current output selection."
::= { gCPUOptions 4 }
goptBNCOutputD OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ASCII string showing the status of the BNC Connector D Output CPU Option.
It may be NOT INSTALLED, or a string showing the current output selection."
::= { gCPUOptions 5 }
goptSerialTimeOutputBaudrate OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ASCII string showing the Baudrate of the Serial Time Output CPU Option.
It may be NOT INSTALLED, or a string showing one of 4800, 9600, 19200 or
57600."
::= { gCPUOptions 6 }
goptSerialTimeOutputFormat OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ASCII string showing the Format of the Serial Time Output CPU Option.
It may be NOT INSTALLED, or a string showing one of SYSPLEX, TRUETIME,
NENA0, NENA1, NENA8, ENDRUN, ENDRUNX or NMEA."
::= { gCPUOptions 7 }
goptSerialTimeOutputParity OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ASCII string showing the Parity of the Serial Time Output CPU Option.
It may be NOT INSTALLED, or a string showing one of ODD, EVEN or NONE."
::= { gCPUOptions 8 }
goptSerialTimeNMEASentence1 OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ASCII string showing the first NMEA sentence selected for output from
the Serial Time Output CPU Option. This sentence is only output from
the timeserver when the Serial Time Output CPU Option Format is set to NMEA.
It may be NOT INSTALLED, or a string showing one of GGA, GLL, GSA, GSV1,
GSV2, RMC, VTG, ZDA or NONE."
::= { gCPUOptions 9}
goptSerialTimeNMEASentence2 OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ASCII string showing the second NMEA sentence selected for output from
the Serial Time Output CPU Option. This sentence is only output from
the timeserver when the Serial Time Output CPU Option Format is set to NMEA.
It may be NOT INSTALLED, or a string showing one of GGA, GLL, GSA, GSV1,
GSV2, RMC, VTG, ZDA or NONE."
::= { gCPUOptions 10}
goptSerialTimeNMEASentence3 OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ASCII string showing the third NMEA sentence selected for output from
the Serial Time Output CPU Option. This sentence is only output from
the timeserver when the Serial Time Output CPU Option Format is set to NMEA.
It may be NOT INSTALLED, or a string showing one of GGA, GLL, GSA, GSV1,
GSV2, RMC, VTG, ZDA or NONE."
::= { gCPUOptions 11}
END
|