1

I'm on Kubuntu 16.04, all packages up to date.

Yesterday, out of the blue (not after a reboot or anything), my WiFi stopped working. The hardware is still working, I am able to connect over Ethernet, and all the local WiFi networks are listed in the NetworkManager widget. But when I try to connect to my WiFi network, it says "Configuring interface...", asks for a password, stalls for a moment, asks again, and so on, over and over again, never connecting.

I have already rebooted many times, installed all updates, and tried deleting and adding the connection, marking the connection as "Available to all users", and disabling kwallet.

EDIT: Here's the output of lspci -knn | grep Net -A3:

02:00.0 Network controller [0280]: Intel Corporation Centrino Wireless-N 2230 [8086:0887] (rev c4)
    Subsystem: Intel Corporation Centrino Wireless-N 2230 BGN [8086:4062]
    Kernel driver in use: iwlwifi
    Kernel modules: iwlwifi

The fix from this question, suggested by user68186, works for me (I'm able to connect to WiFi, thank you!).

So here's my updated question: is there a way for me to make WiFi work without disabling 802.11n speeds?

Linuxios
  • 343
  • 3
  • 14

1 Answers1

2

You need to set a kernel module option. Run in a terminal

sudo tee /etc/modprobe.d/iwlwifi-opt.conf <<< "options iwlwifi 11n_disable=8"

and reboot.

That sets the enable agg TX option for the iwlwifi module. This is required for this adapter to work in 802.11n mode well.

Pilot6
  • 90,100
  • 91
  • 213
  • 324
  • If these are similar problems, can we consolidate these to one question possibly with multiple answers for different WiFi chips? Thanks – user68186 Feb 09 '17 at 19:35
  • What kind of different chips you mean? This solution is specific to some Intel adapters. – Pilot6 Feb 09 '17 at 19:37
  • Sorry, I didn't read the other question carefully enough and assumed they were different chips. Why 11n_disable=8 in one and 11n_disable=1 in the other? – user68186 Feb 09 '17 at 19:40
  • 11n_disable=1 disables the n mode. It is guaranteed to fix the issue. 8 does not disable anything but enables agg TX whatever this means. It may also fix it. – Pilot6 Feb 09 '17 at 20:16