티스토리 뷰

linux

ntp server 설정

fendys 2017. 7. 10. 15:32
반응형

ntp 서버 및 클라이언트 설정 방법

※ ntp 데몬을 이용한 서버 설정

1. yum install ntpd 명령을 이용해 ntpd데몬을 설치한다.

 

2. [root@fendys-ntp yum.repos.d]# vi /etc/ntp.conf 에서 설정 변경
 # Hosts on local network are less restricted.
 #restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap -> 주석제거 후 허용할 내부 네트워크망 선택
 # 나의 서버 내부  네트워크망은 10.211.108.0/24 이다
 restrict 10.211.108.0 mask 255.255.255.0 nomodify notrap

 

# Use public servers from the pool.ntp.org project.
# Please consider joining the pool (http://www.pool.ntp.org/join.html).
#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 pool.ntp.org  -> 외부로 동기화 할 주소 추가

 

3. ntpd 데몬 재기동 및 ntpq -pn 명령으로 설정 내용 확인

 

※ ntp client 설정

1. ntp 데몬을 이용한 설정

[root@fendys-ntp-client ~]# vi /etc/ntp.conf 에서 설정 변경

# Use public servers from the pool.ntp.org project.
# Please consider joining the pool (http://www.pool.ntp.org/join.html).
#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 fendys-ntp -> 위에서 만든 ntp 서버의 IP 또는 도메인 주소 동기화 할 주소 추가

설정 후 데몬 재기동

 

 

2. ntpdate 데몬을 이용한 설정
crontab을 이용하여 수동으로 등록 하는 방법이며 ntpd 데몬과 중복 사용이 불가능하여 ntpd 데몬이 기동하지 않는 상태에서 사용해야된다.(ntpdate : the NTP socket is in use, exiting 메시지 발생) 아래 이미지에서 보면 fendys-ntp(10.211.108.132)서버로 동기화를 매일 9시에 실행 하는것을 알 수 있다.

0 9 * * *       /usr/sbin/ntpdate fendys-ntp (ntp 서버 IP)

반응형

'linux' 카테고리의 다른 글

linux oracle raw vol 추가 방법  (0) 2017.08.07
root 권한을 기한으로 획득하는 스크립트(CentOS 6)  (0) 2017.07.11
[CentOS] yum repository 설정  (0) 2017.07.06
multipath 설정 - CentOS  (0) 2017.07.06
linux setfacl - CentOS 6  (0) 2017.07.06