web-dev-qa-db-ja.com

Wifi範囲の問題と断続的なドロップアウト、Thinkpad Edge

10.10を実行している新しいThinkpad Edge 15を使用して、アクセスポイントから数メートル以上離れている(そして、さまざまなAPでこれを見ている)場合、wifiのパフォーマンスは不安定になります。これが発生すると、dmesgに次のように表示されますが、関連があるかどうかはわかりません。

[ 2497.011099] intel ips 0000:00:1f.6: CPU power or thermal limit exceeded
[ 2502.012711] intel ips 0000:00:1f.6: CPU power or thermal limit exceeded
[ 2507.009254] intel ips 0000:00:1f.6: CPU power or thermal limit exceeded
[ 2512.008367] intel ips 0000:00:1f.6: CPU power or thermal limit exceeded
[ 2517.007467] intel ips 0000:00:1f.6: CPU power or thermal limit exceeded
[ 2522.006558] intel ips 0000:00:1f.6: CPU power or thermal limit exceeded
[ 2527.008157] intel ips 0000:00:1f.6: CPU power or thermal limit exceeded
[ 2532.007251] intel ips 0000:00:1f.6: CPU power or thermal limit exceeded
[ 2537.003838] intel ips 0000:00:1f.6: CPU power or thermal limit exceeded
[ 2542.005427] intel ips 0000:00:1f.6: CPU power or thermal limit exceeded
[ 2547.004496] intel ips 0000:00:1f.6: CPU power or thermal limit exceeded
[ 2552.003611] intel ips 0000:00:1f.6: CPU power or thermal limit exceeded

lspci -vvvは、私の無線アダプターについて次のことを言っています。

03:00.0 Network controller: Intel Corporation Centrino Wireless-N 1000
        Subsystem: Intel Corporation Centrino Wireless-N 1000 BGN
        Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
        Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
        Latency: 0, Cache Line Size: 64 bytes
        Interrupt: pin A routed to IRQ 49
        Region 0: Memory at f0500000 (64-bit, non-prefetchable) [size=8K]
        Capabilities: <access denied>
        Kernel driver in use: iwlagn
        Kernel modules: iwlagn

アクセスポイントから数メートル以内に到達した場合、dmesgでその出力が表示されますが、接続は安定しています。

私の質問は3つあります。どうすればWi-Fiの範囲を改善できますか、dmesgでこれらのメッセージについてできること/すべきこと、そして最も重要なことには、2つは関連していますか?

他に役立つ情報があるかどうか、いつもお知らせください!

編集:さまざまな古いバージョンのUbuntuを実行している以前のThinkpad(T61)を使用したのとまったく同じ場所でこのマシンを使用しています。 !

5
James Green

ワイヤレスNをオフにします。Intelチップセットではまだ細心の注意が必要です。他のカスタム処理(インジェクションのためにハードウェア暗号化をオフにするなど)を行った場合、それは実際の問題ではなく、微調整の副作用と見なされます。

modprobe -r iwlagn
modprobe iwlagn 11n_disable = 1
無効にする必要があります...
modprobe iwlagn 11n_disable = 0
有効にする必要があります...

次に、トグルにより/etc/modprobe.d/intel-5300-iwlagn-disable11n.confの問題が解決する場合
options iwlagn 11n_disable = 1
または
options iwlagn 11n_disable = 0

あなたの問題を解決したものは何でも

2
RobotHumans