Configuring Time Settings on Domain Controllers

Configurare noua (How To)

Situatie

Active Directory relies on accurate time settings on all member servers, Domain Controllers, and domain-joined workstations. When time settings are misconfigured, multiple critical Active Directory services such as replication and Kerberos authentication will fail bringing the entire Active Directory infrastructure to its knees.

1. In Active Directory, we use the Windows Time service for clock synchronization: W32Time

2. All member machines synchronizes with any Domain Controller

3. In a domain, all Domain Controllers synchronize from the PDC Emulator of that domain using NT5DS (which simply means: follow the domain hierarchy and get me my PDC emulator)

4. The PDC Emulator of a domain should synchronize with any Domain Controller of the parent domain using NTP

5. The PDC Emulator of the root domain in a forest should synchronize with an external time server (could be clock device, a router, another standalone server, an internet time server, etc)

Solutie

In order to properly adhere to the time syncing hierarchy above, the following should be performed for any servers holding the PDC Emulator role.

1. First, verify the Domain Controller you’re working on is the PDC Emulator by running the following command

a. netdom query fsmo

2. From the PDC Emulator server, run the following commands in the order shown:

a. net stop w32time

b. w32tm /configure /syncfromflags:manual /manualpeerlist:”0.us.pool.ntp.org,0x1 1.us.pool.ntp.org,0x1 2.us.pool.ntp.org,0x1 3.us.pool.ntp.org,0x1″

i. The default external time source for Windows Server is time.windows.com. A better option is to sync from multiple time servers. In the command above,     we’re using time servers maintained by the NTP Pool Project.

c. net start w32time

d. w32tm /configure /reliable:yes /update

e. w32tm /resync

3. If there is more than one Domain Controller in Active Directory, run the following command on each:

a. w32tm /config /syncfromflags:domhier /update

4. Verify correct time settings from PDC Emulator by running w32tm /query /status:

5. Verify correct time settings from all other Domain Controllers by running w32tm /query /status:

Tip solutie

Permanent

Voteaza

(10 din 27 persoane apreciaza acest articol)

Despre Autor

Leave A Comment?