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

NTP服务器的搭建

时间:2014-06-26 06:37:17      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:default   配置文件   更新时间   服务器   计算机   


                                                              NTP服务器的搭建
NTP是时间服务器,可提供其它计算机进行同步更新时间,便每台计算机的时间相同,不会因为系统长时间运行而产生偏差。客户端也同样需要安装NTP服务。
1、安装NTP,
[root@server1 ~]# yum -y install ntp
2、修改主配置文件,默认是拒绝所有用户同步的,加入一条允许192.168.10.0网段可以同步

[root@server1 ~]# vim /etc/ntp.conf            
[root@server1 ~~]# grep -vE "^#|^$" /etc/ntp.conf
driftfile /var/lib/ntp/drift                //和上层NTP服务器的频率误差记录在此文件

restrict default kod nomodify notrap nopeer noquery                   //禁止所有地址同步时间,修改,查看
restrict -6 default kod nomodify notrap nopeer noquery                    //禁止IPV6所有地址同步时间,修改,查看
restrict 192.168.100.0 mask 255.255.255.0 nomodify              //加入允许192.168.100.0网段同步时间
restrict 127.0.0.1
restrict -6 ::1
server 0.rhel.pool.ntp.org                                        //指定时间校对的NTP服务器,优先级从上到下
server 1.rhel.pool.ntp.org
server 2.rhel.pool.ntp.org
includefile /etc/ntp/crypto/pw
keys /etc/ntp/keys

 

3、启动服务

[root@server1 ~]# service ntpd restart
[root@server1 ~]# chkconfig ntpd on

4、验证

 服务器端口

[root@ser1 ~]# netstat -aun |grep :123

udp        0      0 192.168.10.254:123    
    

 客户端

ntpdate 192.168.10.254                       客户与服务器同步     

 
5.自动更新,加入计划任务。

[root@ser1 ~]# crontab -e
0 10 * * * /sbin/ntpdate 192.168.10.254
0 10 * * * /sbin/hwclock --systohc
[root@ser1 ~]# service crond restart
[root@ser1 ~]# chkconfig crond on

ntpstat            显示NTP服务器的相关壮态
ntq                     启动标准的NTP查询
ntpdate        指定立即进行更新的服务器
注:ntpdate手动更新与ntp服务自动更新不能同时使用

 

NTP服务器的搭建,布布扣,bubuko.com

NTP服务器的搭建

标签:default   配置文件   更新时间   服务器   计算机   

原文地址:http://9054321.blog.51cto.com/9044321/1430946

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