Chapter 9: Network Naming Flashcards
Define: Name Resolution
A process that automatically converts computer names to logical addresses (IP address) or physical addresses (MAC addresses)
Define: Domain Name System (DNS)
A name resolution protocol used on all TCP/IP networks that resolves domain names to IP addresses.
Define: Server Message Block (SMB)
A Layer 7 protocol that supports sharing folders and files.
SMB
Port #
TCP port: 445
What are the two halves of DNS?
Resolvers and name servers (DNS servers)
What do DNS resolvers do?
Query name servers with a name to get its associated IP address.
This is called a recursive lookup.
What do DNS name servers do?
They hold the actual name and IP DNS records in a database called a zone.
How are the DNS name servers arranged?
In a hierarchical, interlinked fashion, with DNS root servers dispersed around the world.
What do DNS root servers do?
They delegate name resolution to more-specific DNS systems.
What do Top-Level Domain (TLD) servers do?
They handle the top-level domain (TLD) names, such as .com, .org, .net, .edu, .gov, .mil, .int, and delegate to domain-specific name servers (authoritative name servers).
What do domain specific name servers (authoritative name servers) do?
They hold the domain’s zone that stores the actual IP addresses a computer needs to communicate with a domain’s servers.
These are the domain names such as google in www.google.com.
What is a Fully Qualified Domain Name (FQDN)?
A complete DNS name, including the host name and all its domains in order.
It is written left to right with the host name first, then the domains in order moving up the DNS tree, to the root on the far right.
ex. www.google.com. (Internet FQDN)
ex. george-wks.sales.dallas. (Network FQDN)
What is a name server?
A name server is software that responds to queries about DNS zones.
A single name server can be authoritative for one or more domains.
What is a DNS zone?
A zone is a container for a single domain that gets filled with records.
What is a DNS record?
A record attaches a piece of data to a name in the DNS tree. There are different types of records used.
What is a zone transfer?
In a network with a primary name server and one or more secondary name servers, a zone transfer is a process that propagates new records to the other name servers in the network.
What do name servers need to know about the other name servers within a network?
The name and IP address of the primary name server, as well as the name and address of every secondary name server.
What name server in a network with multiple name servers, is the authoritative name server for that network?
The primary name server.
What is the serial field in a DNS name server?
A special value that gets advanced when new data is added to a name server.
Secondary name servers check to see if their serial field matches the primary name server’s serial field to know if they need to request a zone transfer for updated data.
What is a forward lookup zone for DNS?
It enables a system to determine an IP address by knowing the FQDN.
What is a reverse lookup zone for DNS?
It enables a system to determine an FQDN by knowing the IP address.
A few low-level functions (like mail) and some security programs depend on reverse lookup zones.
In a Windows command prompt, what do you type to see a host’s DNS cache?
ipconfig /displaydns
What is a DNS recursive lookup?
A request from a client to it’s DNS server for the IP address attached to a FQDN.
What is a DNS iterative lookup?
The whole process of a client’s DNS server asking each name server from the root down.