003.NTP客戶端配置
阿新 • • 發佈:2018-11-01
一 NTP客戶端同步方式
- ntpdate定時任務同步
- ntp服務同步
二 ntpdate定時任務同步
2.1 安裝ntp軟體
1 [[email protected] ~]# yum -y install ntp #此方式也可只安裝nptdate 2 3 [[email protected] ~]# ntpdate 172.24.8.30 #ntpdate命令同步即可
三 ntp服務同步
3.1 安裝ntp軟體
1 [[email protected] ~]# yum -y install ntp #此方式也可只安裝nptdate
3.2 ntp配置
1 [[email protected] ~]# vi /etc/ntp.conf 2 3 restrict 172.24.8.30 nomodify notrap noquery 4 5 server 172.24.8.30 iburst 6 7 server 127.127.1.0 8 9 fudge 127.127.1.0 stratum 10
3.3 啟動服務
1 [[email protected] ~]# systemctl start ntpd.service 2 3 [[email protected]~]# systemctl enable ntpd.service
3.4 檢測狀態
1 [[email protected] ~]# ntpdate -u 172.24.8.30 #先手動同步測試一次 2 3 [[email protected] ~]# systemctl start ntpd.service 4 5 [[email protected] ~]# systemctl enable ntpd.service