A workstation on an enterprise network needs to establish a connection to an external host at . The workstation has no cached DNS entries for this domain. Place the operational steps of the standard recursive DNS resolution process in the correct chronological order from first to last.
- 1The client stub resolver checks its local cache and hosts file, then issues a recursive query to the configured local DNS resolver.
- 2The local DNS resolver sends an iterative query to a DNS Root Name Server ().
- 3The Root Name Server responds to the local resolver with a referral containing the NS records for the Top-Level Domain (TLD) servers.
- 4The local DNS resolver sends an iterative query to the TLD server and receives a referral to the authoritative name server for .
- 5The local DNS resolver queries the authoritative name server for , receives the Host IPv4 () record for , and returns the answer to the client.
Answer
The correct sequence starts with the client stub resolver querying the local recursive resolver, followed by iterative queries from the recursive resolver to the Root Name Server, the TLD server, and finally the Authoritative Name Server to obtain the host A record.
The correct order follows the standard DNS lookup traversal: local client stub resolver initiation -> iterative query to Root server -> referral to TLD server -> referral to Authoritative server -> authoritative answer returned to client.
Step-by-Step Solution
Key Concept
Iterative and Recursive DNS Resolution Hierarchy