interface wlan conectada à rede, mas sem acesso à rede local ou externa

1

Configurei minha interface sem fio através do arquivo de configuração / etc / network / interfaces, a interface é capaz de se conectar ao roteador, mas não consigo pingar nada na minha rede local (nem mesmo o roteador em que a interface está conectado) e não consigo acessar nenhum recurso externo (WAN).

Minha configuração é a seguinte:

/etc/network/interfaces

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback


# The wireless network interface
auto wlan1
iface wlan1 inet static
    address             192.168.1.12
    netmask             255.255.255.0
    gateway             192.168.1.1
    wireless-essid      xxxx
    wireless-key        s:xxxx 
    wireless-keymode    open

Como você pode ver abaixo, a interface está conectada:

$ iwconfig

lo        no wireless extensions.

wlan1     IEEE 802.11abg  ESSID:"xxxx"  
          Mode:Managed  Frequency:2.452 GHz  Access Point: 58:98:35:4A:A4:F0   
          Bit Rate=54 Mb/s   Tx-Power=200 dBm   
          Retry short limit:7   RTS thr:off   Fragment thr:off
          Encryption key:xxxx-xxxx-xx
          Power Management:off
          Link Quality=48/70  Signal level=-62 dBm  
          Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
          Tx excessive retries:0  Invalid misc:0   Missed beacon:0

eth0      no wireless extensions.

Mas não consigo efetuar o ping no gateway (192.168.1.1) nem no DNS (8.8.8.8):

$ ping 192.168.1.1

PING 192.168.1.1 (192.168.1.1) 56(84) bytes of data.
From 192.168.1.12 icmp_seq=1 Destination Host Unreachable
From 192.168.1.12 icmp_seq=1 Destination Host Unreachable
From 192.168.1.12 icmp_seq=1 Destination Host Unreachable

Ifconfig retorna:

$ ifconfig

lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:31 errors:0 dropped:0 overruns:0 frame:0
          TX packets:31 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0 
          RX bytes:2158 (2.1 KiB)  TX bytes:2158 (2.1 KiB)

wlan1     Link encap:Ethernet  HWaddr 5c:93:a2:92:96:81  
          inet addr:192.168.1.12  Bcast:192.168.1.255  Mask:255.255.255.0
          inet6 addr: fe80::5e93:a2ff:fe92:9681/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:143
          TX packets:101 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:0 (0.0 B)  TX bytes:14372 (14.0 KiB)
          Interrupt:18 

E o encaminhamento do Kernel é configurado da seguinte forma:

$ route -n

Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         192.168.1.1     0.0.0.0         UG    0      0        0 wlan1
169.254.0.0     0.0.0.0         255.255.0.0     U     1000   0        0 wlan1
192.168.1.0     0.0.0.0         255.255.255.0   U     0      0        0 wlan1

Todas as sugestões / dicas para solução de problemas serão muito bem-vindas, obrigado.

Atenciosamente, Mike.

    
por Lawless Leopard 07.08.2017 / 22:31

0 respostas