Unable to sync server to new NTP server

Piloto 6 Reputation points
2021-03-24T16:43:50.28+00:00

Hello, Recently added two Windows 2016 domain controllers and made one of the them the new PDC (the intention is to demote the old 2012 servers soon). After the change, when updating DNS settings in two file servers, they are unable to sync to the NTP and time keeps changing to CMOS, also state is pending (see screenshot) Registry was configured in the PDC with type NTP, the rest uses type NT5DS. If reverting at least one of the DNS server settings to the old server then the file server synchronizes properly. Other servers in the domain don't have this issue. ![81291-image.png][1] [1]: /api/attachments/81291-image.png?platform=QnA Thank you!

Windows Server
Windows Server
A family of Microsoft server operating systems that support enterprise-level management, data storage, applications, and communications.
12,084 questions
{count} vote

10 answers

Sort by: Most helpful
  1. Dave Patrick 426K Reputation points MVP
    2021-03-24T18:35:04.66+00:00

    For your PDC emulator you can configure as below.

    w32tm /unregister
    net stop w32time
    w32tm /register
    net start w32time
    w32tm /config /manualpeerlist:<ntp ip address> /syncfromflags:manual /reliable:yes /update
    net stop w32time
    net start w32time
    then check the results
    w32tm /query /source
    w32tm /query /configuration

    --please don't forget to Accept as answer if the reply is helpful--

    1 person found this answer helpful.
    0 comments No comments

  2. Dave Patrick 426K Reputation points MVP
    2021-03-24T17:44:58.727+00:00

    Not clear what the issue is but Some general info

    --please don't forget to Accept as answer if the reply is helpful--

    0 comments No comments

  3. Piloto 6 Reputation points
    2021-03-24T18:32:18.263+00:00

    @Dave Patrick

    Thank you for the general information, yes I can say that my domain matches all that, still I have not been able to resolve the issue.

    0 comments No comments

  4. Piloto 6 Reputation points
    2021-03-24T19:49:10.113+00:00

    @Dave Patrick

    Thank you, with the command:
    w32tm /config /manualpeerlist:<ntp ip address> /syncfromflags:manual /reliable:yes /update
    I was able to force the time source in the offending server to the NTP server and it seems that it is keeping the setting, however when I run:
    w32tm /configuration on that same server I get the following:

    C:\Windows\system32>w32tm /monitor
    GetDcList failed with error code: 0x8007054B.
    Exiting with error 0x8007054B
    C:\Windows\system32>

    Running the same command in any other server gives me a list of all domain controllers. So there should be something else that I'm missing.

    0 comments No comments

  5. Dave Patrick 426K Reputation points MVP
    2021-03-24T19:53:42.187+00:00

    I'd check the Windows Time service is started, also post results of
    w32tm /query /source
    w32tm /query /configuration

    0 comments No comments