NTP服務的安裝和使用

2021-10-25 20:19:40 字數 2070 閱讀 9899

ntp服務的安裝和使用

本文是基於centos 7.3系統環境,進行ntp的安裝和使用

一、ntp簡介

(1) ntp

網路時間協議,英文名稱:network time protocol(ntp)是用來使計算機時間同步化的一種協議,它可以使計算機對其伺服器或時鐘源(如石英鐘,gps等等)做同步化,它可以提供高精準度的時間校正(lan上與標準間差小於1毫秒,wan上幾十毫秒),且可介由加密確認的方式來防止惡毒的協議攻擊。ntp的目的是在無序的internet環境中提供精確和健壯的時間服務。

二、ntp的服務端安裝和配置

(1) 安裝ntp

date # 系統時間

yum -y install net-tools # netstat

yum -y install ntp

(2) 開放防火牆埠

firewall-cmd --add-port=123/udp --permanent

firewall-cmd --add-port=123/tcp --permanent

firewall-cmd --reload

(3) 啟動ntp

systemctl stop chronyd

systemctl disable chronyd

systemctl start ntpd

systemctl enable ntpd

(4) 配置ntp

# 限制 192.168.0.0~192.168.0.255之間的伺服器可以訪問

restrict 192.168.0.0 mask 255.255.255.0 nomodify notrap

# 如果上面的伺服器都無法同步,那麼就與本地系統時間同步

server 127.127.1.0

fudge 127.127.1.0 stratum 10

(5) 修改/etc/sysconfig/ntpd檔案

vi /etc/sysconfig/ntpd

# 新增內容如下,用於保證硬體時間與系統時間一致

sync_hwclock=yes

(6) 重啟ntp

systemctl restart ntpd
(7) 檢視ntp狀態

ntpstat
(8) 列出上層ntp伺服器的連線狀態

ntpq -p
三、ntp的客戶端安裝和配置

(1) 安裝ntp

yum -y install ntp
(2) 啟動ntp

ntp有自我保護機制,如果本機與上源時間相差太大,那麼ntpd不會執行,因此在設定同步之前,一定要手動使用ntpdate與上源進行時間同步,然後在啟動ntp服務

ntpdate 192.168.0.207
(3) 啟動ntp

systemctl stop chronyd

systemctl disable chronyd

systemctl start ntpd

systemctl enable ntpd

(4) 配置ntp

# 本地區域網內的時間伺服器同步

server 192.168.0.207

# 如果上面的伺服器都無法同步,那麼就與本地系統時間同步

server 127.127.1.0

(5) 重啟ntp

systemctl restart ntpd

NTP服務安裝

本地公升級ntp服務的操作步驟 將光碟放入伺服器,執行 mkdir media centos mount t auto dev cdrom media centos 進入目錄 etc yum.repo.d修改yum源配置,把nuctech.repo檔案備份,安裝ntp yum y install n...

ntp服務安裝配置

1.rpm ivh libedit 2.11 4.20080712cvs.1.el6.x86 64.rpm ntp 安裝依賴這個軟體包 2.rpm ivh ntp 4.2.6p5 10.el6.centos.2.x86 64.rpm 安裝ntp server 3.配置 etc ntp.conf 拒絕...

centos7安裝ntp服務

安裝ntp服務 查詢是否安裝了ntp rpm qa grep ntp yum install y ntp 修改所有節點的ntp.conf vi etc ntp.conf 新增以下內容 當前節點ip位址 restrict 10.0.32.20 nomodify notrap nopeer noquer...