> CentOS > CentOS教程 >

CentOS 5设置NTP服务器

CentOS 5设置NTP服务器
 
方法/步骤
 
确认已经ntp程序包:# yum install ntp
 
配置时间源# vi /etc/ntp.conf server time.lib.tsinghua.edu.cn server 0.pool.ntp.org server 1.pool.ntp.org server 2.pool.ntp.org
 
配置是否为其他PC提供时间服务# vi /etc/ntp.conf restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap
 
配置开机时自动运行时间服务# chkconfig ntpd on
启动或停止时间服务# service ntpd start # service ntpd stop # service ntpd restart
 
验证ntp服务已经运行# pgrep ntpd
 
初始同步# ntpdate -u time.lib.tsinghua.edu.cn
 
确认同步成功# ntpq -p
 
如果要提供时间服务,还必须相应的设置iptable防火墙的配置。CentOS的时间服务使用udp 123端口。
(责任编辑:IT)