W32Time not synchronizing with PDC after /syncfromflags:domhier
We have two domain controllers on a local network:
Zeus [PDC]
Neptune
Zeus is configured to pull from an external time source and is set as reliable:
w32tm /config /manualpeerlist:0.pool.ntp.org /syncfromflags:manual /reliable:yes /update
However, when setting Neptune to pull from the domain hierarchy, or, even configuring to pull from Zeus directly, W32Time always just pulls from CMOS:
w32tm /config /syncfromflags:domhier /update
Source: Local CMOS Clock
w32tm /config /manualpeerlist:zeus.example.com /syncfromflags:manual /update
Source: Local CMOS Clock
I've tried unregistering and reregistering Windows Time on Neptune to no avail:
net stop w32time
w32tm /unregister
w32tm /register
net start w32time
Zeus' firewall allows all incoming traffic on domain networks for purposes of testing, and there's no other network devices in between them.
windows networking windows-server-2008-r2 ntp
add a comment |
We have two domain controllers on a local network:
Zeus [PDC]
Neptune
Zeus is configured to pull from an external time source and is set as reliable:
w32tm /config /manualpeerlist:0.pool.ntp.org /syncfromflags:manual /reliable:yes /update
However, when setting Neptune to pull from the domain hierarchy, or, even configuring to pull from Zeus directly, W32Time always just pulls from CMOS:
w32tm /config /syncfromflags:domhier /update
Source: Local CMOS Clock
w32tm /config /manualpeerlist:zeus.example.com /syncfromflags:manual /update
Source: Local CMOS Clock
I've tried unregistering and reregistering Windows Time on Neptune to no avail:
net stop w32time
w32tm /unregister
w32tm /register
net start w32time
Zeus' firewall allows all incoming traffic on domain networks for purposes of testing, and there's no other network devices in between them.
windows networking windows-server-2008-r2 ntp
add a comment |
We have two domain controllers on a local network:
Zeus [PDC]
Neptune
Zeus is configured to pull from an external time source and is set as reliable:
w32tm /config /manualpeerlist:0.pool.ntp.org /syncfromflags:manual /reliable:yes /update
However, when setting Neptune to pull from the domain hierarchy, or, even configuring to pull from Zeus directly, W32Time always just pulls from CMOS:
w32tm /config /syncfromflags:domhier /update
Source: Local CMOS Clock
w32tm /config /manualpeerlist:zeus.example.com /syncfromflags:manual /update
Source: Local CMOS Clock
I've tried unregistering and reregistering Windows Time on Neptune to no avail:
net stop w32time
w32tm /unregister
w32tm /register
net start w32time
Zeus' firewall allows all incoming traffic on domain networks for purposes of testing, and there's no other network devices in between them.
windows networking windows-server-2008-r2 ntp
We have two domain controllers on a local network:
Zeus [PDC]
Neptune
Zeus is configured to pull from an external time source and is set as reliable:
w32tm /config /manualpeerlist:0.pool.ntp.org /syncfromflags:manual /reliable:yes /update
However, when setting Neptune to pull from the domain hierarchy, or, even configuring to pull from Zeus directly, W32Time always just pulls from CMOS:
w32tm /config /syncfromflags:domhier /update
Source: Local CMOS Clock
w32tm /config /manualpeerlist:zeus.example.com /syncfromflags:manual /update
Source: Local CMOS Clock
I've tried unregistering and reregistering Windows Time on Neptune to no avail:
net stop w32time
w32tm /unregister
w32tm /register
net start w32time
Zeus' firewall allows all incoming traffic on domain networks for purposes of testing, and there's no other network devices in between them.
windows networking windows-server-2008-r2 ntp
windows networking windows-server-2008-r2 ntp
asked Jan 22 '16 at 14:39
IAmTheSquidward
447311
447311
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Late response I know, but a few comments/observations from someone who has wrestled with this. Note: I don't claim to know the answer directly to your question.
- Have you submitted a resync after these config changes?
- What do your Event Logs say? Windows-Time can be quite vocal and gives reasonably good troubleshooting guidance.
- I wouldn't use the NTP pool for time sync with Windows domains. I previously read that Windows isn't fond of the change in servers stratums which is commonplace between requests.
- On your second DC why not just set it to also sync from a manual peer list and see if that alters things.
- Extension of 3, here you can find a list of servers to sync with. You should even be able to find some stratum 1 servers in your region. I'm in the UK and have maintained perfect time sync using
ntppub.le.ac.uk,ntp.cis.strath.ac.ukandntp2c.mcc.ac.ukfor years.
A previous question of mine generated a great response and there's tons of info here on this subject.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1029952%2fw32time-not-synchronizing-with-pdc-after-syncfromflagsdomhier%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Late response I know, but a few comments/observations from someone who has wrestled with this. Note: I don't claim to know the answer directly to your question.
- Have you submitted a resync after these config changes?
- What do your Event Logs say? Windows-Time can be quite vocal and gives reasonably good troubleshooting guidance.
- I wouldn't use the NTP pool for time sync with Windows domains. I previously read that Windows isn't fond of the change in servers stratums which is commonplace between requests.
- On your second DC why not just set it to also sync from a manual peer list and see if that alters things.
- Extension of 3, here you can find a list of servers to sync with. You should even be able to find some stratum 1 servers in your region. I'm in the UK and have maintained perfect time sync using
ntppub.le.ac.uk,ntp.cis.strath.ac.ukandntp2c.mcc.ac.ukfor years.
A previous question of mine generated a great response and there's tons of info here on this subject.
add a comment |
Late response I know, but a few comments/observations from someone who has wrestled with this. Note: I don't claim to know the answer directly to your question.
- Have you submitted a resync after these config changes?
- What do your Event Logs say? Windows-Time can be quite vocal and gives reasonably good troubleshooting guidance.
- I wouldn't use the NTP pool for time sync with Windows domains. I previously read that Windows isn't fond of the change in servers stratums which is commonplace between requests.
- On your second DC why not just set it to also sync from a manual peer list and see if that alters things.
- Extension of 3, here you can find a list of servers to sync with. You should even be able to find some stratum 1 servers in your region. I'm in the UK and have maintained perfect time sync using
ntppub.le.ac.uk,ntp.cis.strath.ac.ukandntp2c.mcc.ac.ukfor years.
A previous question of mine generated a great response and there's tons of info here on this subject.
add a comment |
Late response I know, but a few comments/observations from someone who has wrestled with this. Note: I don't claim to know the answer directly to your question.
- Have you submitted a resync after these config changes?
- What do your Event Logs say? Windows-Time can be quite vocal and gives reasonably good troubleshooting guidance.
- I wouldn't use the NTP pool for time sync with Windows domains. I previously read that Windows isn't fond of the change in servers stratums which is commonplace between requests.
- On your second DC why not just set it to also sync from a manual peer list and see if that alters things.
- Extension of 3, here you can find a list of servers to sync with. You should even be able to find some stratum 1 servers in your region. I'm in the UK and have maintained perfect time sync using
ntppub.le.ac.uk,ntp.cis.strath.ac.ukandntp2c.mcc.ac.ukfor years.
A previous question of mine generated a great response and there's tons of info here on this subject.
Late response I know, but a few comments/observations from someone who has wrestled with this. Note: I don't claim to know the answer directly to your question.
- Have you submitted a resync after these config changes?
- What do your Event Logs say? Windows-Time can be quite vocal and gives reasonably good troubleshooting guidance.
- I wouldn't use the NTP pool for time sync with Windows domains. I previously read that Windows isn't fond of the change in servers stratums which is commonplace between requests.
- On your second DC why not just set it to also sync from a manual peer list and see if that alters things.
- Extension of 3, here you can find a list of servers to sync with. You should even be able to find some stratum 1 servers in your region. I'm in the UK and have maintained perfect time sync using
ntppub.le.ac.uk,ntp.cis.strath.ac.ukandntp2c.mcc.ac.ukfor years.
A previous question of mine generated a great response and there's tons of info here on this subject.
edited Apr 13 '17 at 12:14
Community♦
1
1
answered Feb 20 '17 at 22:13
George
133115
133115
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1029952%2fw32time-not-synchronizing-with-pdc-after-syncfromflagsdomhier%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown