1

Hi!

Before I begin describing the issue, let me mention that I tried following numerous suggestions,mostly revolving around disabling n mode and other options, as described in this one: Wifi losing connection, weak signal, Intel 7260 adapter

...and many others. Sadly it doesn't seem to help.

So I use Intel NUC5i3RYK. The wifi connection does not really disconnect, I can constantly see that it is connected (judging from the icon at least), but it just keeps being unstable: from time to time (like 2 times in every 5 minutes) the internet simply stops working - Skype and jabber (I use Pidgin) disconnect, I can't load any page etc. Then it comes back and the the circle starts over.

This is not a general issue with my WiFi itself, because I do not experience these issues on Windows or my Android mobile devices.

Details of the device:

02:00.0 Network controller [0280]: Intel Corporation Wireless 7265 [8086:095a] (rev 59) Subsystem: Intel Corporation Dual Band Wireless-AC 7265 [8086:9010] Kernel driver in use: iwlwifi

What else can I possibly do to solve it?

Thanks!

Kosimus
  • 53
  • 1
  • 10

1 Answers1

1

First, check the settings in the router. WPA2-AES is preferred; not any WPA and WPA2 mixed mode and certainly not TKIP. Second, if your router is capable of N speeds, you may have better connectivity with a channel width of 20 MHz in the 2.4 GHz band instead of automatic 20/40 MHz, although it is likely to affect N speeds. I also have better luck with a fixed channel, either 1, 6 or 11, rather than automatic channel selection. Also, be certain the router is not set to use N speeds only; auto B, G and N is preferred. After making these changes, reboot the router.

Next, I recommend that your regulatory domain be set explicitly. Check yours:

sudo iw reg get

If you get 00, that is a one-size-maybe-fits-all setting. Find yours here: http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2 Then set it temporarily:

sudo iw reg set IS

Of course, substitute your country code if not Iceland. Set it permanently:

gksudo gedit /etc/default/crda

Use nano or kate or leafpad if you don't have the text editor gedit.

Change the last line to read:

REGDOMAIN=IS

Proofread carefully, save and close the text editor.

Next, I'd set IPv6 to Ignore in Network Manager: http://docs.fedoraproject.org/en-US/Fedora/18/html/Installation_Guide/images/netconfig/network-connections-ipv6-ignore.png This example is for ethernet, but you want wireless.

Next, I am interested in which firmware version is being loaded. Reboot and run:

dmesg | grep iwl

Post the results that relate to firmware.

It appears that the driver finds and loads the -13 firmware but would use the later -14 or -15 if available. With a working internet connection, please do:

sudo apt-get update
sudo apt-get install git
git clone https://github.com/OpenELEC/iwlwifi-firmware.git
cd linux-firmware/firmware
sudo cp iwlwifi-7265D-14.ucode  /lib/firmware
sudo cp iwlwifi-7265D-15.ucode  /lib/firmware

Reboot and check:

dmesg | grep firmware

Ideally, the -15 firmware is loaded and performance is greatly improved.

chili555
  • 61,330