Difficulty: Easy
Correct Answer: Ping the address of the local host
Explanation:
Introduction / Context:
Troubleshooting TCP/IP should proceed from the inside out. Verifying the local stack first isolates configuration or driver issues on the host before involving switches, routers, DNS, or Internet reachability. A systematic progression avoids chasing external problems when the fault is local.
Given Data / Assumptions:
Concept / Approach:
The first active test is to ping the local host address (commonly 127.0.0.1 or the host’s own assigned IP). This confirms the IP stack, ICMP handling, and internal loopback interface. Only after local verification should you proceed to test the default gateway, same-subnet hosts, remote routers, and finally Internet destinations.
Step-by-Step Solution:
Verification / Alternative check:
If loopback ping fails, the problem is local (stack or firewall). Success on loopback but failure to the gateway suggests link/VLAN issues rather than stack problems.
Why Other Options Are Wrong:
Common Pitfalls:
Jumping straight to Internet pings and misdiagnosing local adapter or driver problems as ISP issues; forgetting host firewalls may block ICMP.
Final Answer:
Ping the address of the local host.
Discussion & Comments