CentOS 에 NTP Server & Client 구축하기
1. 설치 (공통)
Server 와 Client 에서 같이 설치해줍니다.
[root@sysdocu ~]# yum -y install ntp
2. Server 설정
[root@sysdocu ~]# vi /etc/ntp.conf
driftfile /var/lib/ntp/drift restrict default kod nomodify notrap nopeer noquery restrict -6 default kod nomodify notrap nopeer noquery restrict 127.0.0.1 restrict -6 ::1 restrict 192.168.20.0/24 mask 255.255.255.0 nomodify notrap // 접근 허용할 IP 대역 server kr.pool.ntp.org server asia.pool.ntp.org includefile /etc/ntp/crypto/pw keys /etc/ntp/keys server 127.127.1.0 fudge 127.127.1.0 |
데몬 재시작
[root@sysdocu ~]# service ntpd restart
서버 부팅시 활성화 설정
[root@sysdocu ~]# chkconfig ntpd on
방화벽을 등록합니다.
> UDP 123
시간 정보를 잘 받아오는지 확인합니다.
[root@sysdocu ~]# ntpq -p
remote refid st t when poll reach delay offset jitter
==============================================================================
send.mx.cdnetwo 204.123.2.5 2 u 14 64 1 1.462 1506.49 0.000
time4.aliyun.co 10.137.53.7 2 u 19 64 1 98.225 1512.21 0.000
*LOCAL(0) .LOCL. 5 l 20 64 37 0.000 0.000 0.000
3. Client 설정
[root@sysdocu ~]# ntpdate -u 192.168.10.2 // ntp 서버 IP
'리눅스 > OS 일반' 카테고리의 다른 글
Vim Vi 에서 ^M 지우기, 행끝의 캐럿 M 기호 제거 방법 (0) | 2018.03.15 |
---|---|
오래된 파일 삭제하기 (0) | 2018.03.02 |
RAID에 대한 기본적 정의부터 구성까지(LSI MegaRAID SAS 9261-8i) (0) | 2018.02.14 |
Ubuntu apt-get 소스리스트 변경 (kr.archive.ubuntu.com) (0) | 2018.02.12 |
export 를 이용한 telnet 명령어 일괄 처리 (0) | 2018.01.29 |