设置NTP服务器以允许本地计算机同步到Linux

前端之家收集整理的这篇文章主要介绍了设置NTP服务器以允许本地计算机同步到Linux前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试设置一台机器作为ntp服务器,其他本地机器将与其同步.无论ntp服务器机器是否连接到互联网,都需要这样做,即:时间是否正确并且机器彼此同步并不重要.

我的配置文件如下:

NTP服务器/etc/ntp.conf

driftfile /var/lib/ntp/ntp.drift

server 0.pool.ntp.org iburst
server 1.pool.ntp.org iburst
server 2.pool.ntp.org iburst
server 127.127.1.0
fudge 127.127.1.0 stratum 10

restrict -4 default kod notrap nomodify nopeer noquery
restrict -6 default kod notrap nomodify nopeer noquery

restrict 127.0.0.1
restrict ::1

NTP客户端/etc/ntp.conf

driftfile /var/lib/ntp/ntp.drift

server 192.168.1.146 iburst

restrict -4 default kod notrap nomodify nopeer noquery
restrict -6 default kod notrap nomodify nopeer noquery

restrict 127.0.0.1
restrict ::1

我改变了服务器上的时间
然后我用sudo /etc/init.d/ntp start运行ntp服务器
并尝试测试客户端可以使用sudo ntpdate 192.168.1.146接收ntp更新

这是有效的,但只有在连接到Internet时(即使主设备的时间由我的命令设置而不是从外部ntp服务器设置).

我的配置文件中有什么错误吗?我失踪的任何一步?

解决方法

在一段时间之后,我提供了一个详细的答案,说明我们如何在数据中心完成您的工作.自从我发帖以来没有太大变化.

链接到帖子:

Using NTP to sync a group of linux servers to a common time source

原文链接:https://www.f2er.com/linux/395994.html

猜你在找的Linux相关文章