How to install DNS Server on Windows Server 2019
In today's article, TipsMake will explain how to install DNS Server on Windows Server 2019 and then perform other additional configuration. Before proceeding, make sure that you have configured a static IP address on your server.
Install DNS Server on Windows Server 2019
Configure DNS Server to provide hostname resolution or IP address!
On the CUI settings, set up as follows:
Step 1. Run PowerShell as admin and enter the following code to install DNS Server.
Windows PowerShell Copyright (C) Microsoft Corporation. All rights reserved. # install DNS with admin tools PS C:UsersAdministrator> Install-WindowsFeature DNS -IncludeManagementTools Success Restart Needed Exit Code Feature Result ------- -------------- --------- -------------- True Yes SuccessRest. {DNS Server, . WARNING: You must restart this server to finish the installation process. # restart computer to apply changes PS C:UsersAdministrator> Restart-Computer -Force
On the GUI settings, set up as follows:
Step 2. Run Server Manager and click Add roles and features .
Step 3. Click the Next button .
Step 4. Select Role-based or feature-based installation .
Step 5. Select a Host for which you want to add services.
Step 6. Check the box DNS Server .
Step 7. Additional features required to add DNS Server. Click the Add Features button and then click Next .
Step 8. Click the Next button .
Step 9. Click the Next button .
Step 10. Click the Install button .
Step 11. After finishing the installation process, click the Close button .
Add the Forward Lookup Zone to the DNS Server
Step 1. Run Powershell as administrator and configure it as follows.
The following example adds a Forward Lookup Zone with the Zone-Name setting "srv.world" , Zone-File "srv.world.dns" . In general, give your domain name or part of your domain name to Zone-Name.
Windows PowerShell Copyright (C) Microsoft Corporation. All rights reserved. PS C:UsersAdministrator> Add-DnsServerPrimaryZone -Name "srv.world" -ZoneFile "srv.world.dns" -DynamicUpdate None -PassThru ZoneName ZoneType IsAutoCreated IsDsIntegrated IsReverseLookupZone IsSigned -------- -------- ------------- -------------- ------------------- -------- srv.world Primary False False False False PS C:UsersAdministrator> Get-DnsServerZone # [srv.world] has been added ZoneName ZoneType IsAutoCreated IsDsIntegrated IsReverseLookupZone IsSigned -------- -------- ------------- -------------- ------------------- -------- 0.in-addr.arpa Primary True False True False 127.in-addr.arpa Primary True False True False 255.in-addr.arpa Primary True False True False srv.world Primary False False False False TrustAnchors Primary False False False False # if remove it, run like follows PS C:UsersAdministrator> Remove-DnsServerZone "srv.world" -PassThru Confirm [Y] Yes [N] No [S] Suspend [?] Help (default is "Y"): Y ZoneName ZoneType IsAutoCreated IsDsIntegrated IsReverseLookupZone IsSigned -------- -------- ------------- -------------- ------------------- -------- srv.world Primary False False False False
Step 2. Run Server Manager and select Tools> DNS .
Step 3. Select Hostname in the left panel and right click on Hostname to bring up the menu and select New Zone .
Step 4. Click the Next button .
Step 5. Check the Primary zone box and click the Next button .
Step 6. Check the Forward Lookup Zone box and click the Next button .
Step 7. Enter a name in the Zone name field . As described on the screenshot below, please give the domain name or part of the domain name to this Zone name.
Step 8. Set zone-file-name and click Next button . You can keep the default name for zone-file-name.
Step 9. Click the Next button and keep the default options.
Step 10. Click the Finish button .
Step 11. A new zone has been created in the Forward Lookup Zone.
You should read it
- How to initial setup Windows Server 2019
- Use IIS to set up FTP Server on Windows
- How to set up your own Git server on Linux
- Instructions for installing SQL Server 2019
- SQL Server 2019 - Microsoft Relational Database Management System
- Download Windows Server 2019 and discover new features
- Introducing Exchange Server 2019, how to install Exchange Server 2019
- 7 great ideas using Raspberry Pi as a server
- How to install and use IIS on Windows Server 2019
- Microsoft added recovery, backup, security for Windows Server 2019
- Top 10 security improvements in Windows Server 2019
- Implement these tasks first when transferring data to Windows Server 2019
Maybe you are interested
4 Security Steps to Follow When Using Remote Access Applications
7 steps to take when your phone is stolen
8 steps to fix sound loss problem in Windows
A steppe kestrel kills a mallard with a 'shadowless' dive at a speed of 90km/h
Google changes the way 2-step verification is set up on user accounts
Turn off automatic updates for Windows with just a few simple steps