這篇文章主要講解了“Linux下的NTP配置”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“Linux下的NTP配置”吧!
創(chuàng)新互聯(lián)建站主營阿勒泰網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,成都app軟件開發(fā),阿勒泰h5微信小程序開發(fā)搭建,阿勒泰網(wǎng)站營銷推廣歡迎阿勒泰等地區(qū)企業(yè)咨詢
安裝環(huán)境:
Red Hat Enterprise Linux Server release 6.7 (Santiago)
一、檢查服務(wù)端、客戶端的ntp包是否已經(jīng)安裝,默認是安裝的:
rpm -qa | grep ntp
rpm -q ntp
二、服務(wù)端
1.編輯ntp服務(wù)器的配置文件/etc/ntp.conf:
server 127.127.1.0 #把本機作為ntp服務(wù)端
fudge 127.127.1.0 stratum 0 #這行是時間服務(wù)器的層次。設(shè)為0則為頂級,如果要向別的NTP服務(wù)器更新時間,請不要把它設(shè)為0
2.重啟ntp服務(wù):
service ntp restart(Ubuntu)
service ntpd restart(CentOS、linux)
systemctl restart ntpd(CentOS7.X、redhat linux 7以上)
3.ntp服務(wù)器的防火墻放行ntp的123端口:(如果iptable防火墻關(guān)閉則不必要做,跳過即可)
/sbin/iptables -I INPUT -p udp --dport 123 -j ACCEPT
/etc/init.d/iptables status
netstat -tlunp | grep ntp
4.檢查ntp服務(wù)是否開機啟動,將其設(shè)置為開機啟動
chkconfig --list ntpd
chkconfig --level 345 ntpd on
三、客戶端ntp client
1.編輯ntp客戶端的配置文件/etc/ntp.conf,添加server_ip:
server server_ip
2.啟動后,一般需要5-10分鐘左右的時候才能與外部時間服務(wù)器開始同步時間??梢酝ㄟ^命令查詢NTPD服務(wù)情況。
service ntpd restart
--查看狀態(tài):
ntpq -p
或者
watch "ntpq –p"
--查看ntp服務(wù)器有無和上層ntp連通:
ntpstat
--如果需要,手工同步,則需要先將client的ntp服務(wù)停掉:
servict ntpd stop
ntpdate ntpserver_ip
3.檢查ntp服務(wù)是否開機啟動,將其設(shè)置為開機啟動
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 ~]#
服務(wù)端端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配置”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對Linux下的NTP配置這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!