A network administrator is configuring DNS infrastructure for an enterprise web application hosted behind a cloud provider's elastic load balancer. The administrator must map the organization's root domain apex (`example.com`) to the load balancer's domain name (`lb-prod-948201.cloudprovider.net`). When attempting to create a CNAME record for `example.com`, the primary DNS server fails to commit the change. The administrator executes the following diagnostic query against the local authoritative DNS server:
text
$ dig @192.168.1.10 example.com SOA +noall +answer +authority
;; ANSWER SECTION:
example.com. 3600 IN SOA ns1.example.com. hostmaster.example.com. 2026072701 7200 3600 1209600 3600
;; AUTHORITY SECTION:
example.com. 3600 IN NS ns1.example.com.
Which of the following DNS record implementations will successfully map the root domain apex to the cloud load balancer hostname without violating standard DNS specifications?
- An ALIAS (or ANAME) record at the zone apex, which dynamically resolves the target hostname to IP addresses for incoming client queries.Cevap
- BA standard CNAME record at the zone apex after removing the existing SOA and NS records to prevent resource record coexistence conflicts.
- CA SRV record at the zone apex configured to route all HTTP traffic to the load balancer domain over TCP port 53.
- DA PTR record at the zone apex mapping `example.com` directly to port 443 on the load balancer host.