Eu preciso sincronizar permanentemente os servidores NTP com os servidores AWS da Amazon, então minha solicitação para os servidores deles não passa por Awry. Consegui (temporariamente) fazer as seguintes edições no meu arquivo ntp.conf
:
# Specify one or more NTP servers.
# Use servers from the NTP Pool Project. Approved by Ubuntu Technical Board
# on 2011-02-08 (LP: #104525). See http://www.pool.ntp.org/join.html for
# more information.
#pool 0.ubuntu.pool.ntp.org iburst
#pool 1.ubuntu.pool.ntp.org iburst
#pool 2.ubuntu.pool.ntp.org iburst
#pool 3.ubuntu.pool.ntp.org iburst
server 0.amazon.pool.ntp.org iburst
server 1.amazon.pool.ntp.org iburst
server 2.amazon.pool.ntp.org iburst
server 3.amazon.pool.ntp.org iburst
Agora, após um recarregamento do meu sistema e comparando o tempo do servidor do Amazon e o tempo do meu servidor, Tudo é bem-sucedido:
vagrant@homestead:~$ curl http://s3.amazonaws.com -v
* Connected to s3.amazonaws.com port 80 (#0)
> GET / HTTP/1.1
> Host: s3.amazonaws.com
< Date: Wed, 23 May 2018 04:53:06 GMT
< Location: https://aws.amazon.com/s3/
vagrant@homestead:~$ timedatectl status
Local time: Wed 2018-05-23 04:54:04 GMT
Universal time: Wed 2018-05-23 04:54:04 UTC
RTC time: Wed 2018-05-23 04:54:02
Time zone: Etc/GMT (GMT, +0000)
Network time on: no
NTP synchronized: no
RTC in local TZ: no
No entanto, após cerca de meia hora, depois de verificar novamente timedatectl
, o parâmetro NTP synchronized
é invertido para sim e o meu tempo cai completamente de novo ... Como posso parar permanentemente isso?