A client workstation on VLAN 20 () is unable to access an HTTPS service hosted on a server in VLAN 50 (). Following the CompTIA network troubleshooting methodology, in what sequence should a network technician perform the following steps to diagnose and resolve this connectivity issue?
- 1Verify local network layer settings with `ipconfig /all` and test ICMP connectivity to the local default gateway ().
- 2Execute `traceroute 10.50.0.100` from the workstation to identify the exact router hop where packet forwarding fails.
- 3Inspect the inbound and outbound Access Control Lists (ACLs) on the intervening router interface to check for TCP port 443 filtering.
- 4Modify the interface ACL by inserting an explicit `permit tcp any host 10.50.0.100 eq 443` rule prior to the implicit deny statement.
- 5Attempt an HTTPS connection to from the workstation browser to confirm end-to-end functionality.
Answer
The correct troubleshooting sequence follows the standard CompTIA methodology: verify local IP settings and gateway connectivity (`item_1`), trace the routing path to find the drop location (`item_2`), inspect ACL statements on the dropping interface (`item_3`), apply the necessary ACL permit modification (`item_4`), and verify service restoration from the client (`item_5`).
The correct sequence strictly adheres to the standard CompTIA network troubleshooting methodology: 1) Identify the problem starting with local gateway verification (`item_1`), 2) Establish a hypothesis of remote routing/filtering failure via `traceroute` (`item_2`), 3) Test hypothesis by evaluating ACL rules on the gateway router (`item_3`), 4) Implement the solution by updating the ACL permit statement (`item_4`), and 5) Verify full system functionality by testing client HTTPS access (`item_5`).
Step-by-Step Solution
Key Concept
CompTIA Network Troubleshooting Methodology applied to Routing, Default Gateways, and ACLs