nerdexam
F5

101 · Question #504

HTTPs traffic is not working properly. What is the likely reason for the issue?

The correct answer is C. The server is not listening on TCP 443. HTTPS traffic uses TCP port 443, and if the server is not listening on that port, HTTPS connections will fail.

Section 1: OSI Model, Network, and Application Delivery Basics

Question

HTTPs traffic is not working properly. What is the likely reason for the issue?

Exhibit

101 question #504 exhibit

Options

  • A
    1. 0 0.0 0 is an invalid address in netstat.
  • B
        1. 0.0 80 should be in an active stale
  • CThe server is not listening on TCP 443
  • DThe server is not listening on UDP 80

How the community answered

(42 responses)
  • A
    2% (1)
  • C
    95% (40)
  • D
    2% (1)

Why each option

HTTPS traffic uses TCP port 443, and if the server is not listening on that port, HTTPS connections will fail.

A0. 0 0.0 0 is an invalid address in netstat.

0.0.0.0 is a valid wildcard listen address in netstat, meaning the service is accepting connections on all interfaces, so this is not an error condition.

B0. 0. 0. 0.0 80 should be in an active stale

HTTP on port 80 being in any state is unrelated to an HTTPS failure on port 443; the two services are independent.

CThe server is not listening on TCP 443Correct

HTTPS (HTTP over TLS/SSL) operates exclusively on TCP port 443 by default. If a netstat or port check reveals the server is not listening on TCP 443, incoming HTTPS requests will be refused or time out, causing the observed traffic failure. Confirming the service is bound to TCP 443 is the first diagnostic step for HTTPS connectivity issues.

DThe server is not listening on UDP 80

HTTPS uses TCP, not UDP, and port 80 is for plain HTTP, not HTTPS; a server not listening on UDP 80 has no bearing on HTTPS traffic.

Concept tested: HTTPS protocol port and transport layer requirements

Source: https://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xhtml

Topics

#HTTPS#TCP port 443#network troubleshooting#server listening

Community Discussion

No community discussion yet for this question.

Full 101 Practice