如何防止 Skype 破坏 wifi 连接

如何防止 Skype 破坏 wifi 连接

我的 ubuntu 14 上的 skype 程序导致我的 wifi 崩溃。通话一分钟后我的 wifi 崩溃了,我不得不重新启动电脑。我想修复这个问题,这样我就可以毫无问题地使用 Skype 通话了。

网络上的一项小型研究揭示了两条建议:

  • 将端口改为 80 以外的其他端口
  • 禁用 upnp

我检查了我的端口是否合理,而不是 80。另外,我没有看到 upnp 选项,所以我认为没有问题

命令 sudo lshw -C network 给出

  *-network
       description: Wireless interface
       product: RTL8821AE 802.11ac PCIe Wireless Network Adapter
       vendor: Realtek Semiconductor Co., Ltd.
       physical id: 0
       bus info: pci@0000:02:00.0
       logical name: wlan0
       version: 00
       serial: 54:27:1e:28:9d:45
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress bus_master cap_list ethernet physical wireless
       configuration: broadcast=yes driver=rtl8821ae driverversion=3.16.0-14-generic firmware=N/A ip=192.168.1.102 latency=0 link=no multicast=yes wireless=IEEE 802.11abgn
       resources: irq:17 ioport:e000(size=256) memory:d0700000-d0703fff
  *-network
       description: Ethernet interface
       product: RTL8101E/RTL8102E PCI Express Fast Ethernet controller
       vendor: Realtek Semiconductor Co., Ltd.
       physical id: 0.2
       bus info: pci@0000:03:00.2
       logical name: eth0
       version: 06
       serial: 40:16:7e:3f:63:57
       size: 10Mbit/s
       capacity: 100Mbit/s
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress msix vpd bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd autonegotiation
       configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=half firmware=rtl8402-1_0.0.1 10/26/11 latency=0 link=no multicast=yes port=MII speed=10Mbit/s
       resources: irq:106 ioport:d000(size=256) memory:d0614000-d0614fff memory:d0610000-d0613fff

我还可以检查什么?

答案1

我没有看到您的无线网络崩溃,只是断开了连接。您看到的是这种情况吗?

您的接入点或路由器似乎设置为使用 WPA2-TKIP。我认为使用 WPA2-AES 会更好。我建议您更改路由器中的加密方法。

我也看到很多这样的情况:

rtl8821ae-0:rtl8821ae_phy_switch_wirelessband():<0-0> 5G  
rtl8821ae-0:rtl8821ae_phy_switch_wirelessband():<0-0> 2.4G  
rtl8821ae-0:rtl8821ae_phy_switch_wirelessband():<0-0> 5G  
rtl8821ae-0:rtl8821ae_phy_switch_wirelessband():<0-0> 2.4G

换句话说,设备正在尝试在 2.4 GHz 频段上查找接入点,然后跳转到 5 GHz 频段,然后再跳转回来。您可以尝试禁用 5 GHz 频段,看看是否有帮助。

最后,我建议你尝试一个驱动程序参数:

sudo modprobe -r rtl8812ae
sudo modprobe rtl8812ae swenc=1

如果有帮助的话,我们可以编写一个文件来使其持久。

相关内容