Wi-Fi não funciona no Ubuntu 17.10

4

Consegui usar o Wi-Fi no meu Ubuntu 17.10 antes de alterar o nome e a senha do meu roteador. Desde então, tenho sido incapaz de usar a internet. Meu gerente de rede nem está mostrando os dispositivos disponíveis. Eu tentei todas as etapas do link no Askubuntu: Como conectar e desconectar uma rede manualmente no terminal?

Aqui está o que recebo quando tento usar o método wpa_supplicant :

skywalker@lancelot ~ % sudo wpa_supplicant -iwlp2s0 -c/etc/wpa_supplicant/wpa_supplicant.conf -Dnl80211
Successfully initialized wpa_supplicant
wlp2s0: SME: Trying to authenticate with 7a:ff:ca:3a:30:ff (SSID='lancelot' freq=2462 MHz)
wlp2s0: Trying to associate with 7a:ff:ca:3a:30:ff (SSID='lancelot' freq=2462 MHz)
wlp2s0: Associated with 7a:ff:ca:3a:30:ff
wlp2s0: CTRL-EVENT-DISCONNECTED bssid=7a:ff:ca:3a:30:ff reason=3 locally_generated=1
wlp2s0: CTRL-EVENT-REGDOM-CHANGE init=CORE type=WORLD
wlp2s0: CTRL-EVENT-SCAN-FAILED ret=-16 retry=1
wlp2s0: SME: Trying to authenticate with 7a:ff:ca:3a:30:ff (SSID='lancelot' freq=2462 MHz)
wlp2s0: Trying to associate with 7a:ff:ca:3a:30:ff (SSID='lancelot' freq=2462 MHz)
wlp2s0: Associated with 7a:ff:ca:3a:30:ff
wlp2s0: CTRL-EVENT-DISCONNECTED bssid=7a:ff:ca:3a:30:ff reason=3 locally_generated=1
wlp2s0: CTRL-EVENT-REGDOM-CHANGE init=CORE type=WORLD

Aqui estão mais detalhes

skywalker@lancelot ~ % lspci -knn |grep Net -A2
00:19.0 Ethernet controller [0200]: Intel Corporation 82579LM Gigabit Network Connection
[8086:1502] (rev 04)
    Subsystem: Dell 82579LM Gigabit Network Connection (Lewisville) [1028:0493]
    Kernel driver in use: e1000e
    Kernel modules: e1000e
--
02:00.0 Network controller [0280]: Intel Corporation Centrino Ultimate-N 6300 [8086:422b] (rev 35)
    Subsystem: Intel Corporation Centrino Ultimate-N 6300 3x3 AGN [8086:1121]
    Kernel driver in use: iwlwifi
skywalker@lancelot ~ % uname -a                        
Linux lancelot 4.13.0-21-generic #24-Ubuntu SMP Mon Dec 18 17:29:16 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux
skywalker@lancelot ~ % rfkill list       
0: phy0: Wireless LAN
    Soft blocked: no
    Hard blocked: no
1: dell-wifi: Wireless LAN
    Soft blocked: no
    Hard blocked: no
skywalker@lancelot ~ %

A minha pergunta é, Como configuro o meu Wi-Fi para poder ligar a qualquer router e utilizar a Internet?

    
por Skywalker 26.12.2017 / 02:16

1 resposta

2

Do dmesg (comentários):

[   34.083148] IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready
[   77.913658] IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready

significa que a configuração do IPv6 falhou, para resolver o problema desabilite o IPv6 seguindo os passos descritos no wiki debian: How_to_turn_off_IPv6

    
por 29.12.2017 / 23:51