Tier 1 · SOP-003 · Module 03 of 09

Wi-Fi & Network Connectivity

Diagnose and resolve wireless and wired network issues using layered troubleshooting. Master ipconfig, ping, and DNS commands every help desk tech needs to know.

Tier 1 — Help Desk SOP-003 Beginner Network Basics
📡

Phase 1 — Learn IT

Build your mental model of how networks work so you can think through problems, not just follow steps.

Why Networks Fail

Network connectivity is one of the most common issues you will troubleshoot. The key is knowing where in the stack the failure lives — a physical cable problem looks different from a DHCP failure, which looks different from a DNS outage. Jumping straight to "reinstall the driver" wastes everyone's time.

Most connectivity issues at Tier 1 fall into one of four buckets: physical layer problems, IP addressing failures, gateway/router issues, or DNS failures. The OSI model gives you a framework to test each layer methodically.

LayerWhat It ControlsCommon Failure SignsFirst Test
Physical (L1)Cable, NIC, Wi-Fi radioNo link light, "unidentified network"Reseat cable / toggle Wi-Fi
Data Link (L2)MAC address, switch portConnected but no internetCheck adapter in Device Manager
Network (L3)IP address, routing, DHCP169.254.x.x APIPA addressipconfig /all
Transport (L4)TCP/UDP portsSome apps work, others don'tFirewall / port check
Application (L7)DNS, HTTP, app protocolsBrowser says "server not found"ping 8.8.8.8 then nslookup

IP Addressing Explained

Every device on a network needs an IP address to communicate. When you run ipconfig you will see an IPv4 address, subnet mask, and default gateway. Understanding these three values tells you a lot about the problem.

⚠️

169.254.x.x = DHCP Problem, Not a Network Problem

Many techs see an APIPA address and assume the network is down. The physical connection may be fine — Windows just cannot reach the DHCP server to get an address. Always run ipconfig /release and ipconfig /renew first before escalating.

Why Wi-Fi Specifically Fails

Wired connections are binary — either the cable works or it doesn't. Wi-Fi has more variables: signal strength, band selection, authentication, driver issues, and interference all play a role.

CauseSymptomFix
Wrong password / bad profileAuthentication failed, can't joinForget network, reconnect fresh
Driver outdated or corruptAdapter missing from Device ManagerReinstall driver via Device Manager
IP conflictConnected but limited accessipconfig /release, /renew
DNS misconfiguredPing by IP works, browser failsSet DNS to 8.8.8.8 or flush DNS cache
Router / AP issueAll devices on network affectedReboot router; escalate if persistent
Wi-Fi disabled in BIOS/settingsNo adapter visible in OSCheck Fn key, Device Manager, BIOS
Captive portal not completedConnected to Wi-Fi but no internetOpen browser, complete login page

Your Network Diagnostic Toolkit

These five commands handle 90% of Tier 1 network troubleshooting. Run them in order — it's a systematic test from the inside out.

CommandWhat It DoesWhat to Look For
ipconfig /allShows full IP config for all adaptersIP address, gateway, DNS servers, DHCP enabled
ipconfig /releaseReleases current DHCP leaseRun before /renew when APIPA appears
ipconfig /renewRequests a new IP from DHCP serverShould get a valid 10.x or 192.168.x address
ipconfig /flushdnsClears DNS resolver cacheFixes stale or corrupt DNS entries
ping 8.8.8.8Tests connectivity to Google DNS by IPIf this works but browser fails, DNS is broken
ping google.comTests DNS resolutionIf this fails but ping 8.8.8.8 works, DNS issue confirmed
nslookup google.comQueries DNS server directlyConfirms DNS server address and resolution
netsh wlan show profilesLists saved Wi-Fi profilesFind corrupt profiles to delete
💡

The Ping Test Logic

Ping 127.0.0.1 first (loopback) → confirms TCP/IP stack works. Then ping gateway (from ipconfig) → confirms local network. Then ping 8.8.8.8 → confirms internet. Then ping google.com → confirms DNS. Each step narrows down the layer where the failure lives.

Key Terms

DHCP
Dynamic Host Configuration Protocol. Automatically assigns IP addresses, subnet masks, gateways, and DNS servers to devices when they join a network.
DNS
Domain Name System. Translates human-readable domain names (google.com) into IP addresses (142.250.x.x) that computers use to route traffic.
Gateway
Usually the router's IP address. All traffic destined for outside the local network is sent here first. A missing gateway means no internet.
APIPA
Automatic Private IP Addressing. When Windows can't reach a DHCP server, it self-assigns a 169.254.x.x address. Always indicates DHCP failure.
Subnet Mask
Defines which part of an IP address identifies the network vs. the device. Common value: 255.255.255.0 means first three octets = network.
NIC
Network Interface Card. The hardware component (physical or wireless) that connects a device to a network. Has a unique MAC address burned in.
📋

Phase 2 — Do IT

Execute the standard procedure. Follow every step exactly — this is how professionals handle network connectivity tickets.

SOP-003 · NETWORK CONNECTIVITY · REV 1.0

Wi-Fi & Network Connectivity Troubleshooting

Use this procedure for any ticket where a user reports inability to access the internet, network shares, or company resources. Work from Layer 1 upward. Document every command output.

01

Gather Symptoms & Scope the Issue

Ask: Is this one device or multiple? Wired or wireless? Does anything work (can they ping the gateway)? What changed recently? If multiple devices are affected, the problem is likely the router or ISP — escalate immediately rather than chasing individual devices.

02

Check Physical Layer First

For wired: confirm link light is on at both ends of the cable. Try a different cable and a different port on the switch. For wireless: confirm Wi-Fi is enabled (check the Fn key, airplane mode toggle, and Device Manager). Look for yellow exclamation marks on the adapter.

03

Run ipconfig /all and Assess IP Address

Open Command Prompt and run ipconfig /all. Check: Does the adapter have a valid IP (not 169.254.x.x)? Is the Default Gateway populated? Are DNS servers listed? Screenshot the output for your ticket notes.

04

Release and Renew DHCP Lease if Needed

If the IP is 169.254.x.x or missing: run ipconfig /release followed by ipconfig /renew. Run ipconfig /all again to confirm a valid address was obtained. If still no valid IP, move to step 5.

05

Test Connectivity Layer by Layer with Ping

Run: ping 127.0.0.1 (loopback) → ping [gateway IP]ping 8.8.8.8ping google.com. The first step that fails tells you the layer. If ping 8.8.8.8 works but google.com fails, DNS is broken. Document exactly which step failed.

06

Flush DNS Cache and Reset If DNS Is the Issue

Run ipconfig /flushdns. Then run netsh int ip reset and netsh winsock reset in an elevated Command Prompt. Restart the computer after winsock reset — it will not take effect without a reboot.

07

Forget and Reconnect to Wi-Fi Network

For wireless issues: go to Settings → Network & Internet → Wi-Fi → Manage known networks. Select the network and click Forget. Reconnect fresh with the correct credentials. This clears any corrupt profile or cached bad password.

08

Update or Reinstall Network Adapter Driver

Open Device Manager. Expand Network Adapters. Right-click the Wi-Fi or Ethernet adapter → Update driver. If device has a yellow exclamation: right-click → Uninstall device → reboot. Windows will reinstall the driver automatically. If that fails, download the driver from the OEM website.

Escalate to Tier 2 When

  • Multiple users on the same network segment are affected
  • DHCP /renew consistently returns no address despite physical connection confirmed
  • Ping to gateway fails from all devices (router/switch likely down)
  • Driver reinstall does not resolve adapter visibility
  • User requires static IP configuration with specific DNS settings
  • VPN connectivity issues after local network is confirmed working

Network Commands Cheat Sheet

CommandPurposeExpected Output
ipconfig /allFull IP configurationIP, subnet, gateway, DNS, DHCP state
ipconfig /releaseDrop DHCP leaseIP address cleared
ipconfig /renewGet new DHCP leaseNew valid IP assigned
ipconfig /flushdnsClear DNS cache"Successfully flushed the DNS Resolver Cache"
ping 127.0.0.1Test TCP/IP stack4 replies with 0ms latency
ping 8.8.8.8Test internet (no DNS)Replies confirm internet access
ping google.comTest DNS resolutionResolves to IP and replies
nslookup google.comQuery DNS directlyReturns DNS server and IP for domain
netsh winsock resetReset network stack"Winsock reset completed" (reboot required)
🎯

Phase 3 — Apply IT

Test your skills against real-world scenarios. Document like a pro and nail the interview questions.

Practice Tickets

SCENARIO 01

The APIPA Mystery

"I can't access any websites or network drives. My laptop was working fine yesterday. I'm in the office and connected to the office Wi-Fi — I can see the network name in the taskbar."
Your Tasks
  • 1.What is your first diagnostic command and what output are you looking for?
  • 2.The IP shows 169.254.33.17. What does this tell you and what do you run next?
  • 3.After /release and /renew, they get a valid IP. The browser still shows "no internet." What is your next test?
  • 4.Ping 8.8.8.8 succeeds, ping google.com fails. What is broken and what do you run?
  • 5.Write the ticket resolution note using proper documentation format.
SCENARIO 02

The Missing Adapter

"My Wi-Fi just disappeared. I don't see it in the taskbar at all. The Fn+F8 button doesn't do anything. I'm running Windows 11 on a company laptop."
Your Tasks
  • 1.What tool do you open first and what are you looking for?
  • 2.You see the Wi-Fi adapter with a yellow exclamation. What does this mean and what are your next two steps?
  • 3.After uninstalling and rebooting, the adapter appears but the driver is still showing as error. What do you do?
  • 4.Where do you get the correct driver and what information do you need from the machine?
  • 5.At what point would you escalate this ticket?
SCENARIO 03

The Whole Floor is Down

"Nobody on the 3rd floor can access the internet. We're all connected to Wi-Fi but nothing loads. The phones with cellular data work fine."
Your Tasks
  • 1.Based on the scope of the issue, what is the most likely problem category?
  • 2.Should you run ipconfig /release and /renew on all 30 machines? Why or why not?
  • 3.What do you check first in the network closet / comms room?
  • 4.Who do you escalate to and what information do you provide them?
  • 5.Write a brief incident note that you would log while the Tier 2 team investigates.

Document Your Resolution

Fill in this ticket template for Scenario 01 above. Good documentation is what separates professional techs from hobbyists.

FieldYour Entry
User Reported
Initial Findings
Root Cause
Steps Taken
Resolution
Verification

Questions You'll Face

Interview Question 01

"Walk me through how you would troubleshoot a computer that is connected to Wi-Fi but can't access the internet."

Strong Answer Framework

Start by scoping the issue — is it one device or many? If multiple, the problem is likely the router or ISP. For a single device, I run ipconfig /all to check the IP address. An APIPA address (169.254.x.x) means DHCP failed, so I run /release and /renew. Once a valid IP is confirmed, I run a layered ping test — gateway first, then 8.8.8.8, then google.com. If 8.8.8.8 succeeds but google.com fails, I flush DNS with ipconfig /flushdns. If everything pings but the browser still fails, I check proxy settings. I document every command and output in the ticket.

Interview Question 02

"What does a 169.254.x.x IP address mean and how do you fix it?"

Strong Answer Framework

A 169.254.x.x address is an APIPA address — Automatic Private IP Addressing. It means Windows tried to get a DHCP lease and couldn't reach the DHCP server, so it self-assigned a fallback address. The fix is to run ipconfig /release to drop the current state, then ipconfig /renew to request a new lease. If it persists, I check the physical connection and look at whether other devices on the same network can get IPs — if not, the DHCP server itself may be down, which means escalation.

Interview Question 03

"What is the difference between pinging 8.8.8.8 and pinging google.com, and why does that distinction matter?"

Strong Answer Framework

Pinging 8.8.8.8 tests internet connectivity without using DNS — it goes directly to Google's DNS server by IP. Pinging google.com requires DNS resolution first, converting the name to an IP, then sending the ping. If 8.8.8.8 works but google.com fails, DNS is broken even though the internet connection itself is fine. This matters because many users think "the internet is down" when actually their TCP/IP works perfectly — they just have a DNS issue, which is a much faster fix than a connectivity problem.

Completion Checklist

I can explain the OSI model layers and which commands test each one
I understand what an APIPA address (169.254.x.x) means and why it occurs
I can run ipconfig /all and interpret every field in the output
I can execute a layered ping test and identify the exact layer where connectivity breaks
I know how to forget and reconnect to a Wi-Fi network to clear a corrupt profile
I can update or reinstall a network adapter driver in Device Manager
I completed all three practice scenarios and wrote at least one full ticket

Continue Your Training

Module 03 · SOP-003
Finished all three phases? Mark this module complete.