티스토리 뷰

Study/System

ntp 서버 설정

pursh 2016. 10. 13. 10:29
리눅스 서버에 ntp는 기본 설치되어 있다.

ntp 설정 파일 위치는 /etc/ntp.conf 이다


우선 시간을 동기화할 외부 ntp 서버를 설정한다.


# 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

#server 1.centos.pool.ntp.org

#server 2.centos.pool.ntp.org

#server 3.centos.pool.ntp.org

server time.bora.net

server time.nuri.net

server ntp1.gngidc.net

server ntp2.gngidc.net


특정 ip 대역에서만 시간을 동기화하도록 설정한다.


# Hosts on local network are less restricted.

#restrict 192.168.1.0 mask 255.255.255.0 nomodify notrap

restrict 10.20.0.0 mask 255.255.0.0 nomodify notrap

restrict 10.1.100.0 mask 255.255.255.0 nomodify notrap

restrict 10.1.32.0 mask 255.255.255.0 nomodify notrap

restrict 10.1.16.0 mask 255.255.255.0 nomodify notrap


다른 설정은 크게 바꾸지 않아도 문제없다


ntp 서비스를 재구동한다.


service ntpd restart

'Study > System' 카테고리의 다른 글

리눅스 시스템 시간 설정  (0) 2017.04.21
Oracle spool 사용하기  (0) 2016.11.14
route -p 라우팅 영구 추가  (0) 2016.07.24
우분투 타임존(Timezone) 설정  (0) 2016.06.27
iptables string match  (0) 2014.09.26
댓글