快速建ntp服务器

1、服务器配置

vim  /etc/ntp.conf

在restrict default nomodify notrap noquery(默认拒绝所有客户端的时间同步)之后增加一行:
restrict 192.168.3.0 mask 255.255.255.0 nomodify
标准时间服务器:

server ntp.api.bz
server 0.centos.pool.ntp.org
server 1.centos.pool.ntp.org
server 2.centos.pool.ntp.org

service ntpd restart

2 客户同步

/sbin/ntpdate 192.168.3.50

错误1:no server suitable for synchronization foun

server上:watch ntpq -p,ntpdate -d ip等命令进行调试。

本文出自 “风云的博客” 博客,转载请与作者联系!

你可能感兴趣的:(ntp,NTP服务器,时间同步服务器)