第1章 ntp 1.1 ntp簡介 NTP(Network Time Protocol,網路時間協議)是用來使網路中的各個電腦時間同步的一種協議。它的用途是把電腦的時鐘同步到世界協調時UTC,其精度在區域網內可達0.1ms,在互聯網上絕大多數的地方其精度可以達到1-50ms。 1.2 ntp服務 ...
第1章 ntp
1.1 ntp簡介
NTP(Network Time Protocol,網路時間協議)是用來使網路中的各個電腦時間同步的一種協議。它的用途是把電腦的時鐘同步到世界協調時UTC,其精度在區域網內可達0.1ms,在互聯網上絕大多數的地方其精度可以達到1-50ms。
1.2 ntp服務端部署
1.2.1 環境說明 使用系統:CentOS 7.4 (CentOS6自帶 CentOS7需要安裝的) ip地址: 外網-10.0.0.62 內網-172.16.1.62 1.2.2 安裝ntp yum -y install ntp 1.2.3 修改配置文件 vim /etc/ntp.conf #添加 restrict 172.16.1.0 mask 255.255.255.0 nomodify notrap server ntp1.aliyun.com 1.2.4 啟動 systemctl start ntpd #啟動 systemctl status ntpd #查看狀態 [root@m02 ~]# ntpstat #查看是否正常 synchronised (同步的) to NTP server (5.79.108.34) at stratum 3 time correct to within 1230 ms polling server every 64 s
1.1 客戶端使用
1.3.1 測試 ntpdate 172.16.1.62 ntpdate -d 172.16.1.62 1.3.2 加入定時任務 echo "*/5 * * * * /usr/sbin/ntpdate 172.16.1.62 &>/dev/null" >>/var/spool/cron/root