英特尔公司Centrino Advanced-N 6205间歇性无线断开连接 (rev 34)

我使用xfce(xubuntu)在Ubuntu 15.04上,我的wi-fi出现问题。 该指标继续显示我已连接到网络但在一段时间后我将无法访问互联网。 为了解决这个问题,我只需断开与网络的连接并重新连接即可解决问题。 我有这个问题发生在不同的网络上。

03:00.0 Network controller [0280]: Intel Corporation Centrino Advanced-N 6205 [Taylor Peak] [8086:0085] (rev 34) Subsystem: Intel Corporation Centrino Advanced-N 6205 AGN [8086:1311] Kernel driver in use: iwlwifi 

在终端运行

 sudo tee /etc/modprobe.d/iwlwifi-opt.conf <<< "options iwlwifi 11n_disable=1 swcrypto=1 bt_coex_active=0 power_save=0" 

并重新启动。

在许多情况下,只有11n_disable=8就足够了。


说明:

iwlwifi Linux内核驱动程序支持多个Intel无线LAN适配器。 该命令将以下配置添加到iwlwifi模块:

 11n_disable=1 Disables the 802.11n mode 11n_disable=8 Enables agg TX option swcrypto=1 Disables hardware encryption and uses software instead. bt_coex_active=0 Disables bluetooth coexistence technology that works poorly with iwlwifi power_save=0 Disables the power save mode 

要重新启动服务而不重新启动以测试备用配置:

 sudo modprobe -r iwldvm iwlwifi sudo modprobe iwldvm iwlwifi sudo service network-manager restart 

shorthand命令还通过Bash中的<<<运算符使用here string将这些字符附加到配置文件中。