17.01.4 on WRT1900AC with WMM Mode causing the router to restart by itself

Hey LEDE Forum collaborators,

After updating my Linksys WRT1900AC v1 to LEDE Reboot 17.01.4 r3560-79f57e422d / LuCI lede-17.01 branch (git-17.290.79498-d3f0685) and enabling WMM Mode (this improved my wi-fi speed on online tests from 20 to 250 mpbs), I noticed that my mobile devices are sometimes losing wi-fi connectivity for a couple of seconds or sometimes the whole router is restarting itself.

Any ideas on what may be causing this or suggestions on how to fix it? Enabling WMM was the alternative I found to improve my wireless speed, so I wanted to avoid deactivating it.

Thanks in advance!
Yann

That looks like a bug in the wifi drivers; I would first install these updated drivers:
Pre-compiled updated mwlwifi drivers for stable releases

If that does not fix the problem, I would open an issue at:
https://github.com/kaloz/mwlwifi/issues

This is great! Thanks a lot!

Stupid question: are there any instructions on how to install it? I'm new to LEDE, so want to make sure I do that correctly.

When I look at the packages I have installed, here is what I see:

image

I guess I already have the most updated version? If not, how do I update it?

Thanks a lot!
Yann

No, that package is not the latest version. Instructions are at:
https://github.com/eduperez/mwlwifi_LEDE/blob/master/README.md

Thank you very much! Was able to download it, but getting an error when trying to export:

  1. Download OK

root@LEDE:~# wget https://github.com/eduperez/mwlwifi_LEDE/releases/download/760f7bf/kmod-mwlwifi_4.4.92.10.3.4.0-20170818-760f7bf-1_arm_cortex-a9_vfpv3.ipk
Downloading 'https://github.com/eduperez/mwlwifi_LEDE/releases/download/760f7bf/kmod-mwlwifi_4.4.92.10.3.4.0-20170818-760f7bf-1_arm_cortex-a9_vfpv3.ipk'
Connecting to 192.30.255.113:443
Writing to '821c16ac-c2f2-11e7-94cb-8f52982d2ddd?X-Amz-Algorithm=AWS4-HMAC-SHA256'
821c16ac-c2f2-11e7-9 100% |*******************************| 694k 0:00:00 ETA
Download completed (711140 bytes)

  1. Error when trying to install it:
    root@LEDE:~# opkg install kmod-mwlwifi_4.4.92.10.3.4.0-20170818-760f7bf-1_arm_cortex-a9_vfpv3.ipk
    Collected errors:
  • wfopen: kmod-mwlwifi_4.4.92.10.3.4.0-20170818-760f7bf-1_arm_cortex-a9_vfpv3.ipk: No such file or directory.
  • pkg_init_from_file: Failed to extract control file from kmod-mwlwifi_4.4.92.10.3.4.0-20170818-760f7bf-1_arm_cortex-a9_vfpv3.ipk.

Guess I need to know how to access the package after downloading it.

Any suggestions?

Thanks!
Yann

Not sure what wget done there, but the problem is the file is downloaded under the wrong name, "821c16ac-c2f2-11e7-94cb-8f52982d2ddd?X-Amz-Algorithm=AWS4-HMAC-SHA256"

rename that file to "kmod-mwlwifi_4.4.92.10.3.4.0-20170818-760f7bf-1_arm_cortex-a9_vfpv3.ipk", then continue as instructed

1 Like

Any suggestions on how to rename it? I'm just downloading the file using wget from @eduperez project in github, then running opkg install to install it.

Thanks!

Try with "wget -o kmod-mwlwifi_4.4.92.10.3.4.0-20170818-760f7bf-1_arm_cortex-a9_vfpv3.ipk https://github.com/eduperez/mwlwifi_LEDE/releases/download/760f7bf/kmod-mwlwifi_4.4.92.10.3.4.0-20170818-760f7bf-1_arm_cortex-a9_vfpv3.ipk" so wget creates a file with the proper name.