centos 5.6安裝NTP服務器
為有些服務和實驗需要多台機器的時間同步,所以就有了搭建NTP的前提條件了,具體步驟如下:
1,安裝ntp服務
yum install ntp.i* -y
2,修改/etc/ntp.conf
restrict default kod nomodify notrap nopeer noquery #
restrict -6 default kod nomodify notrap nopeer noquery #針對ipv6設置
#這是ntp的默認設置
# 允許本地所有操作
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
#說明:
restrict <IP 地址> <子網掩碼> |<網段> <子網掩碼> [ignore|noquery|notrap|nomodiy|notrust|nokod]
ignore :關閉所有ntp服務
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,客戶端設置略。