Google


ADBRITE ads links
You are here: CodeIdol.com > Unix > Linux® Quick Fix > The NTP Server > Testing And Troubleshooting NTP

SAVE
Digg
Shown on del.icio.us del.icio.us
See Whos Talking About This on Technorati Technorati
I've Reddit reddit

Testing and Troubleshooting NTP

After configuring and starting NTP, you should test it to make sure it is working. Here are some guidelines you can follow to get NTP working correctly.

Verifying NTP is Running

To test whether the NTP process is running, use the command:

     [root@bigboy tmp]# pgrep ntpd

You should get a response of plain old process ID numbers.

Doing an Initial Synchronization

If the time on the local server is very different from that of its primary time server, your NTP daemon will eventually terminate itself leaving an error message in the /var/log/messages file. Run the ntpdate -u command to force your server to become instantly synchronized with its NTP servers before starting the NTP daemon for the first time. The ntpdate command doesn't run continuously in the background, you still have to run the ntpd daemon to get continuous NTP updates.

Take a look at some sample output of the ntpdate command in which a server whose initial time was set to midnight, was correctly set to 8:03 a.m.

  • The date was originally set to midnight which was verified by using the date command:

    [root@smallfry tmp]# date
    Thu Aug 12 00:00:00 PDT 2004
    [root@smallfry tmp]#
    

  • The ntpdate command is run three times to synchronize smallfry's clock to server 192.168.1.100, but it must be run while the ntpd process is stopped. So you'll have to stop ntpd, run ntpdate and then start ntpd again:

    [root@smallfry tmp]# service ntpd stop
    [root@smallfry tmp]# ntpdate -u 192.168.1.100
    Looking for host 192.168.1.100 and service ntp
    host found : bigboy.my-web-site.org
    12 Aug 08:03:38 ntpdate[2472]: step time server 192.168.1.100 off-
    set 28993.084943 sec
    [root@smallfry tmp]# ntpdate -u 192.168.1.100
    Looking for host 192.168.1.100 and service ntp
    host found : bigboy.my-web-site.org
    12 Aug 08:03:40 ntpdate[2472]: step time server 192.168.1.100 off-
    set 2.467652 sec
    [root@smallfry tmp]# ntpdate -u 192.168.1.100
    Looking for host 192.168.1.100 and service ntp
    host found : bigboy.my-web-site.org
    12 Aug 08:03:42 ntpdate[2472]: step time server 192.168.1.100 off-
    set 0.084943 sec
    [root@smallfry tmp]# service ntpd start
    [root@smallfry tmp]#
    

  • The date is now corrected:

    [root@smallfry tmp]# date
    Thu Aug 12 08:03:45 PDT 2004
    [root@smallfry tmp]#
    

Determining If NTP Is Synchronized Properly

Use the ntpq command to see the servers with which you are synchronized. It provided you with a list of configured time servers and the delay, offset, and jitter that your server is experiencing with them. For correct synchronization, the delay and offset values should be non-zero and the jitter value should be under 100.

     [root@bigboy tmp]# ntpq -p

Here is some sample output of the command:

          remote          refid       st t when poll  reach delay   offset
     jitter
     ======================================================================
     ========
     -jj.cs.umb.edu   gandalf.sigmaso  3 u   95 1024  377  31.681  -18.549
     1.572
     milo.mcs.anl.go  ntp0.mcs.anl.go  2 u  818 1024  125  41.993  -15.264
     1.392
     -mailer1.psc.edu ntp1.usno.navy.  2 u  972 1024  377  38.206   19.589
     28.028
     -dr-zaius.cs.wis ben.cs.wisc.edu  2 u  502 1024  357  55.098    3.979
     0.333
     +taylor.cs.wisc. ben.cs.wisc.edu  2 u  454 1024  347  54.127    3.379
     0.047
     -ntp0.cis.strath harris.cc.strat  3 u  507 1024  377 115.274   -5.025
     1.642
     *clock.via.net   .GPS.            1 u  426 1024  377 107.424   -3.018
     2.534
     ntp1.conectiv.c  0.0.0.0          16 u   - 1024    0   0.000    0.000
     4000.00

Your Linux NTP Clients Cannot Synchronize Properly

A telltale sign that you haven't got proper synchronization is when all the remote servers have jitters of 4000 with delay and reach values of 0.

         remote           refid      st t when poll reach  delay  offset
     jitter
     ======================================================================
     =======
     LOCAL(0)        LOCAL(0)        10 l    -   64    7   0.000   0.000
     0.008
     ntp-cup.externa 0.0.0.0         16 u    -   64    0   0.000   0.000
     4000.00
     snvl-smtp1.trim 0.0.0.0         16 u    -   64    0   0.000   0.000
     4000.00
     nist1.aol-ca.tr 0.0.0.0         16 u    -   64    0   0.000   0.000
     4000.00

This could be caused by:

  • Older versions of the NTP package that don't work correctly if you use the DNS name for the NTP servers. In these cases, you use the actual IP addresses instead.

  • A firewall blocking access to your Stratum 1 and 2 NTP servers. This could be located on one of the networks between the NTP server and its time source, or firewall software, such as iptables, could be running on the server itself.

  • The notrust nomodify notrap keywords are present in the restrict statement for the NTP client. In some versions of the Fedora Core 2's implementation of NTP, clients will not be able to synchronize with a Fedora Core 2 time server unless the notrust nomodify notrap keywords are removed from the NTP client's restrict statement.

In this example, the restrict statement has only the client network defined without any keywords and the configuration line that works with other NTP versions has been commented out:

     # -- CLIENT NETWORK -------
     #restrict 172.16.1.0 mask 255.255.255.0 notrust nomodify notrap
     restrict 172.16.1.0 mask 255.255.255.0

Fedora Core 2 File Permissions

All the Fedora/Red Hat NTP daemons write temporary files to the /etc/ntp directory. Unfortunately, in Fedora Core 2, the permissions on this directory don't allow the writing of temporary files. Instead, you have to set the group and owner of the directory to be ntp:

     [root@bigboy tmp]# chown ntp:ntp /etc/ntp

If you don't, you'll get errors in the /var/log/messages file:

     Aug 12 00:29:45 smallfry ntpd[2097]: can't open /etc/ntp/drift.TEMP:
     Permission denied

    SAVE
    Digg
    Shown on del.icio.us del.icio.us
    See Whos Talking About This on Technorati Technorati
    I've Reddit reddit

    You are here: CodeIdol.com > Unix > Linux® Quick Fix > The NTP Server > Testing And Troubleshooting NTP
       
    Related tags







    Popular Categories
    Unix books and guides
    AJAX popular information
    C# language guides
    Windows books and cookbooks
    .......






    © CodeIdol Labs, 2007