Não é possível conectar-se ao WiFi doméstico - problema de DHCP?

1

Estou usando o wicd para conexões wifi. Tudo funcionou bem, mas agora, de repente, não consigo mais me conectar à minha rede doméstica. Durante a solução de problemas, tentei configurar um ponto de acesso do meu Smartphone, que se conecta muito bem e me dá acesso à Internet. Poderia ser um problema com o DHCP? Estou anexando uma parte do meu arquivo wicd.log.

2016/02/08 13:21:37 :: Connecting to wireless network asd23 2016/02/08 13:21:37 :: attempting to set hostname with dhclient 2016/02/08 13:21:37 :: using dhcpcd or another supported client may work better 2016/02/08 13:21:39 :: attempting to set hostname with dhclient 2016/02/08 13:21:39 :: using dhcpcd or another supported client may work better 2016/02/08 13:21:39 :: Putting interface down 2016/02/08 13:21:39 :: Releasing DHCP leases... 2016/02/08 13:21:39 :: attempting to set hostname with dhclient 2016/02/08 13:21:39 :: using dhcpcd or another supported client may work better 2016/02/08 13:21:40 :: Setting false IP... 2016/02/08 13:21:40 :: Stopping wpa_supplicant 2016/02/08 13:21:40 :: Flushing the routing table... 2016/02/08 13:21:40 :: Putting interface up... 2016/02/08 13:21:42 :: Generating psk... 2016/02/08 13:21:42 :: Attempting to authenticate... 2016/02/08 13:22:17 :: wpa_supplicant authentication may have failed. 2016/02/08 13:22:17 :: connect result is failed 2016/02/08 13:22:17 :: exiting connection thread 2016/02/08 13:22:18 :: Sending connection attempt result bad_pass 2016/02/08 13:22:18 :: attempting to set hostname with dhclient 2016/02/08 13:22:18 :: using dhcpcd or another supported client may work better 2016/02/08 13:22:19 :: attempting to set hostname with dhclient 2016/02/08 13:22:19 :: using dhcpcd or another supported client may work better

Embora diga "a autenticação pode ter falhado", tenho certeza de que minha senha está correta.

Todo o problema começou quando tive problemas de conexão com minha VPN e tentei definir manualmente um servidor DNS em /etc/resolv.conf

Se você precisar de informações adicionais, apenas me diga.

Atenciosamente, Samy

    
por Samy X 08.02.2016 / 13:28

1 resposta

1

Remova o wicd e o wpa_supplicant

Reinstale o wpa_supplicant

sudo apt-get install wpasupplicant

Adicione Source "non-free" no seu arquivo /etc/apt/sources.list, por exemplo:

# Debian 8 "Jessie"
deb http://http.debian.net/debian/ jessie main contrib non-free

Atualize a lista de pacotes disponíveis e instale o pacote

apt-get update && apt-get install firmware-iwlwifi

Carregar módulo

modprobe -r iwlwifi ; modprobe iwlwifi

Configure o WPA2

 nano /etc/network/interfaces

Configure o wlan0 com o SSID e o PSK da seguinte forma:

auto wlan0
iface wlan0 inet dhcp
wpa-ssid YOUR-SSID-HERE
wpa-psk YOUR-PASSWORD-HERE

abra o wlan0:

ifup wlan0

Reinicie o serviço de rede usando qualquer um dos seguintes métodos:

/etc/init.d/networking restart
    
por 08.02.2016 / 15:14