Chrony 시간 서버

2610 단어 chronyntp
간단한 소개
chrony는 네트워크 시간 프로토콜(NTP)의 일반적인 구현이다. chrony에는 두 개의 프로그램이 포함되어 있다. chronyd는 시작할 때 시작할 수 있는 수호 프로그램이고 chronyc는 명령행 인터페이스 프로그램이다.
구성 파일:chrony.confserver: 시간 서버 주소;allow: 클라이언트 허용;deny: 클라이언트 거부;local stratum 10: 자신이 네트워크 시간을 동기화하지 못하더라도 다른 클라이언트에게 시간을 부여할 수 있습니다.
컨디션
CentOS Linux release 7.6server: 10.120.123.8client : 10.120.123.9
Chrony 설치
yum install -y chrony

서버측 (10.120.123.8)
프로파일
vim/etc/chrony.conf
allow 10.120.123.0/24

서비스 시작
systemctl start chronyd.service
systemctl enable chronyd.service  

포트 보기
netstat -nlup | grep chronyd 
udp        0      0 0.0.0.0:123             0.0.0.0:*                           9091/chronyd        
udp        0      0 127.0.0.1:323         0.0.0.0:*                           9091/chronyd        
udp6      0      0 ::1:323                     :::*                                   9091/chronyd     

client 엔드(10.120.123.9)
프로파일
vim/etc/chrony.conf
server 10.120.123.8 iburst
#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

서비스 시작
systemctl start chronyd.service
systemctl enable chronyd.service  

동기화 상태 보기
1,chronyc sourcestats
210 Number of sources = 1
Name/IP Address            NP  NR  Span  Frequency  Freq Skew  Offset  Std Dev
==============================================================================
10.120.123.8                0   0     0     +0.000   2000.000     +0ns  4000ms
2.chronyc sources -v
210 Number of sources = 1

  .-- Source mode  '^' = server, '=' = peer, '#' = local clock.
 / .- Source state '*' = current synced, '+' = combined , '-' = not combined,
| /   '?' = unreachable, 'x' = time may be in error, '~' = time too variable.
||                                                 .- xxxx [ yyyy ] +/- zzzz
||      Reachability register (octal) -.           |  xxxx = adjusted offset,
||      Log2(Polling interval) --.      |          |  yyyy = measured offset,
||                                \     |          |  zzzz = estimated error.
||                                 |    |           \
MS Name/IP address         Stratum Poll Reach LastRx Last sample               
===============================================================================

좋은 웹페이지 즐겨찾기