Configuring external NTP on Windows 2012 Domain Controller

Last updated on 03rd March 2014

This article explain how to synchronize the time of a Windows 2012 domain controller with an external time source.

By default a domain controller with PDC Emulator takes its time from the local CMOS clock and announce itself as a reliable time source. All client computers and other domain controllers synchronizes its time with the PDC Emulator.

It is a good practise to configure the PDC to synchronize its time with an external NTP time server.

Follow these steps to accomplish this task.


  1. Open Windows Power Shell as Administrator

  2. Type the following command and press Enter
     w32tm /config /manualpeerlist:"ntp_server" /syncfromflags:manual /reliable:yes /update

    Replace ntp_server with the name or IP address of the external NTP Server. You could add multiple NTP servers by adding a space between each name/address.

  3. Restart Windows Time service using commands below
     net stop w32time
     net start w32time
    

  4. To synchronize the clock immediately, enter the command
    w32tm /resync

  5. You can now verify the settings using the following commands
    w32tm /query /status

    This command will display the source and last successful sync time along with a few other settings.
    To list all the peers and their status, run the command
    w32tm /query /peers

    The following command will list the source of the NTP time
    w32tm /query /source


Post a comment

Comments

Nothing yet..be the first to share wisdom.