DNS 2 Flashcards

Section 2 of DNS questions.

1
Q

What are the different methods to change the host name of a server?

A

Through Server Manager or through PowerShell with the “Rename-Computer (new name)” command.

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

What are the different methods to join a computer to the domain?

A

Through File Explorer by clicking on the properties of “This PC” or through the Control Panel via Control Panel, System and Security, and System.

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

Within the PowerShell scripting environment, what combination of keys opens a new remote PowerShell tab?

A

Ctrl+Shift+R

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

Adding Active Directory Domain Services requires a reboot. True or False?

A

False. Although, a reboot is required upon promoting the server to be a Domain Controller.

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

What downloadable package can be installed on a client to facilitate remote administration of a server?

A

Remote Server Administration Tools (RSAT)

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

What are two ways to log in as a domain administrator on a client computer?

A
  1. Administrator@domain.com

2. Domain/Administrator

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

What is a CNAME Record Type?

A

The CNAME record (Canonical Name) displays both the alias and real host FQDNs. Type ID is 5

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

What is a NS Record Type?

A

The NS (Name Server) record displays the name of the authoritative name server as well as the A record (IPv4 Address) for the name server. Type ID is 2

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

What is a PTR (Pointer) Record Type?

A

A PTR record, when configured, assists the reverse lookup process by providing the resolution of IP Addresses to FQDNs. Type ID is 12.

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

What is an MX Record Type?

A

The MX (Mail Exchange) record specifies the mail server responsible for accepting email messages on behalf of the domain name. Type ID is 15

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

What is a SRV Record Type?

A

The SRV (Service) record is used to identify computers that host specific services. Details of those services include the protocol, priority, weight, TTL, and name. Type ID is 33

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

What is a TXT Record Type?

A

A TXT (Text) record contains an arbritrary string of text that can be used to provide detailed data. Type ID is 16.

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

Active Directory integrated DNS is not supported on Nano Server. Only a file-based DNS can be implemented. True or False?

A

True.

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

What are the different layers of a DNS Iterative query tree walk?

A
  1. Root Servers
  2. Top level domain servers (.com, .edu, .gov)
  3. Authoritative name servers
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What command allows you to delete root hints records?

A

Remove-DnsServerRootHint

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

What command allows you to edit existing root hints records?

A

Set-DnsServerRootHint

17
Q

What command allows you to copy the root hints information from another online DNS server.

A

Import-DnsServerRootHint

18
Q

What is the process to disable Recursion on a DNS Server?

A

Through DNS Manager, click on the properties of the DNS Server being configured. In the Advanced tab, check the box that says “Disable Recursion (Also disables forwarders)

19
Q

What are recursion scopes and how do you configure them?

A

Recursion scopes control the behavior of recursive queries and must be modified in DNS Server policies.

20
Q

How do you configure a DNS Server to only accept internal clients’ recursive queries?

A
  1. Disable recursion on the default recursion scope using the command: Set-DnsServerRecursionScope -Name . -EnableRecursion $False
  2. Create new recursion scope for internal clinets using the command: Add-DnsServerRecursionScope -Name “InternalClients” -EnableRecursion $True
  3. Create new policy linking the internal interface to the internal clients’ scope using the command: Add-DnsServerQueryResolutionPolicy -Name “RecursionControlPolicy” -Action ALLOW -ApplyOnRecursion -RecursionScope “InternalClients” -ServerInterfaceIP “EQ, 11.11.11.11” (the ip for the interface that internal clients will connect to)
21
Q

What is the difference between a primary and a secondary zone?

A

The primary zone is read/write while a secondary zone is read only.

22
Q

What is a stub zone?

A

A zone in which the authoritative name servers are dynamically updated for an external domain.

23
Q

What name is used to run DNS Management from the Run dialogue box?

A

dnsmgmt.msc

24
Q

What is Split Brain DNS?

A

When there are two versions of a single zone, one for internal users and one for external users (internet).

25
Q

You can use dcpromo to promote a Domain Controller. True or False?

A

False. dcpromo cannot be used to promote a server to a domain controller in Windows Server 2012R2 and higher.

26
Q

What are the disadvantages of a root zone being present in the DNS infrastructure?

A
  1. Unable to add a conditional forwarder
  2. Unable to add a forwarder
  3. Unable to add Root DNS servers to the Root Hints tab
27
Q

What is a SOA record?

A

Specifies authoritative information about a DNS zone including the primary name server, the email of the domain administrator, the domain serial number, and refresh timers related to the zone

28
Q

Using the dnscmd utility, what command enables round robin on the DNS server (DNS1)?

A

dnscmd DNS1 /Config /RoundRobin 1

29
Q

What does the “Enable Bind secondaries” setting do within the Advanced tab of the Server properties window?

A

It allows a UNIX version of DNS to host a secondary zone of a Microsoft DNS server.