NTP

service ntpd stop

ntpdate ntp.nimei.edu.cn

ntpq -p -n

ntpq -p

ntpq -d

watch ntpq -p

[root@bogon ~]# ntpq -p -n

remote refid st t when poll reach delay offset jitter

==============================================================================

+218.75.4.130 66.220.9.122 2 u 42 64 3 118.803 17.132 68.630

*202.112.31.197 .PPS. 1 u 35 64 7 63.094 4.830 77.302

+202.112.29.82 202.112.31.197 2 u 34 64 7 67.002 6.711 70.345

 
 

root@bogon ~]# ntpq -p

remote refid st t when poll reach delay offset jitter

==============================================================================

+218.75.4.130 127.67.113.92 2 u 14 64 67 66.252 -24.243 45.587

+ns2.vnet.sk 194.160.23.2 2 u 18 64 77 397.865 -17.536 12.293

*dns2.synet.edu. .PPS. 1 u 13 64 77 66.984 -6.045 46.869

remote :本地主机所连接的上层NTP服务器,最左边的符号如下:

如果有[*] 代表目前正在使用当中的上层NTP服务器。

如果有[+] 代表也有连上上层NTP服务器,可以作为提高时间更新的候选 NTP服务器。

refid :指的是给上层NTP服务器提供时间校对的服务器。

St:上层NTP服务器的级别。

When: 上一次与上层NTP服务器进行时间校对的时间(单位:s)

Poll :下一次本地主机与上层NTP服务器进行时间校对的时间(单位:s)

reach:已经向上层 NTP 服务器要求更新的次数

delay:网络传输过程当中延迟的时间,单位为 10^(-6) 秒

offset:时间补偿的结果,单位与 10^(-3) 秒

jitter:Linux 系统时间与 BIOS 硬件时间的差异时间, 单位为 10^(-6) 秒。

[root@bogon ~]# ntpstat

synchronised to NTP server (202.112.31.197) at stratum 2 #进行时间校对的NTP服务器。

time correct to within 97 ms #本地主机与上层NTP服务器的时间差

polling server every 128 s #下次同步时间。


客户端更新时间:

1. 借助crontab 更新时间

[root@s8-app-db-01 ~]# crontab -l |grep ntpdate

08 * * * * /usr/sbin/ntpdate 192.168.174. && /sbin/hwclock �Csystohc


利用restrict 来管理权限控制

Restrict [IP] mask [netmask_IP] [parameter]

Parameter 的参数主要如下:

u ignore :拒绝所有类型的NTP联机。

u nomodify: 客户端不能使用ntpc 与ntpq 这两个程序来修改服务器的时间参数,但客户端可透过这部主机来进行网络校时;

u noquery:客户端不能够使用ntpc 与ntpq 等指令来查询时间服务器,不提供NTP的网络校时。

u notrap:不提供trap 这个运程事件登入的功能。

u notrust:拒绝没有认证的客户端。

u Kod:kod技术可以阻止“Kiss of Death “包对服务器的破坏。

u Nopeer:不与其他同一层的NTP服务器进行时间同步。

利用server 设定上层NTP服务器,格式如下:

server [IP or hostname] [prefer]

perfer:表示优先级最高

burst :当一个运程NTP服务器可用时,向它发送一系列的并发包进行检测。

iburst :当一个运程NTP服务器不可用时,向它发送一系列的并发包进行检测。

注:默认情况小15分钟后才会与上层NTP服务器进行时间校对。.

# watch ntpq -p


出现画面:


Every 2.0s: ntpq -p Thu Jul 10 02:28:32 2008

remote refid st t when poll reach delay offset jitter

==============================================================================

192.168.30.22 LOCAL(0) 8 u 22 64 1 2.113 179133. 0.001

LOCAL(0) LOCAL(0) 10 l 21 64 1 0.000 0.000 0.001


注意LOCAL的这个就是与自身同步的ntp server。

注意reach这个值,在启动ntp server服务后,这个值就从0开始不断增加,当增加到17的时候,从0到17是5次的变更,每一次是poll的值的秒数,是64秒*5=320秒的时间。

如果之后从ntp客户端同步ntp server还失败的话,用ntpdate �Cd来查询详细错误信息,再做判断。


你可能感兴趣的:(服务器,service)