centos 5 .6安裝NTP服務器

   由於有些服務和實驗須要多臺機器的時間同步,因此就有了搭建NTP的前提條件了,具體步驟以下:服務器

1,安裝ntp服務網絡

yum install ntp.i* -yide

2,修改/etc/ntp.confrest

restrict default kod nomodify notrap nopeer noquery   #
restrict -6 default kod nomodify notrap nopeer noquery  #針對ipv6設置 日誌

#這是ntp的默認設置server

# 容許本地全部操做
restrict 127.0.0.1
restrict -6 ::1

# 容許的局域網絡段
restrict 10.0.0.0 mask 255.0.0.0 nomodify motrap
restrict 192.168.0.0 mask 255.255.0.0 nomodify motrap

# 使用上層的internet ntp服務器
restrict 207.46.232.182 mask 255.255.255.255 nomodify notrap noquery
server 207.46.232.182

# 若是沒法與上層ntp server通訊以本地時間爲標準時間
server    127.127.1.0    # local clock
fudge    127.127.1.0 stratum 10   

# 計算本ntp server 與上層ntpserver的頻率偏差
driftfile /var/lib/ntp/drift

# Key file containing the keys and key identifiers used when operating
# with symmetric key cryptography.
keys /etc/ntp/keys
#日誌文件
logfile /var/log/ntp.log事件

 

#說明:ip

restrict <IP 地址> <子網掩碼> |<網段> <子網掩碼> [ignore|noquery|notrap|nomodiy|notrust|nokod]同步

ignore :關閉全部ntp服務it

noquery:不提供ntp服務

notrap:不提供trap遠程事件登陸的功能

nomodiy:表示客戶端不能更改ntp服務器的時間參數,但能夠經過ntp服務器進行時間矯正

notrust:拒絕沒有經過認證的客戶端

nokod:kod技術能夠組織一種dos***

 

 

2,在修改/etc/ntp/step-tickers文件

207.46.232.182

127.127.1.0

#當ntp服務器啓動時自動與這個文件中的記錄ip進行時間校對

 

3,修改/etc/sysconfig/ntpd

SYNC_HWCLOCK=YES #容許BIOS與系統時間同步

 

4,客戶端設置略。

相關文章
相關標籤/搜索