Why Can Users Ping But Not Reach a Linux Web Server?
A systems administrator is investigating why users cannot reach a Linux web server with a browser but can ping the server IP. The server is online, the web server process is running, and the link to the switch is up. Which of the following commands should the administrator run on the server first?
Community Votes
71% of anonymous learners picked answer B. Votes are pick records left by other test-takers — they are not the verified answer.
Community Insight
Evaluates the candidate's ability to prioritize rapid service-layer verification over deep packet analysis, with the common trap being premature use of packet capture tools.
This N10-009 scenario tests systematic network service troubleshooting when Layer 3 connectivity succeeds but application access fails. Community consensus confirms that verifying active port bindings via netstat is the most efficient initial diagnostic step.
Option C (tcpdump) is frequently chosen because test-takers instinctively want to inspect raw traffic, but capturing packets before confirming whether the service is actually listening on port 80 or 443 wastes valuable exam time and skips foundational checks.
Community Discussion (4 comments)
Comments & Corrections
No comments yet — spotted an error or have a note? Share it below.
Expert Analysis
Why the Answer Is Correct
When basic ICMP ping succeeds, Layer 3 reachability is confirmed, shifting focus to transport and application layers. Running netstat immediately reveals whether the web daemon is actively bound to TCP ports 80 or 443 and listening on the correct interface. This aligns with CompTIA’s structured troubleshooting methodology, which prioritizes quick configuration and state validation before deploying heavier diagnostic utilities.Why the Other Options Are Wrong
Traceroute maps intermediate routing hops, which is unnecessary since end-to-end IP connectivity is already proven by successful pings. Tcpdump performs deep packet inspection, making it a secondary tool for analyzing malformed requests or firewall drops after service binding is verified. ARP resolves IP-to-MAC address mappings at Layer 2, offering no insight into host-based service availability or port states.Community Comment Notes
Multiple high-voted comments reinforce that netstat must be checked first to validate port mapping and service binding, even when the underlying daemon appears active [2][3]. Contributors note that misconfigured port numbers or restricted interface bindings are frequent real-world culprits [4]. The strong vote distribution demonstrates clear alignment with standardized diagnostic workflows.Official Reference
Exam Strategy
Always confirm service binding and listening states before escalating to packet-level analysis. CompTIA consistently rewards candidates who apply the principle of least privilege to troubleshooting steps, selecting the fastest command that yields the highest diagnostic value first.
Related Analysis
Practice All N10-009 Questions
Access 100 questions with complete answers and detailed explanations.
View Full N10-009 Practice Test →