CV0-003 · Question #169
A company has changed their web hosting policy and now requires SSL certificates on all web servers. Users are reporting that they can no longer access an internal website. Which of the following…
The correct answer is C. netstat. To verify whether port 443 is actively listening on a server, the netstat command displays all open connections and ports in a LISTEN state on the local machine.
Question
A company has changed their web hosting policy and now requires SSL certificates on all web servers. Users are reporting that they can no longer access an internal website. Which of the following commands should the administrator run to determine if port 443 1s listening? (Select two.)
Options
- Atraceroute
- Btelnet
- Cnetstat
- Dipconfig
- Enslookup
How the community answered
(28 responses)- B4% (1)
- C86% (24)
- D7% (2)
- E4% (1)
Why each option
To verify whether port 443 is actively listening on a server, the netstat command displays all open connections and ports in a LISTEN state on the local machine.
traceroute maps the network path (hops) to a remote host and does not provide any information about listening ports on the local or destination server.
telnet can attempt a connection to a remote port to test reachability from a client perspective but does not enumerate which ports are in a LISTEN state on the local server itself.
The netstat command displays all active TCP/UDP connections and ports currently in a LISTEN state on the local system. Running 'netstat -an' will show port 443 listed as LISTENING if SSL has been properly configured on the web server, making it the definitive tool for confirming whether the server is bound to port 443. This directly answers the diagnostic question without requiring an external connection attempt.
ipconfig displays IP address configuration for network adapters and has no capability to report on listening port status.
nslookup queries DNS to resolve hostnames to IP addresses and cannot determine whether a specific port is open or listening.
Concept tested: Using netstat to verify listening port status
Source: https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/netstat
Topics
Community Discussion
No community discussion yet for this question.