DNS Flashcards

1
Q

Which table forces the DNS client service to use DNSSEC validation of DNS responses for the namespaces that you specify?

A

Name Resolution Policy Table (NRPT)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How must you configure a member server with the DNS server in a domain with DNS server role loaded to support Active Directory zones?

A

Make the server a domain controller.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How can you make a static DNS record eligible for scavenging

A

Check the:

Delete this record when it becomes stale

checkbox on the properties of the record

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Which cmdlet would enable support for GlobalNames zone on a DNS?

A

Set-DnsServerGlobalNameZone -Enable $true

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What type of DNS zone is a complete copy of all the records in the parent zone?

A

A secondary zone.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

According to Microsoft; what is the best available solution that helps protects from security threats against DNS such as man-in-the middle, spoofing and cache-poisoning attachks?

A

DNS Security Extentions (DNSSEC)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is DNS cache locking?

A

Cache locking, when enabled prevents records from being overwritten for the duration of the time to live (TTL).

Cache locking was introduced to prevent cache poisoning.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is the DNS socket pool?

A

The socket pool allows the DNS server to use source port randomization when issuing DNS queries.

It is enabled by default.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What does the secure cahche against pollution do?

A

Helps prevent the NS record from being overwritten.

Enabled by default.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is a conditinal forwarder?

A

A DNS conditional forwarder forwards only queries that meet specific criteria.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What command should be used to enable DNS server analytical events?

A

tracelog,exe

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What cmdlet should yo run to change the name of a zone file

A

Set-DnsServerPrimaryZone -Name <fqdn> -ZoneFile <new></new></fqdn>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What cmdlets should be run to optimize protections against DDoS attacks but still respond to queries?

A
  1. Set-DnsServerRRL
  2. Add-DnsServerResponseRateLimitExceptionList
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

At a branch office, you do not want the local DNS server to perform queries for local clients aside from those for which it is authoritative. How could you address this objective?

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

You want only to allow recursion by your DNS servers for queries received on the internal network and not from Internet-based clients. How could you address this requirement?

A

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:

  1. Set-DnsServerRecursionScope -Name . -EnableRecursion $False
  2. Add-DnsServerRecursionScope -Name “InternalAdatumClients” -EnableRecursion $True
  3. Add-DnsServerQueryResolutionPolicy -Name “RecursionControlPolicy” -Action ALLOW -ApplyOnRecursion -RecursionScope “InternalAdatumClients” -ServerInterfaceIP “EQ,10.24.60.254”
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Managers at A. Datum are concerned with security and your boss has asked that you implement DNSSEC to help to secure DNS. You know that DNSSEC relies on distributing the NRPT. How could you configure NRPT distribution easily?

A

The 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.

17
Q

You have installed the DNS server role on a computer running Windows Server 2016. You now want to create zones on the server. You want to store the zone data in AD DS, but the option to store the zone in Active Directory is unavailable. Why might this be?

A

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.

18
Q

You want to be able to deploy an AD DS–integrated primary zone by using Windows PowerShell. What command should you use?

A

To deploy an AD DS–integrated primary zone on a DNS server, use the Add-Dns-ServerPrimaryZone cmdlet with the ReplicationScope parameter. For example: Add-DnsServerPrimaryZone -Name “Contoso.com” -ReplicationScope “Domain”

19
Q

A. Datum has just purchased the Contoso Pharmaceuticals company. Your users are frequently accessing server resources in Contoso’s network infrastructure. You need to configure DNS to support this change in circumstances. What two options do you have to more efficiently manage name resolution in this situation?

A

Consider implementing conditional forwarding or a stub zone. Both enable clients to more easily access the name servers for a foreign domain.

20
Q

Your network consists of many subnets distributed across the globe. You want to make a web server easily accessible from any location by using the same name. However, you want your users to be directed by DNS to a local web server. What feature of Windows Server 2016 would enable this?

A

Use DNS policies and DNS zone scopes to configure this behavior. You can create DNS client subnets and assign these subnets into DNS scopes. Next, you create DNS resource records in the zone scopes. Finally, you would use a DNS policy to determine which records are returned to a DNS client, based on the originating subnet.