您好,登錄后才能下訂單哦!
這篇文章主要講解了“Linux下的NTP配置”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“Linux下的NTP配置”吧!
安裝環境:
Red Hat Enterprise Linux Server release 6.7 (Santiago)
一、檢查服務端、客戶端的ntp包是否已經安裝,默認是安裝的:
rpm -qa | grep ntp
rpm -q ntp
二、服務端
1.編輯ntp服務器的配置文件/etc/ntp.conf:
server 127.127.1.0 #把本機作為ntp服務端
fudge 127.127.1.0 stratum 0 #這行是時間服務器的層次。設為0則為頂級,如果要向別的NTP服務器更新時間,請不要把它設為0
2.重啟ntp服務:
service ntp restart(Ubuntu)
service ntpd restart(CentOS、linux)
systemctl restart ntpd(CentOS7.X、redhat linux 7以上)
3.ntp服務器的防火墻放行ntp的123端口:(如果iptable防火墻關閉則不必要做,跳過即可)
/sbin/iptables -I INPUT -p udp --dport 123 -j ACCEPT
/etc/init.d/iptables status
netstat -tlunp | grep ntp
4.檢查ntp服務是否開機啟動,將其設置為開機啟動
chkconfig --list ntpd
chkconfig --level 345 ntpd on
三、客戶端ntp client
1.編輯ntp客戶端的配置文件/etc/ntp.conf,添加server_ip:
server server_ip
2.啟動后,一般需要5-10分鐘左右的時候才能與外部時間服務器開始同步時間。可以通過命令查詢NTPD服務情況。
service ntpd restart
--查看狀態:
ntpq -p
或者
watch "ntpq –p"
--查看ntp服務器有無和上層ntp連通:
ntpstat
--如果需要,手工同步,則需要先將client的ntp服務停掉:
servict ntpd stop
ntpdate ntpserver_ip
3.檢查ntp服務是否開機啟動,將其設置為開機啟動
chkconfig --list ntpd
chkconfig --level 345 ntpd on
實例:
客戶端:
[root@one ~]# grep -v ^# /etc/ntp.conf
driftfile /var/lib/ntp/drift
restrict default kod nomodify notrap nopeer noquery
restrict -6 default kod nomodify notrap nopeer noquery
restrict 127.0.0.1
restrict -6 ::1
server 192.168.56.20 prefer
includefile /etc/ntp/crypto/pw
keys /etc/ntp/keys
[root@one ~]#
[root@one ~]#
ntpq -p
remote refid st t when poll reach delay offset jitter
==============================================================================
192.168.56.20 .LOCL. 1 u 27 64 177 0.167 2100350 8577226
[root@one ~]#
[root@one ~]#
ntpstat
synchronised to unspecified at stratum 2
time correct to within 14779 ms
polling server every 64 s
[root@one ~]#
服務端端server_ip端:
[root@slient ~]# grep -v ^# /etc/ntp.conf
driftfile /var/lib/ntp/drift
restrict default kod nomodify notrap nopeer noquery
restrict -6 default kod nomodify notrap nopeer noquery
restrict 127.0.0.1
restrict -6 ::1
includefile /etc/ntp/crypto/pw
keys /etc/ntp/keys
server 127.127.1.0
fudge 127.127.1.0 stratum 0
[root@slient ~]#
感謝各位的閱讀,以上就是“Linux下的NTP配置”的內容了,經過本文的學習后,相信大家對Linux下的NTP配置這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。