Reconfigure seus clientes ntp
para usar o novo servidor em /etc/ntp.conf
.
Use a diretiva server
para apontar para o novo servidor NTP e, no lado do servidor, certifique-se de que os clientes sejam aceitos.
Um exemplo usando autenticação:
- Lado do servidor:
discard average 3 minimum 1 monitor restrict default nomodify notrap nopeer noquery limited kod restrict 127.0.0.1 #this one does not use auth restrict some.server.com mask 255.255.255.0 nomodify notrap nopeer noquery #this subnets use auth restrict 172.22.197.0 mask 255.255.255.0 nomodify notrap nopeer limited kod notrust restrict 172.22.249.0 mask 255.255.255.0 nomodify notrap nopeer limited kod notrust restrict 172.22.248.128 mask 255.255.255.192 nomodify notrap nopeer limited kod notrust server server.up.the.hierarchy.com iburst #fallback local NTP server 127.127.1.0 fudge 127.127.1.0 stratum 20 tos orphan 17 crypto pw supersecretpassword crypto randfile /dev/urandom keysdir /etc/ntp driftfile /var/lib/ntp/drift
- Lado do cliente:
server my.new.ntp.server.com autokey #fallback local NTP server 127.127.1.0 fudge 127.127.1.0 stratum 10 driftfile /var/lib/ntp/drift crypto pw supersecretpassword crypto randfile /dev/urandom keysdir /etc/ntp tinker panic 0
Reinicie o daemon ntp
em seus clientes. Você pode querer adicionar o -g
para forçar a sincronização inicial.