A network technician is troubleshooting an issue where a client workstation () cannot access a web application hosted on a remote server (). Place the following diagnostic and remediation steps in the correct chronological order, adhering to standard CompTIA troubleshooting methodology from initial local verification through resolution.
- 1Ping the local default gateway () from the client workstation to confirm local Layer 3 connectivity.
- 2Execute a `traceroute 172.16.20.50` command from the workstation to identify the specific hop where packet forwarding stops.
- 3Access the router where traffic halted and execute `show ip route` to check if a valid route to exists.
- 4Inspect interface Access Control Lists using `show ip access-lists` on the router to verify if traffic is blocked by an explicit or implicit deny rule.
- 5Modify the ACL to permit traffic from to and test end-to-end web access to verify full resolution.
Answer
The correct troubleshooting sequence is: 1) Ping the local default gateway, 2) Execute traceroute to locate the failing hop, 3) Check the routing table on the failing router, 4) Inspect interface ACLs for filtering rules, and 5) Modify the ACL and perform end-to-end verification.
The correct order follows the standard bottom-up/top-down structured troubleshooting approach: first verify local default gateway connectivity, then use path detection (traceroute) to find the failure point, inspect the routing table on that router, check for restrictive ACL filtering rules, and finally apply the fix and verify end-to-end reachability.
Step-by-Step Solution
Key Concept
Structured network troubleshooting methodology for routing, default gateways, and ACL filtering.
Estimated Time:2m 0s