A network engineer is investigating why enterprise client endpoints fail to locate a local software update repository server. According to system documentation, client agents perform a DNS query to discover service location details, including the designated port number, priority, and weight for load balancing.
The engineer executes the following command during troubleshooting:
text
$ dig +noall +answer _update._tcp.corp.example.com
_update._tcp.corp.example.com. 3600 IN CNAME repo1.corp.example.com.
Based on the diagnostic output, which of the following actions must the administrator take on the authoritative DNS server to resolve the discovery issue?
- Replace the CNAME record with an SRV record that specifies the target hostname, port number, priority, and weight for the service.Cevap
- BReplace the CNAME record with a PTR record that maps the service name directly to the IPv4 address of the update repository server.
- CReconfigure the authoritative DNS server to listen exclusively on TCP port 53 to allow larger service response payloads.
- DModify the query name from TCP port 53 to UDP port 80 in order to match the HTTP transport port of the web repository.
Cevap
Replace the CNAME record with an SRV record that specifies the target hostname, port number, priority, and weight for the service.
The correct answer is to replace the CNAME record with an SRV record. SRV records use the standard format `_service._proto.name` (e.g., `_update._tcp.corp.example.com`) and return priority, weight, port number, and target hostname. CNAME records only provide a domain alias and lack port and load-balancing parameters.
Adım Adım Çözüm
Anahtar Kavram
DNS SRV (Service Location) Record Configuration