Speed up your Mac
Mac Wi-Fi Slow? How to Diagnose Whether It's the Mac or the Network
Slow Wi-Fi on your Mac but not other devices? Here's how to figure out whether your Mac, your router, or your ISP is the bottleneck.
Your phone loads pages fine. Your TV streams 4K without buffering. Your roommate’s laptop is normal. Only your Mac is slow on Wi-Fi. So is it the Mac or the network? Most people guess wrong, replace the wrong thing, and end up with the same problem.
Here’s how to actually diagnose it, and what to do once you know.
The first test: rule out the router
Run a speed test on your Mac (fast.com). Note the result. Walk to within 10 feet of your router. Run the test again. If the second result is dramatically faster — say, 50 Mbps in the room with the router, 10 Mbps from your desk — it’s a signal strength issue, not a Mac problem.
If both results are slow, the issue is more nuanced. Could be the router, the ISP, or your Mac’s networking stack.
To rule out the ISP: connect another device on the same Wi-Fi (phone, another laptop) and run fast.com on it from the exact same spot. If the other device is fast and your Mac is slow, the Mac is the issue. If both are slow, it’s network or ISP.
This takes five minutes and saves hours of misdirected fixes.
See what your Mac thinks the connection looks like
Hold Option and click the Wi-Fi icon in the menu bar. You’ll see hidden detail:
- PHY Mode — 802.11ac, ax (Wi-Fi 6), or older
- Channel — which frequency you’re on
- Tx Rate — your current connection speed in Mbps
- RSSI — signal strength in dBm (higher = stronger; -50 is great, -70 is weak, -80 is bad)
- Noise — interference; lower = better
Quick interpretation:
- Tx Rate near or above your ISP plan — Mac is fine, problem is upstream
- Tx Rate way below ISP plan — Mac’s connection to router is weak
- RSSI worse than -75 — signal is bad, move closer or fix router placement
- Noise above -80 — interference, consider switching channels
Fix 1: Forget and rejoin the network
This sounds dumb but it’s the single most effective Mac Wi-Fi fix. macOS caches network settings, and stale settings frequently cause persistent slowness.
- System Settings → Wi-Fi
- Click “Details” next to your network
- Click “Forget This Network”
- Reconnect by clicking the network name and entering the password
This clears the cached profile and lets your Mac negotiate fresh. About a third of “Mac Wi-Fi is slow” cases I’ve seen disappear after this single step.
Fix 2: Switch from 2.4 GHz to 5 GHz (or vice versa)
Most modern routers broadcast on both 2.4 GHz and 5 GHz bands. They behave very differently:
- 2.4 GHz: longer range, slower, more congested (microwaves, baby monitors, neighbors)
- 5 GHz: shorter range, faster, less crowded
- 6 GHz (Wi-Fi 6E): newest, fastest, very short range
Apple Macs auto-pick a band based on signal. They sometimes pick wrong — choosing 2.4 GHz because it has stronger signal, when 5 GHz would be much faster despite weaker signal.
If your router uses one network name for both bands, you can’t easily force a band. Workaround: log into your router and enable separate SSIDs for each band, then connect explicitly to the 5 GHz one.
Fix 3: Reset the network interfaces
When the underlying network stack gets confused, no amount of network setting changes helps. The fix is a manual reset:
- System Settings → Network
- Click the three dots → Manage Service Order
- Click Wi-Fi → minus button to remove it
- Click apply
- Click plus → add Wi-Fi back
This recreates the Wi-Fi service from scratch with default settings. You’ll have to reconnect to your networks after.
If that’s not enough, a more thorough reset:
- Quit any apps that might be using the network
- Open Finder → Go → Go to Folder →
/Library/Preferences/SystemConfiguration/ - Move these files to the Desktop (don’t delete yet):
com.apple.airport.preferences.plist,NetworkInterfaces.plist,preferences.plist - Restart your Mac
After restart, Wi-Fi will be re-set-up from scratch. Reconnect to your networks. If this fixes it, delete the files from Desktop. If not, move them back.
Fix 4: Watch for runaway network processes
Open Activity Monitor → Network tab. Sort by “Bytes Received.” Look for surprises:
- CloudKit — iCloud sync
- bird — iCloud Drive
- softwareupdated — macOS downloading updates in the background
- Spotify, Music — preloading content
- Backblaze, Carbonite, etc. — online backup
- Photos — uploading to iCloud Photos
- Dropbox, Google Drive, OneDrive — sync
A 30 GB iCloud upload will absolutely tank your Wi-Fi for everything else. Pause heavy syncs while you actually need bandwidth.
Fix 5: Check for a stuck DNS
Slow DNS feels like slow Wi-Fi. Pages take seconds to start loading, but once they start, they’re fast.
Test:
dig google.com
The Query time should be under 50 ms. Over 200 ms means slow DNS. Common causes:
- ISP’s DNS servers are slow (very common)
- Router’s DNS forwarding is buggy
- You’re using a DNS-over-HTTPS service that’s having issues
Switch to a faster DNS:
- System Settings → Network → click Wi-Fi → Details
- DNS tab → click + → add 1.1.1.1
- Click + again → add 8.8.8.8
- Click OK
These are Cloudflare and Google. Both are free, fast, and reliable.
Fix 6: Update macOS
Apple has shipped Wi-Fi performance fixes in many point releases. If you’re behind on updates, you might literally be running buggy networking code that’s been fixed.
System Settings → General → Software Update. Take the update if available.
Fix 7: Reset SMC (Intel Macs only)
Apple Silicon Macs don’t have an SMC anymore — power management is built into the SoC. But if you’re on an Intel Mac, the SMC controls Wi-Fi power, and a confused SMC can throttle Wi-Fi.
The reset varies by model. For most Intel laptops:
- Shut down
- Hold Shift+Control+Option+Power for 10 seconds
- Release all keys
- Press Power to start
For Intel desktops, unplug for 15 seconds, then plug back in.
Fix 8: Check for interference at home
5 GHz Wi-Fi is mostly clean. 2.4 GHz is a war zone. Things that interfere with 2.4 GHz:
- Microwave ovens (especially mid-cook)
- Baby monitors
- Bluetooth (some)
- USB 3.0 devices and cables (yes, really — they radiate at 2.4 GHz)
- Neighbors’ Wi-Fi if you live in an apartment
If your Mac’s Wi-Fi gets worse when you plug in a USB 3 hub or external SSD, the cable is leaking RF. Try a different (shielded) cable or move the device away from the antenna location (top of MacBook screen, or rear of iMac).
Fix 9: Reset the router
This is in every guide for a reason. Routers run for months or years without restart, and they accumulate problems. Unplug for 30 seconds, plug back in, wait 2 minutes for everything to come back up.
If a restart fixes it for a day and the problem returns, your router might be failing or overloaded. Routers are surprisingly cheap now ($60-100 buys a great one). If yours is more than 5 years old, replacement might be the answer.
Fix 10: Reset the SSL/TLS layer
Some “Wi-Fi feels slow” issues are actually broken HTTPS. macOS’s keychain or trust store has issues, every secure connection has to redo handshake validation, and pages take forever.
Diagnostic:
curl -v https://google.com
Look at how long the SSL handshake takes. Should be under 100 ms. Seconds means problem.
If you’re hitting this, it’s usually fixed by:
- macOS update
- Resetting Keychain (last resort, careful)
- Checking date/time on your Mac (massively wrong dates break SSL)
The cleanup angle
A Mac that’s bogged down generally feels like it has slow Wi-Fi even when the connection is fine. Reasons:
- Browsers compete for memory; pages render slowly even after they download fast
- Background processes eat bandwidth without notification
- Cache buildup makes browsers themselves slower to use
Sweep handles cache cleanup, surfaces large hidden files, and uninstalls apps that left LaunchAgents running in the background eating bandwidth. Free download, notarized by Apple.
When you’ve eliminated the Mac
If everything above checks out and your Mac genuinely connects to the router fine, but throughput is bad, the problem is upstream. Things to check:
- Router model — old 2.4 GHz-only routers cap out around 50 Mbps real-world
- Router placement — closer is better, away from metal/microwaves/aquariums
- Router firmware — get the latest from your router’s admin page
- ISP — a 100 Mbps plan that delivers 80 is normal; one that delivers 20 is broken
- Wiring — coax cable issues, splitters, old wiring can throttle real speeds
A good Mac on a bad router is fast for what the router can give. A bad Mac on a good router is slow regardless. Diagnose the right side of the equation before throwing money at hardware.