A network technician is troubleshooting an issue where remote users cannot reach an internal web server at IP address over a secure connection. The technician executes a diagnostic utility directly on the server to inspect network socket states, receiving the following output:
$ ss -tuln
Netid State Recv-Q Send-Q Local Address:Port Peer Address:Port
tcp LISTEN 0 128 0.0.0.0:22 0.0.0.0:*
tcp LISTEN 0 128 0.0.0.0:80 0.0.0.0:*
udp UNCONN 0 0 0.0.0.0:67 0.0.0.0:*
Based on the command output above, which of the following best explains why client HTTPS requests to `https://192.168.10.45` are failing?
- The web server daemon is not currently running or bound to listen on TCP port 443.Cevap
- BHTTPS requires UDP transport protocols, but the output indicates only UDP port 67 is bound.
- CThe server's local resolver returned a non-authoritative response, preventing port 443 socket activation.
- DThe network interface lacks an AAAA record, preventing IPv4 socket binding for encrypted web traffic.
Cevap
The web server daemon is not currently running or bound to listen on TCP port 443.
The `ss` (socket statistics) command with `-tuln` flags displays listening TCP and UDP sockets with numeric port formatting. Standard HTTPS traffic relies on TCP port 443. In the provided terminal output, only TCP ports 22 (SSH) and 80 (HTTP) are listed under the `LISTEN` state. Because TCP port 443 is missing from the list, the web server daemon is either stopped, misconfigured, or not bound to port 443.
Adım Adım Çözüm
Anahtar Kavram
Socket State Analysis using Command-Line Utilities
Tahmini Süre:2m 0s