NTP客户端设置

第一步,安装NTP

yum install ntp

第二步,修改ntp.conf配置文件

vi /etc/ntp.conf

配置如下:

server 10.255.255.254    #设置为你的NTP服务器IP地址
server 1.centos.pool.ntp.org
server 2.centos.pool.ntp.org
server 3.centos.pool.ntp.org
server 4.centos.pool.ntp.org

第三步,关闭/开启/重启NTP服务:

service ntpd stop    #关闭
service ntpd start    #开启
service ntpd restart    #重启

查看NTP运行状况:

[root@ERP01 etc]# ntpstat
synchronised to local net at stratum 6
   time correct to within 949 ms
   polling server every 64 s

查看NTP连接情况:

[root@ERP01 etc]# ntpq -p
     remote           refid      st t when poll reach   delay   offset  jitter
==============================================================================
*10.255.255.254  203.107.6.88     3 u  125  128  377    0.315    0.281   0.686
 LOCAL(0)        .LOCL.           5 l 1071   64    0    0.000    0.000   0.000

第五步,设置开机启动服务:

chkconfig ntpd on


 

你可能感兴趣的:(Linux,NTP,Linux,客户端,ntpd)