Não é possível conectar-se a WiFi específico com 13.04

1

Recentemente, atualizei meu sistema operacional de 12,10 para 13,04, funcionando bem.

Eu não estava enfrentando esse problema até hoje, mas não consigo me conectar a um determinado WiFi pela manhã. Eu tenho dois WiFi aqui & amp; Eu consigo me conectar a outro.

Quanto ao WiFi, não há problema, já que outras pessoas que estão usando o Windows podem se conectar bem com isso. Como resolver esse problema eu não sei?

Observação - Eu reiniciei o Wi-Fi e o sistema duas vezes para resolver esse problema.

Editado para dar mais informações:

lspci

[full lspci output can be found in revision 2 of this post]
....
04:00.0 Network controller: Intel Corporation WiFi Link 5100
09:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168 PCI Express Gigabit Ethernet controller (rev 03)
....

sudo lshw -c rede

  *-network               
       description: Wireless interface
       product: WiFi Link 5100
       vendor: Intel Corporation
       physical id: 0
       bus info: pci@0000:04:00.0
       logical name: wlan0
       version: 00
       serial: 00:24:d6:43:c0:58
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress bus_master cap_list ethernet physical wireless
       configuration: broadcast=yes driver=iwlwifi driverversion=3.8.0-25-generic firmware=8.83.5.1 build 33692 ip=192.168.1.17 latency=0 link=yes multicast=yes wireless=IEEE 802.11abgn
       resources: irq:44 memory:f0500000-f0501fff
  *-network DISABLED
       description: Ethernet interface
       product: RTL8111/8168 PCI Express Gigabit Ethernet controller
       vendor: Realtek Semiconductor Co., Ltd.
       physical id: 0
       bus info: pci@0000:09:00.0
       logical name: eth0
       version: 03
       serial: b8:ac:6f:68:08:6d
       size: 10Mbit/s
       capacity: 1Gbit/s
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress msix vpd bus_master cap_list rom ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation
       configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=half firmware=rtl_nic/rtl8168d-1.fw latency=0 link=no multicast=yes port=MII speed=10Mbit/s
       resources: irq:41 ioport:5000(size=256) memory:f0404000-f0404fff memory:f0400000-f0403fff memory:f0420000-f043ffff

dmesg

[ 2244.563918] wlan0: authenticate with 00:25:5e:17:6b:28
[ 2244.566162] wlan0: send auth to 00:25:5e:17:6b:28 (try 1/3)
[ 2244.768488] wlan0: send auth to 00:25:5e:17:6b:28 (try 2/3)
[ 2244.972143] wlan0: send auth to 00:25:5e:17:6b:28 (try 3/3)
[ 2245.175754] wlan0: authentication with 00:25:5e:17:6b:28 timed out
[ 2264.745062] wlan0: authenticate with 00:25:5e:17:6b:28
[ 2264.746376] wlan0: direct probe to 00:25:5e:17:6b:28 (try 1/3)
[ 2264.949654] wlan0: direct probe to 00:25:5e:17:6b:28 (try 2/3)
[ 2265.153340] wlan0: direct probe to 00:25:5e:17:6b:28 (try 3/3)
[ 2265.356923] wlan0: authentication with 00:25:5e:17:6b:28 timed out
    
por RajeevK 27.06.2013 / 13:50

1 resposta

0

Parece que este hardware tem algum problema com a configuração N no wi-fi.

Por favor, tente:

    sudo modprobe -r iwlwifi
    sudo modprobe iwlwifi 11n_disable=1

Agora tente se reconectar, se isso ajudar a seguir as etapas abaixo

  1. Veja em /etc/modprobe.d se há algum arquivo como intel-5100-iwlwifi-disable11n.conf e edite o arquivo

    sudo gedit /etc/modprobe.d/<filename_here>

    Edite a linha que diz

    options iwlwifi 11n_disable=1
    

    para

    options iwlwifi 11n_disable=0
    

Salvar e reinicializar.

  1. Se não houver arquivo, crie um novo arquivo

    gksudo gedit /etc/modprobe.d/iwlwifi.conf
    

    Adicione uma nova linha:

    options iwlwifi 11n_disable=1
    

Salvar e reinicializar.

Possivelmente relacionado:

Sem fio N no Intel 5100

Sem fio não funcionará com um Intel 5100 sem fio cartão

    
por Web-E 27.06.2013 / 16:29