Windows Networking Troubleshooting Basics
This lesson teaches how to troubleshoot common Windows network problems by breaking the issue into smaller checks: adapter, IP address, gateway, DNS, and connectivity. This is one of the most important help desk skill sets because “no internet” can mean many different things.
What this lesson covers
- How to think through “no internet” step by step
- What adapter, IP, gateway, and DNS each tell you
- How to use
ipconfigandpingas first tools - Why connectivity by IP and by name are not the same thing
Main lesson
“No internet” is a symptom, not a diagnosis.
The job is to figure out where the path breaks: no adapter, no IP, bad route to gateway, no outside reachability, or DNS failure.
Windows Networking Workflow
Use this sequence before changing settings.
Adapter Check
Before anything else, confirm the network adapter is present and active.
- Wi-Fi or Ethernet enabled?
- Windows sees the adapter?
- Link looks up?
IP Address Check
The IP address tells you whether the computer got addressing information.
- No valid IP = no real network identity
- APIPA-style address can indicate DHCP trouble
ipconfigis a core first tool
Gateway Check
The gateway is the path out of the local network.
- No working gateway = no outside reachability
- You can test it with
ping - Gateway failure is not the same as DNS failure
DNS Check
DNS translates names into IP addresses.
- If IP connectivity works but names fail, suspect DNS
- This is why “connected” does not always mean “working normally”
- Hostname failure is often narrower than total network failure
Core Commands
How a Support Tech Should Think
User report: “My laptop says connected, but nothing loads.”
Symptom
The user cannot browse, but that alone does not prove where the failure is.
Best first checks
Confirm the adapter and review IP information with ipconfig.
What to test next
Test gateway reachability, then test an outside IP, then test a hostname.
Correct habit
Use the results to narrow the fault instead of jumping to random resets.
How to Separate Connectivity from DNS
User report: “The network looks up, but websites still fail.”
Test 1
ping 8.8.8.8 checks outside reachability by IP.
Test 2
ping example.com checks name resolution plus reachability.
Interpretation
If IP works but hostname fails, the issue may be DNS rather than total internet failure.
Correct habit
Do not call every browsing failure a router outage. Narrow it first.
Good Networking Habits
- Check adapter, IP, gateway, and DNS separately
- Use simple tests in a sequence
- Let results narrow the problem
- Verify after making a change
Bad Networking Habits
- Calling every issue “Wi-Fi is broken”
- Resetting everything before gathering evidence
- Confusing DNS failure with total loss of internet
- Changing multiple settings without tracking results
Quick Network Map
Micro-Quiz
Score at least 75% to unlock the next lesson. After grading, each question shows rationale.