Better Technology, Better Tomorrow.

Cloud 기술팀 개인 포스팅 자료

ProLinux 7

NTP 서버 설정

ProLinux 2021. 1. 22. 17:16

UDP 123 포트를 열어주거나 SELinux, Firewalld 데몬 중지하여야하며

Chronyd이 기본설정인데, 동시에 켜게되면 NTP가 꺼져버리니까 chronyd 서비스 해제를 필수로 시켜야합니다.

 

#timedatectl set-ntp yes

 

vi /etc/ntp.conf

restrict default kod nomodify notrap nopeer noquery
restrict -6 default kod nomodify notrap nopeer noquery
restrict 127.0.0.1
restrict -6 ::1
# systemctl status ntpd로 조회 시 ::1 syntax 오류가 나는 경우 조금 기다리시면 정상 기동됩니다.

#192.168.122.1/24 는 게이트 웨이를 의미하며 CIDR 표기법 준수를 필요로 합니다.
restrict 192.168.122.1/24 mask 255.255.255.0 nomodify notrap
includefile /etc/ntp/crypto/pw
keys /etc/ntp/keys
 
server 127.127.1.0 iburst
fudge 127.127.1.0 stratum 3

 

 

'ProLinux 7' 카테고리의 다른 글

네트워크 설정파일 옵션  (0) 2020.11.26
Oracle Database 12c 설치 전 준비사항  (0) 2020.11.18
ProLinux 7.5→7.7 Kernel Update  (0) 2020.11.16