Finalmente consegui conectar o wlan0 (um dongle USB WiFi Edimax EW-7811Un) ao meu roteador, mas depois apt-get update
descobri que o Raspberry não pode ver fora da rede local. O meu Raspberry está sendo executado na imagem Raspbian mais recente (no momento em que foi escrita).
- wlan0 está conectado ao meu roteador e recebeu um endereço IP
- Posso executar ping no meu roteador, na minha impressora e em outras máquinas dentro da rede local, mas não consigo executar ping na rede externa (o ping de loopback no localhost diz "host inacessível", mas eu diria que está cancelando o NAT 127.0.0.1 pedidos)
- Posso me conectar com êxito
eth0
, mas preciso me conectarwlan0
.
saída ifconfig:
pi@MinoPi ~ $ ifconfig wlan0
wlan0 Link encap:Ethernet HWaddr *macaddresshere*
inet addr:192.168.1.9 Bcast:192.168.1.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:552 errors:0 dropped:6 overruns:0 frame:0
TX packets:289 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:375003 (366.2 KiB) TX bytes:318051 (310.5 KiB)
Saída do iwconfig:
pi@MinoPi ~ $ iwconfig wlan0
wlan0 IEEE 802.11bg ESSID:"Sanctuary" Nickname:"<WIFI@REALTEK>"
Mode:Managed Frequency:2.437 GHz Access Point: *macaddresshere*
Bit Rate:54 Mb/s Sensitivity:0/0
Retry:off RTS thr:off Fragment thr:off
Power Management:off
Link Quality=100/100 Signal level=100/100 Noise level=0/100
Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
Tx excessive retries:0 Invalid misc:0 Missed beacon:0
/etc/network/interfaces
Arquivo:
auto lo
iface lo inet loopback
iface eth0 inet dhcp
iface wlan0 inet static
address 192.168.1.9
netmask 255.255.255.0
gateway 192.168.1.1
wpa-ssid "Sanctuary"
wpa-psk "somePasswordHere"
Alguma ideia?
raspbian
networking
wireless
wifi
connection
Błażej Michalik
fonte
fonte
ip route
(man ip
).