- Home
- Interview Questions
- Windows server 2016
To install the DNS server role to an existing Nano Server, your colleague should create a remote Windows PowerShell session to the Nano Server and then use the Enable- WindowsOptionalFeature -Online -FeatureName DNS-Server-Full-Role command to add the DNS role.
You could configure the branch DNS server to use forwarding. Specify a DNS server elsewhere in the organization to which it forwards all queries it cannot satisfy locally.
You could implement DNS policies. Specifically, you could create a recursion scope so
that recursion is enabled when requested on a specific DNS server interface, or from
a specific internal subnet. The following three Windows PowerShell commands would enable you to achieve your objective:
Set-DnsServerRecursionScope -Name . -EnableRecursion $False
Add-DnsServerRecursionScope -Name "InternalAdatumClients" -EnableRecursion $True
Add-DnsServerQueryResolutionPolicy -Name "RecursionControlPolicy" -Action ALLOW
-ApplyOnRecursion -RecursionScope "InternalAdatumClients" -ServerInterfaceIP
"EQ,10.24.60.254"
he easiest way to distribute NRPT is to use a GPO. Edit the Default Domain GPO and navigate to Computer Configuration / Policies / Windows Settings / Name Resolution Policy. Create a rule containing the domain suffix you want to distribute for, and then enable both Enable DNSSEC in This Rule and Require DNS Clients to Check that the Name and Address Data Has Been Validated By the DNS Server.
The option to store the zone in Active Directory is only available on DNS servers that also have the AD DS server role installed and configured.