My internet speed has been very slow after switching to Fedora. When I run a speed test on Windows 11 I get between 400-500Mb/s from my 500Mb Wi-Fi. However, on Fedora 44 I get 30Mb/s if I’m lucky. I have scoured a bit on the internet for driver issues or router issues and have tinkered with general settings as well as router settings to no avail. I have reset everything back to their default state.
I am not using ethernet, but a wireless network and with both 2.4GHz and 5Ghz connections both speeds never surpass 50MB/s.
Results of hostnamectl
Static hostname: AM
Icon name: computer-laptop
Chassis: laptop 💻
Machine ID: 3a53adada2f446d9b83ba691f88de111
Boot ID: b3ee5b1518d64523a3ccbc9be0784ba1
Operating System: Fedora Linux 44 (KDE Plasma Desktop Edition)
CPE OS Name: cpe:/o:fedoraproject:fedora:44
OS Support End: Wed 2027-05-19
OS Support Remaining: 1y 1w
Kernel: Linux 7.0.4-200.fc44.x86_64
Architecture: x86-64
Hardware Vendor: Dell Inc.
Hardware Model: XPS 15 9530
Hardware SKU: 0BEB
Hardware Version: A00
Firmware Version: 1.29.0
Firmware Date: Wed 2025-12-24
Firmware Age: 4month 2w 2d
I wonder if it’s a power management issue; I had one of those a while back.
Does running sudo iw dev wlp0s20f3 set power_save off make anything better? That command turns off power management for your wifi adapter. You can verify it took by running iw dev wlp0s20f3 get power_save.
Setting that and then restarting likely undid the change… If you run the power_save off command and then check your speeds without rebooting, is there any change?
I added to a config file that sets it in the NetworkManager in /etc. After running iw dev wlp0s20f3 get power_save it returned
Power save: off
Additionally, restarted NetworkManager with sudo systemctl restart NetworkManager, and when running the previous command confirmed that power saving was off.
A quick search tells me that freq: 2462 is channel 11 on 2.4 GHz; that may be the culprit, since 2.5 GHz is pretty slow.
Is your router set up to broadcast both 2.4 & 5? If so, is the 5 GHz band a different SSID? If not, maybe your router is forcing you to connect the 2.4 GHz for some reason.
I am currently connected to the 2.5GHz, it does provide both 5GHz and 2.5GHz. Both speeds are extremely slow. I just connected to 5GHz, here is the test.
Notice that the latter connection on the 5G band provides about 4X the speed of the 2.4G band. (rx & tx bitrates)
Try the speed test while connected to 5G.
Let’s make sure the power save is actually off with: iw dev wlp0s20f3 get power_save and cat /sys/module/iwlwifi/parameters/power_save.
If both return off or 0, that’s not the issue.
How about we also check for RX stuff. Try downloading something and run: watch -n1 "iw dev wlp0s20f3 link | grep bitrate"
The bitrate should climb and if it doesn’t, we should be able to troubleshoot from there.