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 Azure. Here comes a slightly different one: how I can validate the current clock reliability with NTP? The catch is that UDP is not available on Windows Azure (only TCP), and it seems there is no TCP implementation available of NTP (although the discussion is nearly one decade old).

Any take?

link|improve this question

No UDP? The mind, it boggles... [Insert generic rant here] Would it be possible to open a VPN connection to some server under your control that's on the Internet? IIRC OpenVPN can connect over TCP and tunnel any IP traffic. – Piskvor May 31 '11 at 11:33
feedback

2 Answers

up vote 1 down vote accepted

Assuming that UDP outgoing packets are still blocked by Azure (I'm surprised/disappointed this is still the case!) then maybe you could drop down to a TCP service with less resolution such as TIME or DAYTIME - see descriptions of both on http://www.nist.gov/pml/div688/grp40/its.cfm - you would obviously need to measure the length of time your network call took in order to be sure the answer coming back is sufficiently accurate for you.

link|improve this answer
Nice, DAYTIME works indeed! I have also found a nice hack which consists of using the time returned by HTTP servers mina86.com/2010/01/16/ntp-over-http Even less reliable, but good enough to detect vast clock drifts. – Joannes Vermorel Jun 1 '11 at 9:49
feedback

Joannes and Stuart: You are correct that Windows Azure roles (Web, Worker, and VM Roles) do not support hosting of UDP endpoints currently. However, NTP support is already included by default on Windows Azure role VMs, currently configured by default to synch the clock against server time.windows.com once a week (evidence here - search for "time service").

You can tweak a registry setting in a Startup Task if a weekly sync is not frequent enough.

HTH!

link|improve this answer
FYI - I recently blogged about NTP on Azure: blog.codingoutloud.com/2011/08/25/… – codingoutloud Sep 8 '11 at 22:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.