NTP原理以及使用
阿新 • • 發佈:2017-08-05
計算機 協議 tps 授權 linux del 地址 安裝 trap
1.網絡時間
2.NTP服務器自己的時間 2.NTP架構 C/S
二、部署NTP服務端
1.NTP安裝
restrict 127.0.0.1
表示當前主機可以使用這個時間服務
restrict 172.16.1.0 mask 255.255.255.0
表示授權172.16.1網絡中的全部主機可以使用時間服務
restrict 0.0.0.0 mask 0.0.0.0 nomodify
notrao 表示所有主機都可以訪問這個時間服務
restrict efault ignore 設置默認策略,允許任意主機進行時間同步
2)server 表示當前NTP服務從哪個主機來獲取時間 默認的ntp地址 server 0.centos.pool.ntp.org iburst server 1.centos.pool.ntp.org iburst server 2.centos.pool.ntp.org iburst server 3.centos.pool.ntp.org iburst 常用的ntp地址
server ntp1.aliyun.com
#→阿裏雲時間服務器(ntp1...21等)
server time.nist.gov #→微軟時間服務器
3)fudge 設置你的ntp優先級
4)statsdir logfile
指定日誌文件的位置
3.修改NTP配置文件
【此例使用ntp本機時間作為時間源】
啟動ntp會報錯:
一、NTP簡介
1.NTP簡介
NTP(Network Time Protocol,網絡時間協議)是用來使網絡中的各個計算機時間同步的一種協議。它的用途是把計算機的時鐘同步到世界協調時UTC,其精度在局域網內可達0.1ms,在互聯網上絕大多數的地方其精度可以達到1-50ms。(1s=1000ms) NTP服務器就是利用NTP協議提供時間同步服務的。
2.NTP原理 NTP客戶端可以定時自動向NTP服務器發送請求來獲取時間,NTP服務器將時間發送給客戶端,。 NTP服務器的時間來源有兩個1.網絡時間
2.NTP服務器自己的時間 2.NTP架構 C/S
1.NTP安裝
[[email protected] ~]# yum install ntp -y
restrict efault ignore 設置默認策略,允許任意主機進行時間同步
2)server 表示當前NTP服務從哪個主機來獲取時間 默認的ntp地址 server 0.centos.pool.ntp.org iburst server 1.centos.pool.ntp.org iburst server 2.centos.pool.ntp.org iburst server 3.centos.pool.ntp.org iburst 常用的ntp地址
【此例使用ntp本機時間作為時間源】
[[email protected] ~]# cd /etc/
[[email protected] etc]# mv ntp.conf ntp.conf.bak
[[email protected] etc]#cat > ntp.conf<<eof
server 127.127.1.0
restrict 127.0.0.1
restrict 10.0.0.0 mask 255.255.255.0
fudge 127.127.1.1 startnum 10
statsdir /var/log/ntp/
logfile /var/log/ntp/ntp.log
eof
[[email protected] etc]# ntpq -p
remote refid st t when poll reach delay offset jitter
==============================================================================
*LOCAL(0) .LOCL. 5 l 1 64 1 0.000 0.000 0.000
[[email protected] etc]# ntpstat
synchronised to local net at stratum 6
time correct to within 7948 ms
polling server every 64 s
啟動ntp會報錯:
[[email protected] ~]# yum install ntpdate
[[email protected] ~]# crontab -e
*/5 * * * * /usr/sbin/ntpdate 10.0.0.7 >/dev/null 2>&1
NTP原理以及使用