DNS 3 Flashcards
A secondary zone is not able to be loaded by DNS. How do you configure the secondary zone to replicate with the primary?
- On the primary zone, navigate to “Properties”, then the “Zone Transfers” tab and check the box to allow zone transfers (copying of the zone).
- Set the secondary zone as an authoritative name server by inputting the IP address of the server hosting the secondary zone.
What integration service with DNS allows a multi-master model within a zone?
Active Directory Integration
Along with the output of nslookup, which record, if configured correctly, displays the FQDN of the DNS server your using?
The PTR (pointer) record.
What different methods can you use to get information and help about commands in PowerShell?
Get-Command (gcm), Get-Help, Get-Member, and the command add-on utility in PowerShell.
What can you do to force a replication between a primary and secondary DNS zone?
R-click on secondary zone and then “Transfer new copy of zone from Master”. Lastly, after a few moments, hit Refresh and the secondary zone should replicate.
What is the purpose of DNS Round Robin?
To distribute load across servers providing the same service.
What are the steps to configure DNS Delegation?
After creation of a sub-domain primary zone, you would:
- Within DNS Manager, select the server hosting the parent domain primary zone and r-click on the parent domain and choose “New Delegation” to go through the New Delegation Wizard
- Specify the authoritative name server of the sub-domain
Or use the Add-DnsServerZoneDelegation command in PowerShell.
What is the main difference between conditional forwarding and stub zones?
With conditional forwarding, ip addresses are manually maintained while stub zones are maintained automatically. Security-wise, conditional forwarding is more secure since it only requires the IP address of the DNS server versus a stub zone containing SoA, NS, and A records.
What PowerShell command is used to create an Active-Directory integrated primary zone?
Add-DnsServerPrimaryZone -Name “Domain.com” -ReplicationScope “Domain”
How would you convert an existing standard primary zone to an AD DS-integrated zone?
- Through DNS Manager, r-click on zone and then Properties.
2. On the General tab, click Change and select the “Store The Zone In Active Directory checkbox
What two records are automatically created when you create a new forward lookup zone?
An SoA and NS record.
Within a stub zone, what record is defined as a glue record?
An A (host) record.
When creating a stub zone, what setting configures the stub zone to be dynamically updated?
By checking the box for “Use the above servers to create a local list of master servers” in the Master DNS Servers screen.
What PowerShell commands are used to configure GlobalNames in PowerShell?
Set-DnsServerGlobalNameZone -AlwaysQueryServer $True
Set-DnsServerGlobalNameZone -Enable $True
Add-DnsServerPrimaryZone -Name GlobalNames -ReplicationScope Domain
If GlobalZones wasn’t configured and you had to use the Windows Internet Naming Service, what would be the disadvantages?
- Increased administrative overhead from maintaining two name services.
- Potential name resolution delay from clients using both DNS and WINS.