BIND: Clocks are Unsynchronized Error and Solution

by Vivek Gite on February 1, 2009 · 3 comments

Q. I've configured BIND named TSIG as documented here. It worked for some time, but my /var/log/messages got the errors as follows:

zone example.org/IN: refresh: failure trying master 71.22.11.22#53 (source 0.0.0.0#0): clocks are unsynchronized: 9 Time(s)
zone example.org/IN: refresh: failure trying master 71.22.11.22#53 (source 71.22.11.22#0): clocks are unsynchronized: 9 Time(s)

How do I fix these errors under Debian Linux 64 bit etch server?

A. BIND and many other UNIX / Linux / BSD services depends upon accurate timings. You need to use the Network Time Protocol (NTP), which is a protocol for synchronizing the clocks of computer systems over packet-switched, variable-latency data networks. NTP uses UDP port 123 as its transport layer. It is designed particularly to resist the effects of variable latency by using a jitter buffer. Under Linux / UNIX you can use ntpd or openntpd software implementation to sync clock.

To install ntpd under Debian, enter:
# apt-get update
# apt-get install ntp

You need ntp installed and configured on both master and slave DNS server. Once installed it will automatically sync clock using server specified in /etc/ntp.conf file:
server 0.debian.pool.ntp.org iburst
server 1.debian.pool.ntp.org iburst
server 2.debian.pool.ntp.org iburst
server 3.debian.pool.ntp.org iburst

Once ntpd started bind should work without a problem. Reload named to push pending updates:
# bind reload

Featured Articles:

Share this with other sys admins!
Facebook it - Tweet it - Print it -

{ 3 comments… read them below or add one }

1 mik February 2, 2009

About the above info you have as i listed below:
To install ntpd under Debian, enter:
# apt-get update
# apt-get install ntp
My question “where do you enter the data?” in the run command?
You should mention this as it confuses new guys.

Reply

2 mik February 2, 2009

where do you enter this?
To install ntpd under Debian, enter:
# apt-get update
# apt-get install ntp

in the run command?

Reply

3 Vivek Gite February 6, 2009

You need to type apt-get commands at a shell prompt. Open terminal and type the commands at bash shell prompt.

Reply

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <blockquote> <pre> <a href="" title="">
What is 7 + 14 ?
Please leave these two fields as-is:
Solve the simple math so we know that you are a human and not a bot.




Previous post:

Next post: