ntp服務在區域網內的搭建
1、簡介
本文主要對ntp服務在區域網內的安裝和配置做了簡要的介紹。
2、伺服器端安裝
tar zxvf ntp-4.2.6p5.tar.gz
cd ntp-4.2.6p5
./configure --prefix=/usr/ntp --enable-all-clocks --enable-parse-clocks
make
make install
|
該部分是在時間同步服務中充當伺服器的機器上要進行的安裝,其他機器將會行這臺機器上獲取時間,實現同步。
3、伺服器端配置
(1) 允許客戶機的配置
修改ntp.conf配置檔案
vi /etc/ntp.conf
①、第一種配置:允許任何IP的客戶機都可以進行時間同步
將“restrict default kod nomodify notrap nopeer noquery”這行修改成:
將“restrict default kod nomodify notrap nopeer noquery”這行修改成:
restrict default nomodify
②、第二種配置:只允許10.15.62.*網段的客戶機進行時間同步
在restrict default nomodify notrap noquery(表示預設拒絕所有IP的時間同步)之後增加一行:
在restrict default nomodify notrap noquery(表示預設拒絕所有IP的時間同步)之後增加一行:
restrict 10.15.62.0 mask 255.255.255.0 nomodify
(2) 同步時間設定
①通過網路同步時間
# Use public servers from the pool.ntp.org project.
# Please consider joining the pool (http://www.pool.ntp.org/join.html).
server 0.centos.pool.ntp.org
server 1.centos.pool.ntp.org
server 2.centos.pool.ntp.org
|
②使用本地時間
# Undisciplined Local Clock. This is a fake driver intended for backup
# and when no outside source of synchronized time is available.
server 127.127.1.0 # local clock
fudge 127.127.1.0 stratum 10
|
4、啟動ntp伺服器
(1)通過bin目錄下的指令碼啟動
/usr/local/ntp/bin/ntpd -c /etc/ntp.conf -p /tmp/ntpd.pid |
(2)通過service工具啟動
service ntpd status
service ntpd start
service ntpd stop
|
5、客戶端配置
(1)安裝ntpdate
tar zxvf ntpdate.tar.gz |
然後把解壓出的ntpdate可執行指令碼拷貝到/usr/bin目錄或者是其他系統自動查詢的可執行程式的目錄即可。
(2)配置
vim /etc/crontab |
如下配置成每小時同步一次
# Example of job definition:
# .---------------- minute (0 - 59)
# | .------------- hour (0 - 23)
# | | .---------- day of month (1 - 31)
# | | | .------- month (1 - 12) OR jan,feb,mar,apr ...
# | | | | .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
# | | | | |
# * * * * * user-name command to be executed
1 * * * * root ntpdate 10.15.62.70 && hwclock -w
|
6、常見問題
(1)no server suitable for synchronization found
在ntp伺服器啟動之後需要一段時間才能夠通過客戶端進行時間的同步,所以如果這個問題是在伺服器端剛啟動的時候出現的是屬於正常的情況,請等待一段時間在進行嘗試。如果還是有問題可以檢視網路或者是伺服器端與客戶端的配置情況。
(2)埠占用
在使用ntpdate進行同步時如果發現NTP埠被佔用的提示,請使用ps命令檢視系統是不是執行著ntp相關的服務,很多伺服器安裝上之後會自動的啟動一些服務,之用將其關閉就可以了。
(3)防火牆和selinux問題
這個問題往往影響到伺服器端和客戶端正常連線,在發現連線問題時,請首先考慮這兩個方面。
==========================================
參考:http://blog.s135.com/
http://www.blogjava.net/spray/archive/2008/07/10/213964.html
相關文章
- 在滴滴雲 VPC 內搭建內網 DNS 服務內網DNS
- 【SpringCloud】consul註冊中心註冊的服務為內網(區域網)IPSpringGCCloud內網
- 《搭建DNS內外網的解析服務》RHEL6DNS
- 區域網的搭建過程
- Windos NTP 服務設定
- 【NTP】Redhat5.1環境下網路時間服務NTP的安裝部署Redhat
- Windows區域網通過NTP設定時間同步Windows
- win7的區域網搭建Win7
- gitblit服務端在windows的搭建Git服務端Windows
- 區域網內命令大全
- 使用阿里雲映象站NTP服務搭建NTP伺服器(基於CentOS 7系統)阿里伺服器CentOS
- 使用MDNS進行區域網服務發現(.NET Core)DNS
- 亞馬遜雲科技加速資料庫服務在中國區域落地亞馬遜資料庫
- 在nginx上搭建php服務NginxPHP
- 區域網內部署 Docker RegistryDocker
- 簡單的區域網內通訊
- CentOS 配置阿里雲 NTP 服務CentOS阿里
- Linux NTP服務配置 for Oracle RACLinuxOracle
- apache網路服務的搭建和配置Apache
- 地圖 判斷點在區域內地圖斷點
- Linux 之 NTP 服務 伺服器Linux伺服器
- 區塊鏈的應用領域——公共服務(三)區塊鏈
- NTP時間同步伺服器(區域網時鐘同步)解決方案伺服器
- 論企業生產網NTP時鐘同步(網路時間同步服務)
- 網路拓撲—FTP服務搭建FTP
- linux區域網內磁碟對映Linux
- Java實現區域網內單播Java
- AD域服務
- 上位機和下位機之間區域網的搭建
- Coolify系列-手把手教學解決區域網區域網中的其他主機訪問虛擬機器以及docker服務虛擬機Docker
- 使用樹莓派搭建區域網監控樹莓派
- 如何在區域網搭建git伺服器Git伺服器
- 區域網內網速度慢的原因及解決方法內網
- 在CentOS上利用mailx搭建郵件服務CentOSAI
- Win10怎麼搭建FTP伺服器區域網內傳輸檔案Win10FTP伺服器
- Nginx網站服務LNMP搭建論壇Nginx網站LNMP
- 領域服務與應用服務的職責
- 領域服務和應用服務的差別?