NTP 시간 동기화

1682 단어
NTPD 서버 네트워크 시간 프로토콜

역할: 네트워크의 호스트를 위해 동기화하는 시간은 2min-10min이며 메인보드 위의 하드웨어의 성능을 보아야 한다


1. 시간 서버의 중량 ntp 123/udp
2. 시간 서버 구성

rpm -q ntp


ntp-4.2.4p8-3.el6.x86_64
NTP Server 구성 예:

vim /etc/ntp.conf


restrict default nomodify//클라이언트 로그인을 허용하지 않으며 클라이언트가 server 127.127.11.0//로컬bios 시간을 수정하는 것도 허용하지 않습니다. 자신과fudge 127.127.11.0stratum 10//정의 단계, 범위 0-16, 작을수록 정확합니다.
주석: 시간 서버는 로컬bios 시간을 읽어야 하기 때문에 5min 정도 지연되어야 동기화에 성공할 수 있습니다

systemctl restart ntpd


systemctl enable ntpd


서버의 동기화 상태를 보려면 다음과 같이 하십시오.

ntpstat


unsynchronised time server re-starting polling server every 64 s

ntpstat


synchronised to local net at stratum 11 time correct to within 949 ms polling server every 64 s
3. NTP 클라이언트 구성 방법 1:

ntpdate -b 172.16.110.1 // 수동 시간 동기화 -b 가속 초기화 동기화


crontab -e


01 * * * * ntpdate 172.16.110.1
방법 2:

vim /etc/ntp.conf// 자동 동기화


server 172.16.110.1 fudge 172.16.110.1 stratum 5

systemctl restart ntpd


systemctl enable ntpd


ntpq -p

 remote           refid               st t when poll reach   delay   offset  jitter

========================================================================== 172.16.110.1 LOCAL(0) 11 u 36 64 3 0.405 0.046 0.022

date// 시스템 시계


Mon Jan 20 14:44:25 CST 2014

hwclock// 마더보드 하드웨어 시계


Mon 20 Jan 2014 02:44:36 PM CST -0.145485 seconds

hwclock --systohc // 시스템 시간을 하드웨어에 동기화


hwclock --hctosys // 하드웨어 시간을 시스템에 동기화

좋은 웹페이지 즐겨찾기