我在一个集群中有几个离线节点。我希望同步它们的时间,因此我将其中一个节点配置为NTP服务器。
这是我的NTP服务器的配置文件:
# node's ip:192.168.17.11
driftfile /etc/ntp.drift
server 192.168.17.11
fudge 192.168.17.11 stratum 1
restrict 192.168.17.0 mask 255.255.255.0 nomodify notrap
restrict -4 default kod notrap nomodify nopeer noquery
问题是其他机器无法将它们的时间与这台机器同步。此配置文件是否可用作NTP服务器?
谢谢你,艾丽
发布于 2012-08-08 02:17:09
如果使用127.0.0.1作为服务器IP,则不允许LAN中的其他计算机与NTP服务器通信。
尝试通过配置文件中服务器的LAN IP更改127.0.0.1。
https://stackoverflow.com/questions/11851653
复制相似问题