2014/12/30

CentOS 6.5 NTP Server

#安裝ntp server
yum install -y ntp

#編輯配置檔案
vim /etc/ntp.conf

#允許該網段校正時間
restrict 172.16.195.0 mask 255.255.255.0 nomodify

#防火牆規則
iptables -A INPUT -i $EXTIF -p udp -s 172.16.195.0/24 --dport 123 -j ACCEPT

執行結果:

更新成功:

設定檔為
restrict 172.16.195.0 mask 255.255.255.0 nomodify

更新失敗:
設定檔為
restrict 172.16.195.0 mask 255.255.255.0 nomodify


更新失敗:
設定檔為
restrict 172.16.195.0 mask 255.255.255.0 notrap



參考資料:
http://linux.vbird.org/linux_server/0440ntp.php#ntpdate