Posted On March 31, 2019

VMWare and AWS Domain Controller Best Practices

kimconnect 0 comments
blog.KimConnect.com >> Virtualization >> VMWare and AWS Domain Controller Best Practices
VMware:



AWS:

https://aws.amazon.com/windows/resources/whitepapers/


1. Controlling clock drift
Kerberos is used for authentication protocol; thus, time synchronization is very critical
Method 1:
Regedit >> browse to HKLM\System\CurrentControlSet\Services\W32Time\Parameters\Type, change Type REG_SZ value from NT5DS to NTP >> browse to HKLM\SYSTEM\CurrentControlSet\Services\W32Time\Parameters\NtpServer, change NtpServer value from time.windows.com,0x1 to tock.usno.navy.mil,0x1 >> browse to HKLM\System\CurrentControlSet\Services\W32Time\Config, change AnnounceFlags REG_DWORD from 10 to 5
CMD: net stop w32time, net start w32time, w32tm /resync /rediscover

Method 2:
PDC >> CMD
net stop w32time
w32tm /unregister
w32tm /register
net start w32time
net time /setsntp: //this is to clear the pre-configured servers list
W32tm /config /manualpeerlist:0.us.pool.ntp.org,1.us.pool.ntp.org,2.us.pool.ntp.org,3.us.pool.ntp.org /syncfromflags:manual /reliable:yes /update
W32tm /resync /rediscover
net stop w32time && net start w32time

DC >> CMD
net stop w32time
w32tm /unregister
w32tm /register
net start w32time
net time /setsntp:
w32tm /config /syncfromflags:domhier /update
W32tm /resync /rediscover
net stop w32time & net start w32time


2. Optimizing network performance
3. Making DNS modifications correctly
4. Replicating database information
5. Providing virtual machine access control
6. Ensuring disaster preparedness and high availability
7. Handling disaster recovery


Keywords: DC, PDC, network server time, Event ID 50

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

PowerShell: Get Hyper-V Host Name from Inside Guest VM

$guestVMName="SOMENAME"function getHyperVHostname{ param([string]$guestVMName=$env:computername) $hive = [Microsoft.Win32.RegistryHive]::LocalMachine; $keyPath = 'SOFTWARE\Microsoft\Virtual Machine\Guest\Parameters'; $value = 'HostName'; $reg =…

VMware ESX Installation Procedures

1. Install ESX from ISO Putty Rufus MWware-VCSA-all-6.0.0-2562643.iso VMware-viclient.exe KVM console (ie. Lantronix) 2. Install…

How To Inject NIC Drivers into the ESXi Installation Image

Update 1/10/2021: ESXi-7.0 isn't compatible with the drivers in our previous illustration. Thus, this is…