NTP - localhost 시간 초과 - 소스 네트워크가 lo 대신 eth0을 사용합니다.

NTP - localhost 시간 초과 - 소스 네트워크가 lo 대신 eth0을 사용합니다.

Centos 6 서버에서 ntpq -p 명령이 시간 초과되었습니다.

# ntpq -pn
127.0.0.1: timed out, nothing received
***Request timed out

tcpdump 결과는 루프백 인터페이스 대신 eth0을 사용하고 있음을 보여줍니다.

14:42:11.392517 IP 10.122.5.2.45969 > 127.0.0.1.ntp: NTPv2, Reserved, length 12
14:42:16.397594 IP 10.122.5.2.45969 > 127.0.0.1.ntp: NTPv2, Reserved, length 12
14:42:29.528535 IP 10.122.5.2.35338 > 127.0.0.1.ntp: NTPv2, Reserved, length 12

네트워크 구성에 문제가 있는 것 같습니다. 하지만 어디?

내 ntp.conf 내용.

# cat /etc/ntp.conf
tinker panic 0

driftfile /var/lib/ntp/drift

server x.x.x.x iburst
server x.x.x.x iburst


# By default, exchange time with everybody, but don't allow configuration.
# See /usr/share/doc/ntp-doc/html/accopt.html for details.
restrict -4 default kod notrap nomodify nopeer noquery
restrict -6 default kod notrap nomodify nopeer noquery

# Local users may interrogate the ntp server more closely.
restrict 127.0.0.1
restrict ::1

keys /etc/ntp/keys

답변1

문제는 잘못된 iptables nat 규칙으로 인해 발생했습니다.

Chain POSTROUTING (policy ACCEPT)
target     prot opt source               destination
MASQUERADE  all  --  0.0.0.0/0            0.0.0.0/0

대상을 의도한 IP로 변경하고 ntp가 작동하기 시작했습니다.

Chain POSTROUTING (policy ACCEPT)
target     prot opt source               destination
MASQUERADE  all  --  0.0.0.0/0            x.x.x.x

관련 정보