2

my laptop with this wifi card:

06:00.0 Network controller: Realtek Semiconductor Co., Ltd. RTL8723BE PCIe Wireless Network Adapter
    Subsystem: Hewlett-Packard Company Device 2231
    Flags: bus master, fast devsel, latency 0, IRQ 33
    I/O ports at 2000 [size=256]
    Memory at f0400000 (64-bit, non-prefetchable) [size=16K]
    Capabilities: <access denied>
    Kernel driver in use: rtl8723be

Have many wifi problems.

After some minutes, i can't navigate or use the mail or ping something, i simply disable and enable the wifi and all work again.

Actually i have ubuntu 15.04 for some reason, but the same happen also with 14.04 or 14.10.

muru
  • 197,895
  • 55
  • 485
  • 740
  • What kernel is 15.04 using as the normal fix might not work? uname -a and modinfo -p rtl8723be – Jeremy31 Mar 14 '15 at 10:24
  • uname -a

    Linux HPU 3.19.0-9-generic #9-Ubuntu SMP Wed Mar 11 17:50:03 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux

    modinfo -p rtl8723be

    swlps: (bool) swenc:using hardware crypto (default 0 [hardware]) (bool) ips:using no link power save (default 1 is open) (bool) fwlps:using linked fw control power save (default 1 is open) (bool) msi:Set to 1 to use MSI interrupts mode (default 0)

    debug:Set debug level (0-5) (default 0) (int) disable_watchdog:Set to 1 to disable the watchdog (default 0) (bool)

    Thank you

    – Sergio Nora Mar 14 '15 at 13:36
  • 1

2 Answers2

3

I would do this echo "options rtl8723be fwlps=N ips=N" | sudo tee /etc/modprobe.d/rtl8723be.conf and reboot to see if it helps.

If can change the router settings, see if the encryption is set to WPA2 only with no TKIP enabled, change it from auto channel to a fixed channel and see if it helps.

In 14.04, I recommend that the 3.19 backports be used as it fixes most issues with the RTL8723BE

Jeremy31
  • 12,602
  • 10
  • 58
  • 114
  • Hi, well after 5 days, it seems with your first command , the connection is stable. Let me check some more days. Thank you – Sergio Nora Mar 20 '15 at 19:19
0

Test this:

You will need to have the package with the kernel headers installed.

Open a terminal,

Press Ctrl+Alt+T

Run it:

git clone http://github.com/lwfinger/rtlwifi_new.git
cd rtlwifi_new
make
sudo make install
kyodake
  • 15,401