centos 部署ntp服务器
1 检查能否已经安装ntp
# rpm -qa|grep ntp
ntp-4.2.4p8-2.el6.centos.i686
2 配置ntp.conf
# vim /etc/ntp.conf
需要修改以下几项:
restrict:表示设置用户端连接到本NTP服务器的权限
其规则为:restrict ip mask netmask_ip parameter
其中IP 能是地址位,也能是default;parameter有以下选项:
ignore:关闭所有的NTP链接服务
nomodify:表示client不可以更改server端的参数信息
notrust:该client除非通过认证,否则该用户端的来源将被视为不信任网域
noquery:不提供用户端的时间查询
server:
表示设置本NTP服务器连接到远程NTP服务器的地址
server 127.127.1.0
fudge 127.127.1.0 stratum 10
以上两行表示假如server指定的服务器连接失败,则采使用本地的时间来同步时间
配置日志:
statsdir /var/log/ntp/
logfile /var/log/ntp/ntp.log
本文做了简单的配置,内容如下:
driftfile /var/lib/ntp/drift
restrict 127.0.0.1
restrict 192.168.0.0 mask 255.255.255.0 nomodify notrap
server 210.72.145.44 prefer
server 133.100.11.8
server 0.asia.pool.ntp.org
server 2.asia.pool.ntp.org
server 1.asia.pool.ntp.org
server 127.127.1.0 # local clock
fudge 127.127.1.0 stratum 8
includefile /etc/ntp/crypto/pw
keys /etc/ntp/keys
statsdir /var/log/ntp/
logfile /var/log/ntp/ntp.log
3. 启动ntp
# mkdir -p /var/log/ntp && touch /var/log/ntp/ntp.log
# chkconfig ntpd on
# service ntpd start
4. 用户端测试
通过linux用户端测试ntp server
# ntpdate 192.168.0.4
5 Aug 15:43:22 ntpdate[30958]: adjust time server 192.168.0.4 offset 0.000576 sec
当出现以上信息表示成功配置ntp server
注意: 假如ntp刚启动起来,在用户端同步的时候会出现 no server suitable for synchronization found 的错误提醒,这是由于ntp server 刚启动起来,还没有和上级ntp获得同步,大概过5分钟左右再在用户端上同步,可得到正确信息.
1. 本站所有资源来源于用户上传和网络,如有侵权请邮件联系站长!
2. 分享目的仅供大家学习和交流,您必须在下载后24小时内删除!
3. 不得使用于非法商业用途,不得违反国家法律。否则后果自负!
4. 本站提供的源码、模板、插件等等其他资源,都不包含技术服务请大家谅解!
5. 如有链接无法下载、失效或广告,请联系管理员处理!
6. 本站资源售价只是摆设,本站源码仅提供给会员学习使用!
7. 如遇到加密压缩包,请使用360解压,如遇到无法解压的请联系管理员
开心源码网 » centos 部署ntp服务器