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

Some AWS Quick Notes

https://docs.aws.amazon.com/vm-import/latest/userguide/vmimport-image-import.htmlOpen Virtual Appliance (OVA) image format, which is compatible with VMware vSphere versions 4 and…

PowerShell: Get NIC MTU’s of All Hyper-V Hosts in Domain/Forest

# listHyperVHostsInForests.ps1 # Version: 0.02 function listHyperVHostsInForests{ # Ensure that AD management module is available…

Enable Jumbo Frames on a Windows Host

Overview: Whether the engineer or sysadmin works in the realm of 'networking', 'database', or 'Windows',…