Is it possible to use ntpdate behind an HTTP proxy with authentication? In case it is not possible, are there any good alternatives?
-
What OS please? – KCotreau Jul 06 '11 at 17:09
-
Linux in my case (don't think it matters much though). – Ton van den Heuvel Jul 06 '11 at 19:52
-
It only mattered because it was harder to find anything remotely for Windows. The key search I used was "NTP over HTTP", in case you want to search further. – KCotreau Jul 06 '11 at 19:58
-
4If you are behind a HTTP proxy, it probably means you are in a company, and this company may provide it's own NTP services. – Tristan Feb 15 '17 at 12:57
11 Answers
Expanding on the answer by carveone:
sudo date -s "$(wget -S "http://www.google.com/" 2>&1 | grep -E '^[[:space:]]*[dD]ate:' | sed 's/^[[:space:]]*[dD]ate:[[:space:]]*//' | head -1l | awk '{print $1, $3, $2, $5 ,"GMT", $4 }' | sed 's/,//')"
-
-
Note that the short version should use www.google.com since google.com is redirecting to it via 301 now with the date "stuck" – Hansi Mar 28 '14 at 14:19
-
When I made the comment the response for that command returned a day four days out of date. – Hansi Jul 03 '14 at 09:55
-
@ryenus This is a great answer. It works perfectly fine. However I have a problem when I put this command in a crontab job. Date's time part is made 00:00:00 whenever this job run. I tried to run in a shell script. Same result. – huzeyfe Sep 04 '14 at 11:38
-
@huzeyfe, would you please check if [passing proxy to curl](http://superuser.com/questions/307158/how-to-use-ntpdate-behind-a-proxy/807326#807326) works? – ryenus Sep 04 '14 at 16:19
This seems like a clear case for tlsdate.
tlsdate: secure parasitic rdate replacement
tlsdate sets the local clock by securely connecting with TLS to remote
servers and extracting the remote time out of the secure handshake. Unlike
ntpdate, tlsdate uses TCP, for instance connecting to a remote HTTPS or TLS
enabled service, and provides some protection against adversaries that try
to feed you malicious time information.
I do not think i have ever seen so many recommendations to use unsanitized data from internet as an argument to a sudo invocation.
- 747
- 6
- 11
-
1
-
I didn't manage to get it work — with every combination it prints errors about false tickers. wget answer below does work. – Hi-Angel Jul 28 '16 at 07:20
-
Have been working it out on a Centos6.9 machine but no joy. This seems more healthy than other recommendations but it is not trivial to get it working... – Alfabravo Aug 16 '18 at 19:14
-
`tlsdate` worked really well behind a proxy. But for Ubuntu, [the only available package is for Xenial 16.04](https://packages.ubuntu.com/search?keywords=tlsdate&searchon=names). It seems to be a dead project since the last commit was in 2015. As an alternative, try `htpdate` https://superuser.com/questions/307158/how-to-use-ntpdate-behind-a-proxy/1259754#1259754 – wisbucky Jan 29 '21 at 18:49
One Liner
Assuming environment variable http_proxy is already set:
sudo date -s "$(curl -H'Cache-Control:no-cache' -sI google.com | grep '^Date:' | cut -d' ' -f3-6)Z"
we can verify the retrieved date/time first:
# local date/time
date -d "$(curl -HCache-Control:no-cache -sI google.com | grep '^Date:' | cut -d' ' -f3-6)Z"
# or UTC date/time
date -ud "$(curl -HCache-Control:no-cache -sI google.com | grep '^Date:' | cut -d' ' -f3-6)"
Notes
Just in case, certain options might be needed for curl:
curl -x $proxyto explicitly set the proxy server to use, when the
http_proxyenvironment variable is not set, default to protocolhttpand port1080(manual).curl -H 'Cache-Control: no-cache'to explicitly disable caching, especially when used in a cron job and/or behind a proxy server.
Alternate form tested with RHEL 6 that uses the '-u' option to date instead of appending the "Z" to the output:
sudo date -u --set="$(curl -H 'Cache-Control: no-cache' -sD - http://google.com |grep '^Date:' |cut -d' ' -f3-6)"
BTW, google.com is preferred over www.google.com, because the former results in a 301 redirect response, which is much smaller (569 vs 20k+ characters) but still good to use.
- 909
- 1
- 9
- 15
-
`sudo date -s "$(wget -qSO- --max-redirect=0 google.com 2>&1 | grep Date: | cut -d' ' -f5-8)Z"` – ryenus Sep 29 '14 at 06:32
-
^ above is the `wget` version, though I personally prefer using `curl`. – ryenus Sep 29 '14 at 06:35
-
2Passing unsanitized data from internet as a variable to a sudo invocation? Is it 1999? – dfc Sep 29 '14 at 08:16
-
2
-
-
zsh doesn't like the grep pattern without quotes around it; it results in `(23) Failed writing body` error. So when using zsh, use `sudo date -s "$(curl -sD - google.com | grep '^Date:' | cut -d' ' -f3-6)Z"` instead. There is probably a ZSH configuration modifier that changes this behavior, but I don't know what it is. Also, since we're talking about behind a proxy use, `google.com` seems to be cached by some proxies (being a 301 redirect) while `www.google.com`, being the live page, gets reloaded every time (and so its timestamp is accurate). – Ville May 05 '15 at 17:25
-
For a fully-working pre-baked implementation, see [set_system_clock_from_google.sh](https://gist.github.com/jaytaylor/60c8a4e22431c4271200cab68186deb7). – Jay Taylor Aug 30 '18 at 18:47
NTP service is using UDP protocol to sync the time. So HTTP/TCP proxy may not work for it. Alternative to accepted answer, there is a good htpdate tool to sync time behind proxy.
A cron job example:
* 3 * * * /usr/bin/htpdate -s -P <PROXY_HOST>:<PROXY__PORT> www.linux.org www.freebsd.org
- 191
- 1
- 4
If it is purely an HTTP proxy, it is using port 80, so the basic answer is no to that specifically. NTP uses UDP port 123. If it is a more generic proxy server, serving all ports, then maybe.
There are some programs out there that do NTP over HTTP. I do not use Linux, but this one might do it:
http://www.rkeene.org/oss/htp/ (still not sure if this will do authentication either).
I could not find one for Windows, but I will post back if I do.
- 25,519
- 5
- 48
- 72
-
Again for Linux, so I cannot add much other than a link: http://mina86.com/2010/01/16/ntp-over-http/ There might also be something that one of these publishes: http://www.nist.gov/pml/div688/grp40/softwarelist.cfm – KCotreau Jul 06 '11 at 17:12
-
A quick and dirty solution for people behind a http proxy server:
My location is GMT+4, I can check out the current time from timeapi server with url http://www.timeapi.org/utc/in+four+hours, for more info pls checkout the website for your location.
To setup date & time I do:
time sudo date $(wget -O - "http://www.timeapi.org/utc/in+four+hours" 2>/dev/null | sed s/[-T:+]/\ /g | awk '{print $2,$3,$4,$5,".",$6}' | tr -d " " )
You can repeat the command if the initial 'time' command reports a high value...
- 51
- 1
- 1
-
Thanks for the tip, I got it even easier: `sudo date -s "$(curl -s http://www.timeapi.org/utc/now)"` You don't need to pay attention to the timezone if your OS is set correctly. Linux recognizes the timezone provided in the string and sets the system time appropriately. – Melebius Apr 15 '14 at 06:12
Although ntp over http has been mentioned, I am surprised that nobody mentioned the nifty little utility htpdate as available on http://www.vervest.org/htp/. Unlike the alternatives, htpdate is part of Debian's and Ubuntu's default repositories and can be installed using apt-get.
It can be run both as an ordinary command or silently in daemon mode.
- 121
- 3
Assuming the http_proxy environment variable is set:
wget -S --spider "http://www.google.com/" 2>&1 | grep -E '^[[:space:]]*[dD]ate:' | sed 's/^[[:space:]]*[dD]ate:[[:space:]]*//'
Or use curl -I --proxy="..." "http://www.google.com/"
After all, if Google's site doesn't have its time set there's no hope.
Expanding on https://superuser.com/a/509620/362156
Let's assume you're in Berlin (Germany).
Then use this:
sudo TZ=Europe/Berlin date -s "$(TZ=Europe/Berlin date --date='TZ="UTC" '"$(wget -S "http://www.google.com/" 2>&1 | grep -E '^[[:space:]]*[dD]ate:' | sed 's/^[[:space:]]*[dD]ate:[[:space:]]*//' | head -1l | awk '{print $1, $3, $2, $5 , $6, $4 }' | sed 's/,//')")"
-
You should explain what is different in your solution in comparison to the answer by fiford_g. – pabouk - Ukraine stay strong Aug 27 '14 at 13:43
For a fully-working pre-baked implementation of @ryenus' excellent answer, check out set_system_clock_from_google.sh.
- 231
- 4
- 9
I do this on a raspi which is on a private LAN without network access, without a true proxy, but where I have a server which has another reliable internet connection on a corporate network, that I can at least ssh into from the raspi.
There are three 'setup' steps, then a couple more to actually set the time:
Have had the raspi where it can temporarily access the internet (I used a personal hotspot on my phone)
- while online:
sudo apt install proxychains - after this completes, you can take it back offline, and back onto the isolated network.
- while online:
echo 'socks5 127.0.0.1 17471' | sudo tee -a /etc/proxychains.confMake yourself a handy script for the ssh connection:
cat << EOF > startproxy.sh
#!/bin/bash
F=~/.ssh/ssh_socket_for_proxyhains
if [ -f $F ]; then
killall ssh
rm $F
fi
ssh -f -NT -M -S ~/.ssh/ssh_socket_for_proxychains -D 17471 user@server
EOF
chmod +x startproxy.sh
- if you change
17471, change it in both places. - need to do the above only once, remaining steps can be redone
start it:
./startproxy.sh.- Should just seem to die quietly. But ssh should now show up in
ps xor so.
- Should just seem to die quietly. But ssh should now show up in
check proxychains is working, eg:
sudo proxychains apt update(yes, you can update and install stuff like this too).
Then check you can get a clean date UTC with:
sudo proxychains 2>/dev/null curl -H'Cache-Control:no-cache' -sI google.com | grep '^Date:' | cut -d' ' -f3 -6 | tail -n 1
Assuming that spits out something sensible, set your date with:
sudo date -s "$(sudo proxychains 2>/dev/null curl -H'Cache-Control:no-cache' -sI google.com | grep '^Date:' | cut -d' ' -f3-6 | tail -n 1 )Z"
Note the extra
Zon the end: Otherwise your date will probably be set wrong, since this tellsdate -sthat it's a UTC time, and it will otherwise assume it's a local time.You should probably kill that ssh process when you're done, each time you use it also.
You don't need
serverto be running a proxy - just be able to be reached via ssh, and itself have internet access.You can do all of the above having connected to the raspi via ssh from somewhere else, makes no difference. You might even have ssh'd into the server, and from there into the raspi.
- 216
- 2
- 2