19 - Windows Server 2012 How to Configure DNS Server (Video in Khmer)
Learn how to configure DNS Server on Windows Server 2012 R2 step-by-step with video tutorial in Khmer and tips for beginners.
2026-09-15 ยท 3 min read
Hello my friend! Today I show you step-by-step how to Configure DNS Server on Windows Server 2012 R2 inside VMware! DNS (Domain Name System) translates easy domain names (like www.mycompany.local) into IP addresses (like 192.168.1.100) so client computers can connect to server resources easily without remembering IP numbers! Follow steps below with video tutorial in Khmer! Let's get started!
๐ก Tip: Always configure both Forward Lookup Zone (translates Name to IP) and Reverse Lookup Zone (translates IP to Name) for complete DNS resolution!
Watch Video Tutorial (Khmer)
Watch full step-by-step video tutorial below to see complete process in Khmer:
Step 1: Open DNS Manager Console
- Open Server Manager > click Tools menu at top right > select DNS (
dnsmgmt.msc). - Expand your Server Name in left panel (example:
DC01).
Step 2: Create Forward Lookup Zone (Name to IP)
- Right-click Forward Lookup Zones folder > select New Zone....
- Click Next on wizard > select Primary zone > check Store the zone in Active Directory > click Next.
- Select To all DNS servers running on domain controllers in this domain > click Next.
- Enter Zone name (example:
mycompany.local) > click Next. - Select Allow only secure dynamic updates > click Next > click Finish.
๐ก Tip: Forward Lookup Zone is used when user types domain name like
web.mycompany.localin web browser to find server IP address!
Step 3: Create Host (A) Record in Forward Zone
- Right-click your new zone (
mycompany.local) > select New Host (A or AAAA).... - Type Name (example:
weborwww). - Type target IP address (example:
192.168.1.100). - Check box Create associated pointer (PTR) record > click Add Host > click OK > click Done.
๐ก Tip: Checking "Create associated pointer (PTR) record" automatically creates matching reverse record inside Reverse Lookup Zone!
Step 4: Create Reverse Lookup Zone & Test with nslookup
- Right-click Reverse Lookup Zones > select New Zone... > select Primary zone > click Next.
- Select IPv4 Reverse Lookup Zone > enter Network ID (example:
192.168.1) > click Next > click Finish. - Open Command Prompt (
cmd) on client computer > typenslookup web.mycompany.local> press Enter. - Output shows server IP address and domain name resolving correctly!
๐ก Tip: If
nslookupshows old IP or error, run commandipconfig /flushdnsin Command Prompt to clear client DNS resolver cache!
Related Tutorials
- ๐ Windows Server 2012 Complete Tutorial Series (Video in Khmer)
- ๐ 03 - Windows Server 2012 Promote First Domain Controller (Video in Khmer)
- ๐ 18 - Windows Server 2012 Install and Configure Web Server IIS (Video in Khmer)
- ๐ก 20 - Windows Server 2012 Install and Configure DHCP Server (Video in Khmer)
- ๐ 24 - Windows Server 2012 Install and Configure FTP Server (Video in Khmer)
Hope this tutorial help you configure DNS Server on Windows Server 2012 R2 easily! Practice DNS management and domain resolution today. Happy learning my friends! Sharing is caring!