An enterprise client workstation attempts to access an external web application at `app.partner.example.net` for the first time. Arrange the steps of the complete DNS resolution process in the correct chronological order, starting from the client's initial lookup request to the final IP address retrieval.
- 1The client operating system inspects its local hosts file and DNS resolver cache for an existing mapping of app.partner.example.net.
- 2The client host issues a recursive DNS query over UDP port 53 to its configured internal primary DNS resolver.
- 3The internal recursive DNS server issues an iterative DNS query for app.partner.example.net to a DNS root name server.
- 4The DNS root name server returns a referral response containing the IP addresses of the .net Top-Level Domain (TLD) authoritative servers.
- 5The internal recursive DNS server queries the .net TLD name server and receives a referral to the authoritative DNS server for partner.example.net.
- 6The internal recursive DNS server queries the partner.example.net authoritative server, receives the A record, caches the entry, and sends the IP address answer to the client host.
Cevap
The correct sequence begins with the client host checking its local resolver cache and hosts file, followed by sending a recursive query to the local internal DNS resolver. The internal resolver then performs iterative queries starting at the root server, proceeding to the .net TLD server, and finally querying the authoritative server for partner.example.net before caching the record and returning the resolved IP address to the client.
The proper sequence follows standard operating system and DNS protocol operational order: local client cache and hosts file check -> client recursive query to the local internal DNS resolver -> internal resolver iterative query to the root name server -> root referral to the TLD server -> TLD referral to the domain authoritative server -> authoritative answer returned, cached by the internal resolver, and forwarded to the client.
Adım Adım Çözüm
Anahtar Kavram
DNS Lookup and Name Resolution Roles in Enterprise Networks
Tahmini Süre:2m 0s