实验环境:RHEL6.0
端口:123
中国授时中心服务器IP:210.72.145.44
 
 
#yum install ntp tzdata  -y
 
#vim /etc/ntp.conf
*********************************************************************************************************
driftfile /var/lib/ntp/drift
 
restrict default kod nomodify notrap nopeer noquery
restrict -6 default kod nomodify notrap nopeer noquery
restrict 202.120.2.101
#时间服务器1
restrict 220.130.158.71
#时间服务器2
restrict 127.0.0.1
restrict -6 ::1
restrict 192.168.0.0 mask 255.255.255.0 nomodify(对内网开放ntp服务,且内网用户不能修改ntp服务器的时间)
 
server 202.120.2.101 prefer
#服务器优先级
server 220.130.158.71
 
includefile /etc/ntp/crypto/pw
keys /etc/ntp/keys
*********************************************************************************************************
 
#/etc/init.d/ntpd start
#netstat -tulnp|grep ntp    (开放了123端口)
 
#ntpstat(查看与上层ntp服务器的连接状况,一般启动ntp服务后15~60分钟才会同步)
 
 
客户端配置:
#yum install ntp -y
 
#ntpdate 192.168.0.1 (手动同步ntp服务器时间)
#vim /etc/ntp.conf
***********************************************************************************************************
添加:
restrict 192.168.0.1
server
192.168.0.1
***********************************************************************************************************
#/etc/init.d/ntpd start(启动ntp服务即客户端就可以与ntp服务器同步时间了,但是!ntpd与ntpdate不能同时启动)
 
 
注:
更改时区步骤:1.# vim /etc/sysconfig/clock(将时区设置成自己想要的时区_America/New_York)
     2.# cp /usr/share/zoneinfo/America/New_York /etc/localtime(将时区文件copy到/etc/localtime中)
#date(显示软件时间)
#hwclock(显示硬件时间)
#hwclock -w (使硬件时间与软件时间同步)