른록노트

[CentOS7] ntp서버 구축 본문

Server,OS/[Linux]

[CentOS7] ntp서버 구축

른록 2018. 8. 6. 10:52

@ 방법


서버 설정

-1. vi /etc/ntp.conf

#Hosts on local network are less restricted.

restrict 192.168.0.0 mask 255.255.255.0 nomodify notrap // 허용할 클라이언트 아이피

(위 내용 추가 192.168.0.0 대역의 IP 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 iburst

(위에 서버들은 공인 ntp 서버로 시간 정보를 받지 않으려면 ,폐쇄망 같은경우는 주석처리 해야한다)


* 현재 서버시간으로 하려면 다른 server 주석

server 127.127.1.0 #local clock 입력

service ntpd start

chkconfig ntpd on

chkconfig --list

(자동실행)

ntpq -pn 확인 (연결 되있는 ntp 서버 확인)

클라이언트 설정

수동으로 동기화

ntpdate [ntp서버ip]


참고사이트

http://itgameworld.tistory.com/104

반응형
Comments