[CentOS] NTP(Network Time Protocol) SERVER 설치 및 설정

ㅁ 목적

   - 망분리 혹은 private IP만 존재하는 등 특수한 상황으로 타임서버에 접속할 수 없어 서버 시간이 제각각임.
   - 내부망에 NTP 서버를 구축하여 시간 동기화를 함.

ㅁ 방법
   [root@server /]# yum install ntp
   [root@server /]# vi /etc/ntp.conf

   # 주석 이외 부분을 copy & paste 함.
   # 192.168.0.X 에서는 query 권한을 가짐.
   restrict 192.168.0.0 mask 255.255.255.0 nomodify notrap
   # http://www.pool.ntp.org/ 혹은 타임서버 리스트를 검색해서
   # server 뒤 0.pool.ntp.org와 같이 주소를 입력함.
   server 0.pool.ntp.org
   server 1.pool.ntp.org
   server 2.pool.ntp.org

   [root@server /]# service ntpd start

ㅁ NTP 서버 정상 여부 확인
   [root@server /]# ntpq -p

        remote           refid      st t when poll reach   delay   offset  jitter
    ==============================================

리스트가 보이면 정상 설치됨.

ㅁ 이슈1
   [root@server /]# ntpq -p
   No association ID's returned

     - 해결방법
       타임서버 주소가 맞는지 다시 확인함.

ㅁ 이슈2
   [root@client /]# rdate -s ntp서버IP
   rdate: couldn't connect to host ntp서버IP: Connection refused

     - 해결방법
       [root@server /]# chkconfig time-dgram on
       [root@server /]# chkconfig time-stream on
       [root@server /]# service xinetd restart

끝.