CentOS搭建ntp时间服务器
1、安装时间服务器ntp
# yum install -y ntp
2、配置ntp
代码如下:
#cat /etc/ntp.conf |awk '{if($0 !~ /^$/ && $0 !~ /^#/) {print $0}}'
restrict default ignore #默认不允许修改或者查询ntp,并且不接收特殊封包
restrict 127.0.0.1 #给于本机所有权限
restrict 192.168.88.0 mask 255.255.255.0 notrap nomodify #给于局域网机的机器有同步时间的权限
server time.nist.gov prefer #设置时间服务器,加prefer表示优先
server 0.asia.pool.ntp.org
server 1.asia.pool.ntp.org
server 2.asia.pool.ntp.org
server 127.127.1.0 # local clock
fudge 127.127.1.0 stratum 10
driftfile /var/lib/ntp/drift
keys /etc/ntp/keys
3、启动 ntp
#/etc/init.d/ntpd start
4、查看并测试
代码如下:
#netstat -upnl |grep ntpd //查看时程
# ntpq -pn //查看同步的服务器IP
remote refid st t when poll reach delay offset jitter
==============================================================================
216.229.0.179 .INIT. 16 u - 64 0 0.000 0.000 0.000
203.158.118.2 .INIT. 16 u - 64 0 0.000 0.000 0.000
150.95.148.140 .INIT. 16 u - 64 0 0.000 0.000 0.000
46.19.96.19 .INIT. 16 u - 64 0 0.000 0.000 0.000
*127.127.1.0 .LOCL. 5 l 1 64 3 0.000 0.000 0.000
**remote:即NTP主机的IP或主机名称。注意最左边的符号,如果由“+”则代表目前正在作用钟的上层NTP,如果是“*”则表示也有连上线,不过是作为次要联机的NTP主机。
refid:参考的上一层NTP主机的地址
st:即stratum阶层
when:几秒前曾做过时间同步更新的操作
poll:下次更新在几秒之后
reach:已经向上层NTP服务器要求更新的次数
delay:网络传输过程钟延迟的时间
offset:时间补偿的结果
jitter:Linux系统时间与BIOS硬件时间的差异时间 **
# ntpstat //同步的结果
synchronised to local net at stratum 6
time correct to within 3948 ms
polling server every 64 s