A network technician is troubleshooting an issue where client machines on the local network cannot access an internal secure web application hosted at `https://app.corp.local`. The technician executes `nslookup app.corp.local` on a client machine, which successfully resolves `app.corp.local` to IP address `10.10.20.15`. The technician then connects remotely to the server at `10.10.20.15` and runs the `netstat -ano` command, obtaining the following output snippet:
Proto Local Address Foreign Address State PID
TCP 10.10.20.15:80 0.0.0.0:0 LISTENING 2044
TCP 10.10.20.15:8080 0.0.0.0:0 LISTENING 3112
UDP 10.10.20.15:53 *:* 1088
Based on the command output and scenario details, which of the following is the primary cause of the connection failure?
- The web application service on the server is not bound or listening on TCP port 443.Answer
- BThe DNS server is missing an AAAA record for the host app.corp.local.
- CThe command-line DNS lookup utility failed because it received a non-authoritative response.
- DThe secure web service is misconfigured to use UDP transport instead of TCP transport.