Chinaunix首页 | 论坛 | 博客
  • 博客访问: 234870
  • 博文数量: 57
  • 博客积分: 1149
  • 博客等级: 少尉
  • 技术积分: 584
  • 用 户 组: 普通用户
  • 注册时间: 2011-10-29 11:35
文章分类

全部博文(57)

文章存档

2016年(1)

2014年(1)

2013年(2)

2012年(27)

2011年(26)

分类: LINUX

2011-11-01 13:41:56

1,检查是否安装。在Rhel5上默认是安装的。
[root@zxclinux ~]# rpm -q ntp
ntp-4.2.2p1-7.el5
2.编辑配置文件/etc/ntp.conf
restrict default kod nomodify notrap nopeer noquery
限制其他计算机查询。修改
restrict 127.0.0.1
开放本机内部接口,用于反馈
restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap
开放这个网段,不能修改
server 0.rhel.pool.ntp.org
server 1.rhel.pool.ntp.org
server 2.rhel.pool.ntp.org
这些是网络中真正服务器!
3.启动服务(最好关掉iptable,使用udp123端口)
Service ntpd start
chkconfig --levels 3 ntpd on
chconfig --list ntpd
ntpd            0:关闭 1:关闭 2:关闭 3:启用 4:关闭 5:启用 6:关
设置开机启动。
4.测试
修改网络时间date MMDDhhmmYYYY.ss
ntpq –p检查NTP服务器同步状态
[root@zxclinux ~]# ntpq -p
     remote           refid      st t when poll reach   delay   offset jitter
61.129.66.79    216.218.192.202 2 u   21   64    3   36.800 75527.0 25.918
158.43.128.66    3 u   20   64    3   57.995 75497.6 46.614
211.166.12.46   218.75.4.130     3 u   17   64    3   52.094 75534.2 56.985
LOCAL(0)        .LOCL.          10 l   17   64    3    0.000    0.000   0.008
检查本地NTP服务器是否通过NTP校验
ntptrace 158.43.128.66
ntp1.pipex.net: stratum 2, offset -0.000026, synch distance 0.020605
ntp0.nl.uu.net: stratum 1, offset 0.000001, synch distance 0.000410, refid 'PPS'
如果stratum小于16.那么正常
 
vi /etc/ntp/step-tickers

加入一行

pool.ntp.org

这样每次ntpd启动时,会自动连接该国际标准时间服务器;

 

几个命令

#/usr/sbin/ntpdate -u 210.72.145.44 校对时间
#/usr/sbin/ntpdate -q 210.72.145.44 查询不更新
#hwclock --systohc  将机器硬件时钟同步为系统时钟

阅读(719) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~