Hello,
I’ve been trying Fedora (and Linux in general) for about 3 weeks now. Everything works great so far except my wifi card.
When I play online games I always get high ping shortly followed by disconnect.
I tried a couple of things I found on the internet but nothing seems to work. What I did so far:
lspci
21:00.0 Network controller: Intel Corporation Wi-Fi 6 AX210/AX211/AX411 160MHz (rev 1a)
DeviceName: Broadcom 5762
Subsystem: Intel Corporation Wi-Fi 6 AX210 160MHz
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
Latency: 0, Cache Line Size: 64 bytes
Interrupt: pin A routed to IRQ 34
IOMMU group: 17
Region 0: Memory at fc900000 (64-bit, non-prefetchable) [size=16K]
Capabilities: <access denied>
Kernel driver in use: iwlwifi
Kernel modules: iwlwifi
I checked dmesg with following output:
[ 12.031700] wlo1: authenticate with 1c:ed:6f:d2:8d:8e
[ 12.034383] wlo1: send auth to 1c:ed:6f:d2:8d:8e (try 1/3)
[ 12.095876] wlo1: authenticated
[ 12.095995] wlo1: associate with 1c:ed:6f:d2:8d:8e (try 1/3)
[ 12.098689] wlo1: RX AssocResp from 1c:ed:6f:d2:8d:8e (capab=0x1511 status=0 aid=3)
[ 12.103274] wlo1: associated
[ 12.146490] IPv6: ADDRCONF(NETDEV_CHANGE): wlo1: link becomes ready
[ 12.148175] wlo1: Limiting TX power to 27 (30 - 3) dBm as advertised by 1c:ed:6f:d2:8d:8e
because of [12.148175] wlo1: Limiting TX power to 27 (30 - 3) dBm as advertised by 1c:ed:6f:d2:8d:8e
I thought it was wifi card power management
So I tried to turn it off with:
sudo touch nano /etc/NetworkManager/conf.d/00-wifi-powersave.conf
[connection]
wifi.powersave = 2
sudo chmod 755 /etc/NetworkManager/conf.d/00-wifi-powersave.conf && sudo ip link set wlo1 mode default
sudo systemctl restart NetworkManager.service
I am also not really sure if the .conf
name matters. On google I also found default-wifi-powersave-on.conf
wifi-powersave-off.conf
, but I just went with 00-wifi-powersave.conf
Just in case I also ran:
sudo grub2-mkconfig -o /etc/grub2.cfg
sudo grub2-mkconfig -o /etc/grub2-efi.cfg
sudo ip link show
3: wlo1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DORMANT group default qlen 1000
link/ether 84:5c:f3:51:95:eb brd ff:ff:ff:ff:ff:ff
altname wlp33s0
Sadly the problem seems to persist. Does anyone has any idea what it could be?
Thanks in advance!