Find your PDC Emulator
Get-ADDomainController -Discover -Service PrimaryDC
Transfer domain roles if needed
https://technet.microsoft.com/pt-pt/library/cc816944(v=ws.10).aspx
ntp Servers Pt
http://www.pool.ntp.org/zone/pt
pool.ntp.org
Set NTP
Using w32tm.exe
Run the following command on the PDC emulator:
w32tm /config /manualpeerlist:timeserver /syncfromflags:manual /reliable:yes /update
(where timeserver is a –space delimited– list of your time source servers)
Once done, restart W32Time service.
net stop w32time
net start w32time
Run the following command on all other DCs (that are not PDC):
w32tm /config /syncfromflags:domhier /update
Once done, restart W32Time service.
FIND DC’servers
PS nltest /dclist:mydomain.local
Configurar o NTP no Linux
1- Vamos começar por instalar o ntp
yum install ntp
2- Agora activamos o serviço
chkconfig ntpd on
Indicação do servidor a usar para sincronizar o nosso relógio. Para esse vou usar um dos disponibilizados pelo Observatório Astronómico de Lisboa
ntpdate ntp02.oal.ul.pt
Nota: O Observatório Astronómico de Lisboa disponibiliza 2 servidores para configuração dos relógios. Quem pretender usar os dois deve editar o ficheiro /etc/ntp.conf e incluir a seguinte informação:
server ntp02.oal.ul.pt
server ntp04.oal.ul.pt
3- Iniciar o serviço do ntpd
/etc/init.d/ntpd start