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

AWS-CLI: Detach A Volume

Check Volume's Status PS C:\Windows> aws ec2 describe-volumes --region us-west-1 --volume-ids vol-0a0f16ef5a9d69a29{ "Volumes": [ {…

AWS Autoscale with Public IP re-association

Option 1:--associate-public-ip-address command option with the as-create-launch-config commandOption 2:Allocate an Elastic IP then adding a…

How To Install Rancher Onto a Kubernetes Cluster

Step 1: Add Rancher Repo into Helm Source: https:// rancher.com/docs/rancher/v2.x/en/installation/install-rancher-on-k8s/ # Add Rancher repo helm…