Is it the network or the machine? How to tell in 60 seconds
The short answer: compare two devices, then split the path. Run the same speed test on your computer and on your phone, on the same Wi-Fi, in the same spot. Both slow → it's the network. Only one slow → it's that machine. Then ping your router and an internet address: if the router answers fast but the internet doesn't, the fault is past your house — the ISP side. Those two checks take about a minute and settle most cases.
"The internet is slow" is the most common complaint in computing, and the least specific. The slowness you feel is one number — but it's produced by two very different suspects: the network (Wi-Fi, router, cabling, DNS, your ISP) and the machine (CPU, memory, drivers, VPNs, security software). Fixing the wrong one wastes an evening. This page is the fast, honest way to split them.
Below is the text version of the video. Every command was run on a real Windows machine on 4 September 2026 and every line of output is shown exactly as it printed, including the two results that look like problems and are not.
Commands used in this video
In on-screen order. All of these run in Command Prompt or PowerShell on any Windows machine, nothing to install.
ipconfigping 192.168.0.1Replace 192.168.0.1 with the Default Gateway address that ipconfig printed on your machine.
tracert -d 1.1.1.1ping 1.1.1.1ping google.comping thishostdoesnotexist.exampleWhat it actually printed
Colour key, the same as the video: green is the healthy line, amber is the line people misread.
Read the Default Gateway line: that address is your router, the first hop out of the house.
> ipconfig Default Gateway . . . . . . . . . : 192.168.0.1
Read the loss figure, then remember this machine was online the whole time: most home routers simply do not answer a ping aimed at themselves.
> ping 192.168.0.1 Pinging 192.168.0.1 with 32 bytes of data: Request timed out. Request timed out. Request timed out. Request timed out. Packets: Sent = 4, Received = 0, Lost = 4 (100% loss),
Read hop 1 only. Hop 1 is your router, and the same router that showed 100% loss answers in 1 ms, three for three.
> tracert -d 1.1.1.1 Tracing route to 1.1.1.1 over a maximum of 8 hops 1 1 ms <1 ms <1 ms 192.168.0.1
Read the loss and the average: 0% loss and about 22 ms is what a healthy home connection looks like, and a number was used instead of a name on purpose.
> ping 1.1.1.1 Pinging 1.1.1.1 with 32 bytes of data: Reply from 1.1.1.1: bytes=32 time=22ms TTL=57 Reply from 1.1.1.1: bytes=32 time=22ms TTL=57 Reply from 1.1.1.1: bytes=32 time=23ms TTL=57 Reply from 1.1.1.1: bytes=32 time=22ms TTL=57 Packets: Sent = 4, Received = 4, Lost = 0 (0% loss), Minimum = 22ms, Maximum = 23ms, Average = 22ms
Read the address in square brackets on the first line: the name was turned into a number before the first packet left, which means DNS is working.
> ping google.com Pinging google.com [64.233.179.100] with 32 bytes of data: Reply from 64.233.179.100: bytes=32 time=33ms TTL=107 Reply from 64.233.179.100: bytes=32 time=34ms TTL=107
Read the wording: this is not a timeout, it never sent anything, and that signature is DNS rather than connectivity.
> ping thishostdoesnotexist.example Ping request could not find host thishostdoesnotexist.example. Please check the name and try again.
Read it as a ladder: small inside the house, one honest step up at hop 2, then broadly flat, and a starred hop 4 with healthy hops after it is noise.
> tracert -d 1.1.1.1 1 1 ms <1 ms <1 ms 192.168.0.1 2 16 ms 17 ms 16 ms 216.160.151.254 3 21 ms 20 ms 19 ms 71.36.254.1 4 * * * Request timed out. 5 * 22 ms 21 ms 4.69.219.74 6 21 ms 21 ms * 4.71.42.142 7 23 ms 23 ms 23 ms 172.68.32.12 8 23 ms 23 ms 23 ms 1.1.1.1
Three results that look like problems and are not
The video has two of these, and they are the two most common false alarms in home troubleshooting.
Pinging my own router returns 100% packet loss. Is my router down?
Usually not. The router in the video returned four timeouts and 100% loss while the machine was online, downloading and browsing the whole time. A great many home routers are configured not to answer a ping addressed to themselves while forwarding all real traffic normally. Silence here is not evidence of a fault. Ask the router a different way: run tracert -d 1.1.1.1 and read hop 1. Hop 1 is your router, and in the video it answered in 1 ms, three times out of three.
One hop in my tracert shows * * * Request timed out. Is that where the problem is?
Not if the hops after it answer normally. In the video hop 4 timed out with three stars while hops 5 through 8 all answered at normal speed, so traffic clearly went straight through hop 4. Plenty of routers along the way deprioritise or ignore the courtesy replies tracert depends on while forwarding real traffic without hesitation. A starred hop with healthy hops after it is noise. What you are hunting for is a hop where the time jumps up and stays up for every hop after it. That link carries the delay, and where it sits tells you whose problem it is: before your provider's first hop it is yours, after it, it is theirs.
The checklist
- Second device also bad: look at the network. Second device fine: look at that machine.
- Router silent to ping: that is normal. Check hop 1 of a
tracertinstead. - Number reachable but name not: that is DNS.
- Latency that jumps at one hop and stays high: that link owns the delay, and which side of your router it sits on tells you who fixes it.
- Run those in order and you will land on the right link nearly every time, on any machine, without installing a thing.
Watch the video
Chapters
- The question
- The four links every problem lives on
- The test that needs no tools
- Pinging your own router (and why silence is normal)
- Asking the router a different way: tracert hop 1
- Reaching the internet by number
- Bringing names into it: spotting DNS
- Reading the whole path as a ladder
- The checklist
- Doing this on a fleet
The 60-second method
- The two-device test. Same speed test (any of them — ours is here), two devices, same Wi-Fi, same spot. Two slow devices can't both be broken the same way — that's the network. One slow device while its neighbor flies — that's the machine.
- Split the path. Open a terminal and ping your router, then the internet:
ping 192.168.0.1(your gateway — find yours with this guide)
ping 1.1.1.1(the internet)
Router fast (1–5 ms, no loss) + internet slow or dropping → the problem is past your router, on the ISP side. Router itself slow or lossy from one machine → the problem is inside the house, or inside that machine. - Glance at the machine. Task Manager (Windows) or Activity Monitor (Mac): CPU pinned near 100%? Memory maxed? Disk thrashing? A machine drowning in its own work makes a perfect network look broken.
Where the fault can hide
Every click you make crosses the same chain: your machine → Wi-Fi → router → modem → ISP → the internet. A fault anywhere in the chain feels identical from the couch — a spinner. The whole game is finding which link broke, and the checks above walk the chain from your keyboard outward.
Symptom table: what it usually means
| What you see | Usual culprit | Why |
|---|---|---|
| Every device in the house is slow | Network | Shared fault upstream — router, modem, or ISP |
| Only one computer is slow | Machine | The network serves everyone else fine |
| Speed test is fine, but everything feels slow | Machine | Local: CPU, RAM, disk, browser, or malware |
| Video calls stutter, downloads are fine | Network | Latency/jitter problem, not bandwidth — often Wi-Fi |
| Works on Ethernet, not on Wi-Fi | Network | Wireless-side: signal, interference, channel, or the adapter |
| Websites fail but pings succeed | Either | Usually DNS — test if it's DNS; can be set per-machine or per-network |
| Slow only at certain times of day | Network | Congestion — your ISP's neighborhood segment at peak hours |
| Slow right after startup, then normal | Machine | Startup programs and updates competing for disk/CPU |
Say it precisely: the two kinds of fault
- Network fault
- A failure outside your device: weak Wi-Fi signal or interference, an overloaded router, failing modem, DNS not resolving, or congestion and outages on the ISP side. Fingerprint: more than one device suffers.
- Machine fault
- A failure inside your device: exhausted CPU or memory, an old or crashing network driver, a VPN or proxy inserted into the path, security software scanning every packet, or failing hardware. Fingerprint: the machine underperforms even on a healthy network.
The split matters because the fixes never overlap. Restarting the router will not fix a driver. Reinstalling Windows will not fix your ISP. Diagnosing first isn't perfectionism — it's the shortcut.
When you need evidence, not a feeling
One good speed test proves almost nothing — networks fail intermittently. The 3 p.m. slowdown that's gone by 3:20 is invisible to any spot check, and it's exactly the case where households blame the laptop, offices blame the "slow computer," and ISPs blame you. What settles arguments is the same checks, repeated over time, with timestamps: speed and latency from more than one device, gateway-vs-internet pings, Wi-Fi signal, and the machine's own vitals, logged across days.
You can do that by hand with a spreadsheet and discipline. Nobody does. That's the gap the tool below closes.
Or let something watch for you
Acutis Go is a free, 7 MB agent for Windows, macOS, and Linux that runs this page's method continuously — path, gateway, DNS, Wi-Fi signal, plus the machine's CPU, memory, drivers, and certificates — every 60 seconds. It states its conclusion in plain words: "Network issue — likely not your PC" or "This PC needs attention," with a confidence score. It's observe-only by construction: it reads signals and reports; it never changes settings, and it opens no inbound ports.
Frequently asked questions
How do I know if it's my Wi-Fi or my laptop?
How can I tell if my internet is slow because of my ISP?
192.168.1.1) and then 1.1.1.1. Router fast + internet slow or lossy → the fault is past your router, on the ISP side. Repeat it a few times across the day; ISP congestion is usually time-of-day shaped.Why is the internet slow on only one device?
Does a speed test tell me whether it's the network or my computer?
How do I prove to my ISP that the problem is on their side?
What free tool tells me if it's the network or the machine automatically?
What's the difference between a network fault and a machine fault?
My PC won't connect to Wi-Fi but other devices will. What does that mean?
How can I tell if my computer is connected to a network?
ipconfig and look for an IPv4 address that is not 169.254.x.x (that range means it never got one). Second, can it reach the router: ping your gateway. An address plus a reply means you are on the network, whether or not the internet beyond it works. Those are separate questions and confusing them is the most common wrong turn.Is a network the same as Wi-Fi?
Why is my computer not connecting to the internet even though I have internet?
ping 1.1.1.1 (an IP, no DNS involved). If the IP replies but names do not resolve, it is DNS. If neither replies while other devices work, look at that machine's VPN, proxy and firewall settings before touching the router.Stop guessing — get the verdict on every machine
One agent per computer, a plain answer per problem: network, or machine. Free, observe-only, no credit card.
Get Acutis Go, free
Acutis