我有两个系统一个充当主要/活动并且具有Internet连接并从NTP服务器获取时间。第二个系统是Secondary / Passive,与外部世界无关。
主要和辅助连接在专用网络接口eth1上。 主要有IP 169.254.10.10子网:255.255.255.248广播:169.254.10.15 次要有IP 169.254.10.11子网:255.255.255.248广播:169.254.10.15
Primary具有以下ntp.conf配置
driftfile /var/lib/ntp/ntp.drift statistics loopstats peerstats clockstats filegen loopstats file loopstats type day enable filegen peerstats file peerstats type day enable filegen clockstats file clockstats type day enable server 91.189.94.4 restrict -4 default kod notrap nomodify nopeer noquery restrict -6 default kod notrap nomodify nopeer noquery restrict 127.0.0.1 restrict ::1 restrict 169.254.10.0 mask 255.255.255.248 broadcast 169.254.10.15 disable auth broadcastclient
我在辅助节点上仅使用ntpdate同步时间,并且不在辅助节点上运行ntpd守护程序。 在辅助i上运行ntpdate -b -t 4 -p 4 -u 169.254.10.10(主接口IP) Ntpd服务器正在Primary上运行,具有上述配置。
辅助节点上的时间未更新并引发错误 ntpdate [3636]:没有适合发现同步的服务器
由于 VISU