A network engineer is troubleshooting why internal workstations cannot access a newly deployed secure internal portal at `vault.corp.local`. The engineer executes `dig vault.corp.local` on a client workstation and captures the following terminal output:
;; QUESTION SECTION:
;vault.corp.local. IN A
;; ANSWER SECTION:
vault.corp.local. 300 IN CNAME sec-srv01.corp.local.
;; ADDITIONAL SECTION:
sec-srv01.corp.local. 300 IN A 10.200.5.25
Next, the engineer remotely accesses the destination server (`10.200.5.25`) and runs `netstat -tuln`, which displays:
Proto Recv-Q Send-Q Local Address Foreign Address State
tcp 0 0 10.200.5.25:8443 0.0.0.0:* LISTEN
udp 0 0 0.0.0.0:53 0.0.0.0:* LISTEN
When end users attempt to navigate to `https://vault.corp.local` using standard browser defaults, the request immediately fails with a "Connection Refused" error. Based on the command outputs provided, which root cause explains why clients are unable to connect?
- The web application daemon is listening on TCP port 8443 rather than standard HTTPS port 443, causing default client web requests to be rejected by the host.Answer
- BThe DNS lookup failed because the ANSWER section returned a CNAME canonical alias rather than an authoritative direct A record for vault.corp.local.
- CThe DNS server misconfiguration forced the host to resolve an MX mail exchanger record instead of an AAAA IPv6 host address.
- DThe web service is bound to UDP port 53, which is incompatible with TCP-based web browser sessions.