【NTPサーバ】NTPd導入

  • 既にインストール済か確認

    yum list installed | grep ntp
    
    fontpackages-filesystem.noarch
    ntp.x86_64              4.2.6p5-1.el6.centos
    ntpdate.x86_64          4.2.6p5-1.el6.centos
    
  • NTPd設定

    cp -pi /etc/ntp.conf /etc/ntp.conf.org
    vi /etc/ntp.conf
    
    下記内容を「#restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap」のすぐ下に追加
    restrict 192.168.XXX.0 mask 255.255.255.0 nomodify notrap
    
    下記内容をコメントアウト
    #server 0.centos.pool.ntp.org iburst
    #server 1.centos.pool.ntp.org iburst
    #server 2.centos.pool.ntp.org iburst
    #server 3.centos.pool.ntp.org iburst
    
    下記内容を追加
    server ntp1.jst.mfeed.ad.jp
    server ntp2.jst.mfeed.ad.jp
    server ntp3.jst.mfeed.ad.jp
    
  • 手動で時刻設定(初回のみ)

    ntpdate ntp.nict.jp
    
  • NTPd自動起動

    /etc/rc.d/init.d/ntpd start
    chkconfig ntpd on
    chkconfig --list ntpd
    

    ランレベルが2~5でonを確認する。