码迷,mamicode.com
首页 > 其他好文 > 详细

Centos6系列搭建NTP时间服务器

时间:2015-01-01 23:56:30      阅读:400      评论:0      收藏:0      [点我收藏+]

标签:network   ntp   计算机   互联网   

        NTP(Network Time Protocol,网络时间协议)是用来使网络中的各个计算机时间同步的一种协议。它的用途是把计算机的时钟同步到世界协调时UTC,其精度在局域网内可达0.1ms,在互联网上绝大多数的地方其精度可以达到1-50ms。

        NTP官方站点:http://www.ntp.org/ ,NTP服务基于C/S(Client/Server)架构,每台机器既可以是NTPserver,也可以为NTPclient。

        在linux中有两种查看系统时间的方法:

date        #查看系统时间
hwclock     #查看硬件时间

技术分享        

实验环境:centos 6.6 (x86_64)*2
IP地址:
NTP server192.168.2.254
NTP client192.168.2.2

        在cenots中默认是没有安装NTPserver的我们需要手动安装,可使用RPM包安装、yum安装、编译安装,这里演示使用yum安装来达到快速完成的目的。

rpm -q ntp && yum install ntpd    #判断当前系统是否安装ntpd (server与client都需要安装)

        其主配置文件为/etc/ntp.conf,系统中还有一些别的目录是与时间相关的这里列一下。

/etc/sysconfig/clock设置本地时区的文件
/etc/localtime本地系统时间设定文件
/usr/share/zoneinfo/各个时区所对应的目录都在此目录下

        在搭建前首先与互联网上的时间服务器同步一下

cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime #设置为上海时间
ntpdate 202.112.31.197  #与互联网时间同步一下

技术分享

        接下来开始配置本地ntp时间服务器,打开配置文件/etc/ntp.conf,看下常用参数。

driftfile /var/lib/ntp/drift    #解决NTP服务器校准时间时的传送延迟,driftfile后只能跟普通文件,不能为链接文件或其他文件。
restrict default kod nomodify notrap nopeer noquery    #拒绝IPV4客户端向此服务器发起同步时间请求
restrict -6 default kod nomodify notrap nopeer noquery #拒绝IPV6客户端向此服务器发起同步时间请求
restrict 127.0.0.1  ######
restrict -6 ::1     ######这两个参数为进允许本机访问
server 0.centos.pool.ntp.org iburst    ##指定上级的时间服务器这些都为NTP安装好后默认的

        设置下内网客户端也可以向此服务器发起同步请求:

restrict 192.168.2.0 mask 255.255.255.0 nomodify

       将软件安装完成后的时间服务器注释掉,添加刚才手动同步的地址

#server 0.centos.pool.ntp.org iburst
#server 1.centos.pool.ntp.org iburst
#server 2.centos.pool.ntp.org iburst
#server 3.centos.pool.ntp.org iburst
server 202.112.31.197

技术分享

        这样NTPserver就已经搭建好了,使用service ntpd start启动ntp server

        接下来配置客户端,将原来的server注释掉然后添加一行sever然后启动即可完成

#server 0.centos.pool.ntp.org iburst
#server 1.centos.pool.ntp.org iburst
#server 2.centos.pool.ntp.org iburst
#server 3.centos.pool.ntp.org iburst
server 192.168.2.254

        然后启动ntpd即可让服务器自动同步时间,如果需要开机启动的话使用chkconfig ntpd on即可,如果在client上手动同步时间出现"no server suitable for synchronzization found "的错误,则在server端中加入如下内容,然后重启服务再次同步。

server 127.127.1.1
fduge 127.127.0.1 stratum 10 refid NIST

本文出自 “Yxn” 博客,请务必保留此出处http://jyxnt.blog.51cto.com/9581167/1598324

Centos6系列搭建NTP时间服务器

标签:network   ntp   计算机   互联网   

原文地址:http://jyxnt.blog.51cto.com/9581167/1598324

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!