Intel Corporation Centrino Advanced-N 6205 [Taylor Peak] [8086:0085] (rev 34) 无线间歇性断开连接

Mat*_*zer 2 wireless networking iwlwifi

我在 Ubuntu 15.04 上使用 xfce (xubuntu) 并且我的 wi-fi 有问题。该指标继续显示我已连接到网络,但一段时间后我将无法再访问 Internet。为了解决这个问题,我只需断开网络连接并重新连接,这总是可以解决问题。我在不同的网络上都遇到过这个问题。

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
Run Code Online (Sandbox Code Playgroud)

Pil*_*ot6 6

在终端运行

sudo tee /etc/modprobe.d/iwlwifi-opt.conf <<< "options iwlwifi 11n_disable=1 swcrypto=1 bt_coex_active=0 power_save=0"
Run Code Online (Sandbox Code Playgroud)

并重新启动。

在很多情况下,仅此而已11n_disable=8


解释:

iwlwifi Linux内核驱动程序支持多种英特尔无线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
Run Code Online (Sandbox Code Playgroud)

要在不重新启动的情况下重新启动服务以测试替代配置:

sudo modprobe -r iwldvm iwlwifi
sudo modprobe iwldvm iwlwifi
sudo service network-manager restart
Run Code Online (Sandbox Code Playgroud)

速记命令还使用Bash 中的here stringvia<<<运算符将这些字符附加到配置文件中。