1、實驗環境:
系統:CentOS 7.0
軟件版本:ntp-4.2

2、安裝步驟:
a、首先打開防火牆,放行UDP 123(NTP默認端口)端口
firewall-cmd --permanent --add-port=123/udp firewall-cmd --reload
b、安裝ntp:
yum –y install ntp
c、配置ntp服務
vi /etc/ntp.conf
主要修改
(1)、restrict 192.168.6.2 mask 255.255.255.0 nomodify notrap //集群所在網段的網關(Gateway),子網掩碼(Genmask),如果是多外開放,按下圖所示,0.0.0.0 允許所有。
(2)、server ntpupdate.tencentyun.com iburst 增加上層ntp校准節點
eg:


d、重啟服務,並查看狀態,及測試。
systemctl restart ntpd
systemctl enable ntpd
查看狀態:ntpstat

查看ntp服務器與上層ntp的狀態

測試:ntpdate *****(你的ntp服務器地址或域名)

