| The NTP daemon reads its configuration from a file named
        ntp.conf. On UNIX-like systems, this file is
        located in the /etc directory by default.
        On Windows platforms care must be taken because the file is assumed
        in either %systemroot% or
        %systemroot%\system32\drivers\etc, where
        %systemroot% corresponds to c:\winnt
        in standard installations. 
    
        In most installations the ntp.conf file contains at least
        one or more lines starting with the keyword server.
    
        Each of those lines specifies one reference time source which
        can be either another computer on the network, or a radio clock
        connected to the local computer.
         
    
        Reference time sources are specified using IP addresses, or
        host names which can be resolved by a name server.
    
        If an IP address represents a real node on the network then
        the NTP daemon assumes another NTP daemon running on a computer
        with that address.
    
        Additionally, NTP uses some pseudo IP addresses to specifiy special
        reference time sources.
         
    
        For example, NTP uses a pseudo IP address
        127.127.8.n to access a Meinberg radio clock installed
        at the local computer. To access its own system clock, also called
        the local clock, NTP uses the pseudo IP address
        127.127.1.0. This IP address must not be mixed up with 127.0.0.1,
        which is the IP of the localhost, i.e. the computer's
        loopback interface.
         
    
        
        Attention:Current versions of NTP under Windows NT have problems with DNS name
        resolution if support for MD5 authentication has been compiled in.
        In this case, all TCP/IP addresses in the file ntp.conf
        must be entered in dotted decimal notation (e.g. 172.16.1.1)
        rather than DNS name like host.domain.com.
 
      
        
        
         Configuration With Meinberg Radio Clock (Unix)On UNIX-like systems the parse driver which is part of
        the NTP package accepts all Meinberg radio clocks with a serial port
        as reference clock.
    
        There's also a Linux driver for Meinberg PC plug-in cards available
        which can be installed in order to make Meinberg plug-in cards available as
        reference time sources under Linux. The driver is available at the
        Meinberg software download page.
        Note: That driver is only required for plug-in radio clocks. Radio clocks
        which are connected via a serial interface are directly supported by NTP.
         
    
        The actions described below must be done by a user with sufficient
        rights on the system, e.g. root.
    
        The parse driver accesses radio clocks via symbolic device names
        /dev/refclock-n, where n is an index number
        in the range 0 through 3 since the parse driver can handle up to four
        reference clocks at the same time.
         
    
        Each symbolic device name must point to a physical device which
        represents an existing radio clock. In most cases the physical device
        is a serial port which has a radio clock connected to.
         
    
        Each of the reference clocks must also be specified in the
        ntp.conf file using a server line with
        the pseudo IP address 127.127.8.n, where
        n must correspond to the index numbers used
        with the symbolic device names /dev/refclock-n
        mentioned above.
         
    
        The pseudo IP address must be followed by a mode m
        parameter which specifies the type of radio clock represented
        by the device.
    
        The table below lists the mode values which can be used with
        Meinberg radio clocks:
         
        
         
          
            | mode number | radio clock | trust time |  
            | mode 0 | Meinberg PZF clock with TCXO | 12 hours |  
            | mode 1 | Meinberg PZF clock with OCXO | 4 days |  
            | mode 2 | Meinberg Standard Time String with 9600, 7E2 | 30 minutes |  
            | mode 7 | Meinberg GPS with OCXO, 19200, 8N1 | 4 days |  
    
        For example, if a single radio clock is connected to the serial
        port /dev/ttyS0 then a symbolic link for the clock must be set up
        using the command
                 ln -s /dev/ttyS0 /dev/refclock-0
        If a PC plug-in board with the
        Meinberg Linux driver
        shall be used as reference time source for NTP, the  symbolic link must
        point to the device implemented by that driver:        ln -s /dev/mbgntp /dev/refclock-0
        
    
        In the next step the file ntp.conf must be edited
        to configure the NTP daemon and tell it which reference clocks
        to use.
    
        The file should include a server line for the refclock-0
        device created above. If the radio clock sends the Meinberg standard
        time string at 9600 baud and framing 7E2 then, as can be seen from
        the table above, the mode for refclock-0 must be set to 2:
    
                 server 127.127.8.0 mode 2     # standard time string with 9600, 7E2
        Additionally, there should be an entry for the local clock which can be
        used as a fallback resource if no other time source is available.
        Since the local clock is not very accurate, it should be fudged to a
        low stratum:        server 127.127.1.0            # local clock
        fudge 127.127.1.0 stratum 12
        
    
        Now the NTP daemon must be started (or restarted) to let the changes
        take effect. If the daemon has been shipped with the operating system
        then it may have support for Meinberg clocks compiled in, or not.
         
    
        If the
        output ot the command ntpq -p
        lists a clock labeled generic then everything is fine
        and the NTP daemon supports the reference clock.
         
    
        If the generic clock it not listed in the ntpq output then
        NTP must be configured and compliled on the target platform. This
        requires a compiler package installed on the target platform, and
        the source code of the NTP distribution.
         
    
        In the example below name is the base name of the NTP source
        package which is normally distributed as a file name.tar.gz
        which must be uncompressed on the target computer:
                 tar xvzf name.tar.gz
        To compile the package, change into the NTP base directory, and
        run configure and make to build the programs. You may use the
        following commands:        cd name
        ./configure --enable-MEINBERG
        make
        After the build procedure has finished successfully each of the
        new programs is available in its own subdirectory which has the
        same name as the program itself. Make sure there's no old version of
        ntpd or xntpd running, then start the new NTP daemon by entering        ntpd/ntpd
        if a ntp-4.* package has been compiled, or        xntpd/xntpd
        if a xntp3 package has been compiled.
    
        
        The command ntpq -p can be used to verify
        that the new daemon works correctly. Finally the newly compiled
        programs should be copied to the destination directories. The standard
        procedure to do that is by simply running the command
    
                 make install
        However, care must be taken if a version of NTP had been installed
        previously. The old versions of the NTP executables should be deleted
        or overwritten by the new programs to prevent the NTP daemon from being
        loaded instead of the new one when the system starts up the next time.
        Also, the new executables must be in the directory where they are expected
        by the system startup scripts.
    
        Care must be taken especially if the NTP version changes between v3.x and v4.x
        because the naming conventions have changed between those version (e.g xntpd/ntpd).
        
        
         
   
 
 Configuration With Meinberg Radio Clock (Windows)On Windows platforms, NTP does not currently support most
          external reference clocks directly. Instead, the
          Meinberg driver
          can be used together with most internal and external Meinberg
          radio clocks to discipline Windows' system time.
      
          NTP, in turn, can be configured to use Windows' sytem time as
          reference time. Since Windows' system time is disciplined by a
          radio clock, the NTP service's stratum should be
          forced to a low number. So the the file ntp.conf
          should contain the following lines:
      
                     server 127.127.1.0            # local clock
          fudge 127.127.1.0 stratum 1   # disciplined by radio clock
          Unlike stated before on this page, the config file should not contain
          the line disable ntp since this may be the reason that the time server
          is not accepted by its clients.
      
          Also, there should be no driftfile specified, and if a file ntp.drift
          already exists on the machine, it should be deleted. Otherwise the NTP service might
          try to correct the system clock drift, thus working against the radio clock driver,
          resulting in a poor quality of time synchronization.
          
          
           
   
 
 Configuration Without Radio ClockConfiguration of computers without external reference clock
          is quite simple. For each computer which is to be used as
          reference time source, a line must be added to the file
          ntp.conf.
          Additionally, the computer's local clock can configured to be
          used by the NTP service if none of the other time servers on
          the network can be reached.
          Since the time servers on the network shall be preferred, the
          local clock's stratum should be forced to a high number:
      
                     server 127.127.1.0            # local clock
          fudge 127.127.1.0 stratum 12  # not disciplined
      
          server ntp_server_1
          server ntp_server_2
          server ...
          
      
          where ntp_server_1, ntp_server_2, etc. must be the real host
          names or IP addresses of existing NTP servers.
      
          
           
   
 
 Additional Configuration OptionsDuring operation, the NTP daemon computes the drift of the
          system clock compared to the reference time. The daemon
          can save the drift rate to a file to have it available
          at the next restart.
      
          If the daemon shall maintain the drift file to increase
          synchronization speed, the location of that file must be
          specified by adding a line like            driftfile /etc/ntp.drift
          to the ntp.conf file.
      
          There are many more options which can be set up using the
          configuration file. Please refer to the NTP documentation
          for details.
      		
 
         |