停止轮询硬编码Debian时间服务器的时间同步

时间:2017-03-29 12:32:40

标签: linux debian systemd ntp

systemd-timesyncd 守护程序反复尝试联系以下硬编码(已编译)时间服务器,如果既未手动指定NTP服务器也未通过DHCP接收到该服务器:

0.debian.pool.ntp.org
1.debian.pool.ntp.org
2.debian.pool.ntp.org
3.debian.pool.ntp.org

由于我在公司代理服务器后面运营,因此无法成功访问这些服务器。有没有办法防止这种毫无意义的轮询(没有重新编译)?

2 个答案:

答案 0 :(得分:1)

如果您不允许联系任何要同步的NTP服务器,请禁用执行此操作的服务:

 systemctl stop systemd-timesyncd
 systemctl disable systemd-timesyncd

第一个命令将立即停止服务。第二个将阻止它在下次启动时重新启动。

答案 1 :(得分:1)

您可以(现在)configure timesyncd/etc/systemd/timesyncd.conf中使用另一个NTP服务器:

NTP=your_corporate_internal_time_server

大多数公司网络都具有其中之一,尤其是在阻止ntp流量时。 通常类似于time.corp_domain.com或ntp.corp_domain.com。