4.7 DNS Flashcards

1
Q

What is a forward lookup address

A

finds the IP address for a given host name

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

What is a revers lookup

A

finds the host name from a given IP address.

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

What is a root dns server

A

hold information for the root zone (.). Root servers answer name resolution requests by supplying the address of the corresponding top-level DNS server

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

. (dot) domain

A

The . (dot) domain, the root domain, denotes a fully qualified, unambiguous domain name.

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

Top-Level Domain (TLD)

A

A TLD is the last part of a domain name (for example, .com, .edu, .gov). TLDs are managed by the Internet Corporation of Assigned Names and Numbers (ICANN).

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

Fully Qualified Domain Name (FQDN)

A

The FQDN includes the host name and all domain names separated by periods. The final period (which is for the root domain) is often omitted and implied.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q
Additional domains
(Second-level domains)
A

Additional domains are second-level domains that have names registered to an individual or organization for use on the internet.

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

Host Name

A

The host name is the part of a domain name that represents a specific host. For example, www is the host name of www.example.com.

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

Records

A

are used to store entries for host names, IP addresses, and other information in the zone database.

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

Authoritative Server

A

An authoritative server is a DNS server that has a complete copy of all the records for a particular domain.

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

Dynamic DNS (DDNS)

A

DDNS enables clients or the DHCP server to update records in the zone database. Without dynamic updates, all A (host) and PTR (pointer) records must be configured manually.

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

What is recursion?

A

the process by which a DNS server uses root name servers and other DNS servers to perform name resolution.

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

What is the first step in recursion

A

The host looks in its local cache to see if it has recently resolved the host name.

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

What is the second step in recursion

A

If the information is not in the cache, it checks the Hosts file. The Hosts file is a static text file that contains host-name-to-IP address mappings.

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

What is the third step in recursion?

A

If the IP address is not found, the host contacts its preferred DNS server. If the preferred DNS server can’t be contacted, the host continues contacting additional DNS servers until one responds.

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

What is the fourth step in recursion

A

The host sends the name information to the DNS server. The DNS server checks its cache and Hosts file. If the information is not found, the DNS server checks any zone files that it holds for the requested name.

17
Q

What is the fifth step in recursion

A

If the DNS server can’t find the name in its zones, it forwards the request to a root zone name server. This server returns the IP address of a DNS server that has information for the corresponding top-level domain (such as .com).

18
Q

what is the sixth step in recursion

A

The first DNS server requests the information from the top-level domain server. The server returns the address of a DNS server with the information for the next highest domain. This process continues until a DNS server is contacted that holds the necessary information.

19
Q

What is the seventh step in recursion

A

The DNS server places the information in its cache and returns the IP address to the client host. The client host also places the information in its cache and uses the IP address to contact the desired destination device.

20
Q

router(config)#ip host [name] a.b.c.d

A

Creates static DNS entries.

21
Q

router(config)#ip domain-name [name]

A

Configures the router default domain (for DNS).

22
Q

router(config)#ip name-server a.b.c.d

A

Sets the default DNS name server.

23
Q

router(config)#ip domain-lookup

A

Enables the router to use DNS to identify IP addresses from hostnames.

24
Q

router(config)#no ip domain-lookup

A

Disables the broadcast name resolution of hostnames.

25
Q

router#show hosts

A

Displays a list of known IP hosts.

26
Q

Where does a Device Details Router or Switch DNS name resolution looks for information and in what order

A

Static DNS entries

DNS server query (if enabled)

27
Q

Where does a Workstation DNS name resolution looks for information and in what order

A

Local DNS cache
HOSTS file
DNS server query (Primary)
DNS server query (Secondary)