Network Time Protocol is an application level network protocol that is used for synchronizing clocks of computer systems. The term also refers to the reference software implementation.

learn more… | top users | synonyms

13
votes
6answers
3k views

Network Time Protocol for iPhone

I am writing an application that requires accurate timing. After asking this question, I have decided to investigate using NTP or maybe Simple NTP. Is there any open source implementation of these ...
12
votes
2answers
6k views

How to Query an NTP Server from C#

All I need is a way to query an NTP Server from C# to get the Date Time of the NTP Server returned as either a string or as a DateTime. How is this possibly in its simplest form
9
votes
5answers
535 views

How to prevent usage of expired license through system clock tampering?

I am currently working on a license manager using java, I will be specifying a start and end date for my application so I can force a licensed user to re-license the program after a certain amount of ...
7
votes
1answer
186 views
+50

Java scheduler which is completely independent of system time changes

Was using Java Timer, Then switched to ScheduledExecutorService, but my problem is not fixed. As Tasks scheduled before system time change (through ntpd) are not executed on delay specified. Have no ...
6
votes
1answer
331 views

GPS: How NTP time injection works

I've recently known about a gps.conf file in the /system/etc/ directory. Seems that tweaking NTP_SERVER values to NTP servers nearer to the usual location improves TTFF. Reading the source code in ...
6
votes
1answer
294 views

How to Generate Network Packets with C/C++

I want to generate a network packet to send over (for example) port 123 to an NTP server so I can receive and parse the returned packet. The goal is to better understand how packets are generated, ...
6
votes
4answers
680 views

How Does the Network Time Protocol Work?

The Wikipedia entry doesn't give details and the RFC is way too dense. Does anyone around here know, in a very general way, how NTP works? I'm looking for an overview that explains how Marzullo's ...
5
votes
4answers
310 views

synchronize clocks over internet

I am sending real-time-critical data over the internet between two dedicated computers, using my own protocol. There is, of course, latency involved. For debugging and optimization, I like to have ...
4
votes
3answers
1k views

JavaScript NTP time

Hello I'm writing a counting script who counts the time between an old date and today. Everything worked good until I tested on a computer with wrong date and saw the results. So I found a way to get ...
4
votes
1answer
160 views

Handling Y2.036K & Y2.038K bugs

I am currently working on a project with a requirement that our software must operate until at least 2050. Recently we have run into problems dealing with the Y2.036K "bug" in the NTP protocol and ...
3
votes
1answer
167 views

Synchronize time in javascript with a good precision (>0.5s) (NTP-like)

I'm looking for a way to synchronize time between clients with a good precision (let's say 0.5 seconds at least). I exclude using jsontime or exploiting timestamp in server response headers due to a ...
3
votes
1answer
63 views

Determining the Destination Timestamp of an (S)NTP packet?

I'm trying to create a simple SNTP client in C using the Berkeley sockets API, but I'm having trouble calculating the adjusted time from the response message. I got this from RFC2030. When the ...
3
votes
4answers
427 views

Keep time in sync among servers without internet connection

I have 5 servers on a LAN without Internet connection. I need them to keep the clock in sync among them. I could configure them as NTP peers, and set a high stratum for the local clock of one of ...
3
votes
3answers
4k views

Java NTP client

I need my software to communicate with an NTP server to determine the local clock offset. I have tried using the org.apache.commons.net.ntp package, but its implementation is rather poor when running ...
2
votes
4answers
64 views

NTP timestamps in Python

I need to generate a timestamp in NTP format in Python. Specifically, I need to calculate the number of seconds since 1st January 1900, as a 32-bit number. (NTP timestamps are actually 64 bits, with ...
2
votes
2answers
101 views

how to get trusted time in an app, ntp maybe?

My app will need to periodically access a trusted time source, so can not rely on system time since this one can be modified easily by user or batery failure etc. My first idea is to statically link ...
2
votes
2answers
216 views

Convert date retrieved from ntp server with python

Is it possible to convert time retrieved from NTP server (with python script) in this format "Wed Jul 13 00:17:58 CEST 2011" to this format "2011-07-13 00:18:10" client = socket(AF_INET, ...
2
votes
3answers
426 views

How good is NTP for distributed time synchronization?

How accurate is NTP for keeping a set of servers time synchronized? I'm writing a service which requires a set of servers (some acting as clients, some as servers) synchronized to second level ...
2
votes
2answers
363 views

Event Synchronization Using NTP

I would like to synchronize two events between two (or more) wire networked Linux machines. Can I use NTP to do this? NTP seems to be mostly focused on synchronizing to a time server, where I need ...
2
votes
2answers
157 views

what is 'frequency difference' which NTP try to sync?

As defined in NTP rfc "The goal of the NTP algorithms is to minimize both the time difference and frequency difference between UTC and the system clock." I can understand 'time difference' but what ...
2
votes
2answers
1k views

convert NTP time to Human-readable time

i have managed to make a NTP request and retrieve the server time from it's NTP response. i want to convert this number to a Human-readable time, writing in C++. can some one help me ? as example you ...
2
votes
1answer
399 views

Windows API to trigger the time syncronization

Is there a windows API that would achieve the equivalent of cliking the "Update now" button in the "Date and time properties"/"Internet time" tab (opened by double clicking the clock in the taskbar)? ...
2
votes
1answer
129 views

Time Syncronization via Web Service Call

Say are dealing with a Windows network that for internet access must pass through a firewall that you have no control over. Said firewall apparently blocks the known time protocols (NTP,daytime,etc) ...
1
vote
0answers
33 views

Calculate DateTime from NTP timestamp on embedded device

I have a very limited environment which have no standard linux/unix date/time API and have to synchronize clock against NTP server. I can communicate via UDP and get NTP reply. Now i need to convert ...
1
vote
1answer
30 views

Using VB.NET to query NTP Servers

As the title describes I am looking for a way to query for the UTC time from NTP/SNTP Servers from 'VB.NET'. The only libraries I have found for VB.NET to such tasks appear require a fairly large sum ...
1
vote
3answers
34 views

Will using ntpd possibly mess up cron jobs?

My system has a lot of time drift, after a couple of week it can be ahead by around 5 minutes. To fix this, I installed ntp, which can help fix drift and of course sync the time to the ntp servers ...
1
vote
0answers
52 views

Nagios check_ntp_peer not working

I am running a virtualized (vmware) debian (2.6.26-2-686) which I monitor through Nagios. Lastly, I am getting the following Critical error (reported by the _check_ntp_peer_ script): NTP ...
1
vote
2answers
49 views

Print time from external server in bash

I'd like to know if it's possible to simply retrieve a Unix timestamp from an external server (using NTP, I suppose). I know there's ntpd, which will update the current system time to the time given ...
1
vote
2answers
170 views

How to validate local VM clock with NTP on Windows Azure?

NTP (Network Time Protocol) is basically the de-facto standard to adjust setup server clocks. I have already raised a question about the expectations in terms of native clock accuracy on Windows ...
1
vote
2answers
2k views

Create ntp time stamp from gettimeofday

I need to calculate an ntp time stamp using gettimeofday. Below is how I've done it with comments on method. Look good to you guys? (minus error checking). Also, here's a codepad link. #include ...
1
vote
2answers
265 views

linux - detecting change of system time

Is there a way to get notified when there is update to the system time from a time-server or due to DST change? I am after an API/system call or equivalent. It is part or my effort to optimize ...
1
vote
1answer
275 views

NTP Y2038 & Y2036

I am currently investigating the implications of the year 2036 and 2038 rollover bugs for a particular project. The software implemented by this project must be capable of running beyond these two ...
1
vote
2answers
912 views

Connecting to an NTP server keeps failing (Java)

I'm just learning how to do networking in Java and the first simple example of getting the time from an NTP server keeps throwing a ConnectException. I'll copy and paste the code, but I have the ...
1
vote
2answers
168 views

How do you compute the client/server timegap?

I'm developing a client/server software, and I'm searching the best way to keep my client clocks in sync with the server clock. Of course, I can't use NTP because I don't want to touch the system ...
0
votes
1answer
7 views

Effects of changing second definition in atomar clocks to compensate leap seconds

The International Telecommunication Union (ITU) is an Institution to standardize the Universal Time Coordinated (UTC). The ITU has been discussing to get rid of the so-called leap seconds for various ...
0
votes
1answer
44 views

How do I establish clock synchronization in the cloud (AWS, heroku, etc) across many nodes?

I would like to run a large cluster of nodes in the cloud (AWS, Heroku, or maybe self-manged VMS), whose clocks must be synchronized with a predefined tolerance in mind. I'm looking for a tolerance ...
0
votes
1answer
50 views

NTP over a virtualized Debian

I am having a hard time with NTP configuration on a virtualized (vmware) Linux Debian so I’d like to know if anyone has had the same problem. Here is the output of the ntpq –np remote ...
0
votes
1answer
46 views

Ntp synchronization video WP7 devices

I need to synchronize a video in diferrent devices with windows phone. So i get the hour from a ntp server and then convert it to miliseconds. Now i think i need to make a internal clock to count the ...
0
votes
1answer
45 views

convert ntp hour to miliseconds

I have a method to request the hour from a ntp server. but i want the hour in miliseconds. How can i do that? I have this code: void _ntpClient_TimeReceived(object sender, ...
0
votes
1answer
42 views

Ntp synchronization video WP7

I guys:) I am doing an windows phone application that presents videos, but presents when syncronized with an ntp server. I already have a variable with the time but i don´t know now what to do. I try ...
0
votes
2answers
124 views

Getting a Network Time Protocol (NTP) time stamp

gcc (GCC) 4.6.1 I am creating some sdp using RTF 4566 and I want to get the NTP time stamp so that I can use it for the session ID. It is recommended to use the Network Time Protocol (NTP) format ...
0
votes
1answer
304 views

use of ntp service

I'm developing an app that needs to control real time in any location on the Earth and do something when time comes. At the same time not to rely on system time because user can easily change it. Does ...
0
votes
1answer
171 views

DHCP server for Windows with NTP option

Does anybody know about a DHCP server app for Windows 7 Professional 32-bit, with the posibility to configure the NTP server address? I found these apps: http://tftpd32.jounin.net/tftpd32.html ...
0
votes
1answer
24 views

Get notified of ntp adjustments

I am in a weird situation and I need some direction with NTP time adjustments. I have a PC (Red Hat) that runs NTP daemon and this PC adjusts its time with a Stratum 2 time server on my LAN. My PC ...
0
votes
3answers
206 views

.Net API to get exact time for Internet Time Server

I need to know if there is any .NET API exists to fetch the current time from Internet Time Server, so that changing the system time at the client will not affect the integrity of my application. ...
0
votes
0answers
14 views

Building Integrated Timing Supply (BITS)

Does anyone know where I can find more info on BITS? BITS is used of timing in synchronous networks such as telecom networks. In particular, I would like to find the specification/standard. Can't seem ...
0
votes
0answers
59 views

Specifying time synchronization between a small network of machines offset from the “actual” time

An unusual requirement this. We have a small network of Win2008 Servers and we would like to synchronize the time among them. HOWEVER, We want to synchronize them to be about three and a half ...
0
votes
3answers
137 views

Network time protocol (NTP)

I have found a simulator called ntpdsim for NTP: http://www.eecis.udel.edu/~mills/ntp/html/ntpdsim_new.html I canot figure out on what OS I can use it. On the page there is no download content. So I ...
0
votes
1answer
213 views

Convert 64bit timestamp to a readable value

In my dataset I have two timestamp columns. The first is microseconds since application was started - e.g., 1400805323. The second is described as 64bit timestamp which I'm hoping will indicate clock ...
0
votes
1answer
616 views

Android GPS: specify NTP_SERVER for GPS in code

Hey, what I am doing now is to specify the NTP_SERVER in my application for the GPS LocationProvider to request time, in lieu of reading property from \system\etc\gps.conf, because there's always ...

1 2