On Fri, Oct 22, 2010 at 18:24 UTC, Florin Andrei <[email protected]> wrote: > I've 3 machines that would not synchronize to NTP servers no matter what. > They always end up stratum 10. [...] > Config file: > > server 10.10.16.65 iburst > server 10.10.16.64 iburst > server 127.127.1.0 # local clock > fudge 127.127.1.0 stratum 10 > driftfile /etc/ntp/drift > restrict 127.0.0.0 mask 255.0.0.0 > restrict 192.168.3.0 mask 255.255.255.0 nomodify notrap > restrict default ignore
I think the last line is instructing ntpd to ignore the responses from the 10.10.16.x servers. Either add: restrict 10.10.16.0 mask 255.255.255.0 nomodify notrap or simply remove the last line, which is probably not doing what someone hoped it would. Moreover, the local clock driver is usually a bad idea, I'd comment/remove the two 127.127.1.0 lines. Cheers, Dave Hart _______________________________________________ questions mailing list [email protected] http://lists.ntp.org/listinfo/questions
