[RHEL6] NTP 서비스 설정
본문 바로가기
IT 이야기/Linux

[RHEL6] NTP 서비스 설정

by 찬찬이 아빠 2019. 11. 22.
반응형

NTP(Network Time Protocol) 서비스 설정은 RHEL6에서 다음과 같습니다.

 

1. /etc/ntp.conf에 Server명을 ntpserver1로 입력합니다.

# vim /etc/ntp.conf
server ntpserver1

 

 /etc/hosts 파일에 NTP 서버의 IP와 ntpserver1을 추가합니다.

 (NTP 서버의 IP는 직접 확인 후 입력하세요!)

# vim /etc/hosts
xxx.xxx.xxx.xxx ntpserver1

 

2. ntpd 데몬이 실행되어 있는지 확인 후 실행되어 있다면 restart 및 부팅 시 자동으로 실행되게 합니다.

# netstat -naup | grep 123
udp     0     0   xxx.xxx.xxx.xxx:123		0.0.0.0:*		1430/ntpd
udp     0     0   xxx.xxx.xxx.xxx.:123		::::*			1430/ntpd
udp     0     0   ::::123             		::::*			1430/ntpd

# service ntpd restart
# chkconfig --level 35 ntpd on

 

3. ntpd 명령을 이용하여 정상적으로 서비스가 되는지 확인합니다.

# ntpq -c assoc
ind  assid   status   conf   reach   auth   confition   last_event   cnt
==================================================================================
1     5221    96ba     yes    yes    none    sys.eer    sys_peer    11

# ntpq -c peer
remote     refid       st   t    when   pool   reach   delay     offset   jitter
==================================================================================
*ntpserver1    xx.xx.xx.xx   2 u  948   1024   377   0.647 1.209 1.781

 

4. ntp 서버와의 통신은 최대 5분정도 시간 지연이 있으므로 5분정도 후 3번 명령어로 확인합니다.

    만약 정상적으로 값이 나오지 않는다면 ntp 서비스 포트(123)가 오픈 되어ㅣㅆ는지 확인 후 재시도 합니다.

 

<참고사항>

netstat 명령어에서 옵션의 내용은 다음과 같습니다.

 -n : network 검색

 -a : 모든 항목 출력

 -u : udp 포트 출력

 -t : tcp 포트 출력

 -p : 서비스(프로그램)명 출력

반응형

댓글