Sync date & time behind a proxy
person cloud · link
Last update
2026-03-06
2026
03-06
« — »

/root/ntp-proxy.sh

1
2
3
4
#!/bin/bash
http_proxy=http://xxx:yyy
https_proxy=http://xxx:yyy
date -s "$(curl -H'Cache-Control:no-cache' -sI https://reachable-site.com | grep -i '^Date:' | cut -d' ' -f3-6)Z"

root crontab

1
2
# m h  dom mon dow   command
  0 8    *   *   *   /root/ntp-proxy.sh > /dev/null 2>&1

Source: superuser.com