ntpdate IPv4가 로컬 호스트 ntp 서버를 쿼리하지 못했습니다.

ntpdate IPv4가 로컬 호스트 ntp 서버를 쿼리하지 못했습니다.

ntpdate -q -4 localhostNTP 서버의 명령이 두 개의 쿼리를 발행하고 있으며 127.0.0.1그 중 하나는 실패합니다.

실패 때문일까요?/etc/호스트문서?

ntpdate -q -4 localhost
server 127.0.0.1, stratum 2, offset 0.000006, delay 0.02565
server 127.0.0.1, stratum 0, offset 0.000000, delay 0.00000

/etc/호스트문서 내용:

::1             1a.ncomputers.org 1a localhost
127.0.0.1       1a.ncomputers.org 1a localhost
2a02:c207:2010:6775::1  1b.ncomputers.org 1b
2a02:c205:2009:8290::1  1c.ncomputers.org 1c
5.189.146.13    1b.ncomputers.org 1b
80.241.208.120  1c.ncomputers.org 1c

/etc/ntpd.conf문서 내용:

driftfile /var/lib/ntp/ntp.drift
restrict default kod nomodify nopeer noquery notrap
restrict localhost
server 2001:4ca0:0:103::81bb:fe20
server 2001:638:a000:1123:123::1
server 2001:62a:4:311::123

날짜버전: 4.2.8p10

답변1

localhost IPV4 및 IPV6 쿼리를 허용하려면 ntp.conf 파일에 다음을 추가해야 할 수도 있습니다.

restrict 127.0.0.1 
restrict ::1

관련 정보