skip to content
Maathuran's Blog
Adding KMS to DNS

Adding KMS to DNS

/ 1 min read

Last Updated:

Introduction

With our setup of a Proxmox Cluster, Another tool I would like to learn is Active Directory. To start things off, I will be setting up Windows Server 2022 21H2 on Proxmox and creating a link it to the domain ata.al

Powershell

Easiest way to add the entry is by running the following in Powershell (make sure to replace the values with yours)

Add-DnsServerResourceRecord -Srv -Name "_VLMCS._tcp" -ZoneName "ata.al" -DomainName "10.0.210.101" -Priority 0 -Weight 0 -Port 1688

GUI

Open `DNS Manager and expand your domain WS1

Right Click and Create a new Records... WS2

Select Service Location (SRV) WS3

Add the following

Domainata.al
Service_VLMCS
Protocol_tcp_
Pritory0
Weight0
Port Number1688
Host10.0.210.101
WS4

Checking Record

open CMD then type in the following nslookup -type=srv _vlmcs._tcp WS4