こんにちわ
そういえばこれ構築してたの忘れてました
Network Time Protocol
(ネットワーク・タイム・プロトコル、略称NTP(エヌティーピー))
ntpdate と ntpdの違い
- ntpdate
一時的な設定をするコマンド.
精度は大雑把らしいが,早く合わせたいときはこちらの方がいい.
ntpdを落とさないと使えない.
- ntpd
定期的に同期してくれるデーモン.
設定さえすれば,ほっとくとある程度正確に合わせてくれる.
時計合わせのペースは,ntpdateよりも遅い.
というわけでやってみましょう
1 |
# yum install ntp |
NTPが起動していれば停止します。
1 |
# /etc/init.d/ntpd stop |
NTPサーバを利用してシステムクロックを調整します。
1 |
# /usr/sbin/ntpdate <a id="" href="http://ntp.nict.jp/" target="_blank">ntp.nict.jp</a> |
ハードウェアクロック(マザーボード上の時計)を調整します。
1 |
vim /etc/ntp.conf |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
#NTPサーバとローカルマシンの時刻のずれを管理するファイル driftfile /var/lib/ntp/drift #全てのNTP通信を拒否 restrict default kod nomodify notrap nopeer noquery restrict -6 default kod nomodify notrap nopeer noquery #ローカルホストからのNTP通信を許可する restrict 127.0.0.1 restrict -6 ::1 # LANのNTP通信を許可する restrict 192.168.11.0 mask 255.255.255.0 nomodify notrap # 上位NTPサーバとの通信を許可する restrict 133.243.238.163 mask 255.255.255.255 nomodify notrap noquery restrict 133.243.238.164 mask 255.255.255.255 nomodify notrap noquery #NTPサーバの指定(stratum:優先順位はサーバで決まっています) server 133.243.238.163 #ntp.<a id="" href="http://nict.jp/" target="_blank">nict.jp</a> (stratum1) server 133.243.238.164 #ntp.<a id="" href="http://nict.jp/" target="_blank">nict.jp</a> (stratum1) #NTPサーバとの同期に失敗した場合はローカルクロックと同期させる server 127.127.1.0 # local clock #ローカルクロックの優先度は10とする fudge 127.127.1.0 stratum 10 #NTP認証で利用するキー(今回は利用しない) keys /etc/ntp/keys #ログファイルの指定 |
1 |
chkconfig --level 345 ntpd on 自動起動 |
1 |
ntpdate <a id="" href="http://ntp.nict.jp/" target="_blank">ntp.nict.jp</a> 指定 |
1 |
/etc/init.d/ntpd start 起動 |
1 2 3 4 5 6 |
# ntpq -p 動作確認 remote refid st t when poll reach delay offset jitter ============================================================================== ntp-b2.nict.go. .NICT. 1 u 2 64 1 12.238 -0.346 0.001 ntp-b3.nict.go. .NICT. 1 u 1 64 1 10.813 0.710 0.001 LOCAL(0) |
1 |
ntpdate 180.214.34.83 |
1 |
/etc/init.d/ntpd start |
1 |
while sleep 3 ; do ntpq -p ; done リアルタイムで出力 |
要するにNTPは時間合わせる感じですな
おわり(^^)
0件のコメント