Issue Description
My Intel Alder Lake-P PCH CNVi WiFi (AX211) card is not functioning on my Fedora system. It appears as UNCLAIMED when I run lshw -C network
, and the dmesg
logs show a probe failure with error -110
. Despite having all the necessary firmware files present in /lib/firmware
, the issue persists.
Hardware Details
- WiFi Card: Intel Alder Lake-P PCH CNVi WiFi (AX211)
- System Model: Latitude 5430
- Manufacturer: Dell
Software Details
- Fedora Version: 40 (just updated to 41 to see if that would fix the issue, but it persists)
- Kernel Version: 6.11, but the issue was there also in 6.10 and 6.8
- Desktop Environment: i3
Symptoms
- WiFi card appears as UNCLAIMED in
lshw -C network
. dmesg
output contains: iwlwifi 0000:00:14.3: probe with driver iwlwifi failed with error -110- Unable to connect to any WiFi networks.
Troubleshooting Steps Taken
- Verified Driver Loading and Firmware Presence:
- Confirmed that
iwlwifi
driver is present. - Listed firmware files in
/lib/firmware
to ensure all necessary files for AX211 are available.
- Updated System and Kernel:
- Ran
sudo dnf update
to ensure the system and kernel are up-to-date. - Rebooted the system to apply updates.
- Reloaded the
iwlwifi
Driver:
- Removed and reloaded the driver using:
sudo modprobe -r iwlwifi sudo modprobe iwlwifi
- Checked for Hardware or Software Blocks:
- Ran
rfkill list all
to ensure WiFi is not blocked. - Verified that no physical switches or keyboard shortcuts are disabling WiFi.
- Reinstalled
kernel-modules-extra
:
- Reinstalled the package using:
sudo dnf reinstall kernel-modules-extra
- Rebooted the system.