Eu tenho um Raspberry Pi sem cabeça usando o Debian Wheezy.
Eu tenho um dongle wifi e se eu ligar o meu Raspberry usando, tudo funciona bem: eu posso conectar-me à Internet, eu posso pingar, eu posso atualizar.
No entanto, se eu baixar meu wifi e configurar a interface lan, perderei minha conexão com a internet.
Ainda consigo me conectar a ele localmente, usando meu laptop, mas a conexão não sai (ou seja, o ping não está funcionando).
Algumas informações úteis:
cat / etc / network / interfaces
auto lo
auto eth0
iface eth0 inet static
address 192.168.0.105
netmask 255.255.255.0
gateway 192.168.0.1
ping www.google.com
(nothing request timed out)
ifconfig
eth0 Link encap:Ethernet HWaddr b8:27:eb:a2:b5:20
inet addr:192.168.0.105 Bcast:192.168.0.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:1130 errors:0 dropped:0 overruns:0 frame:0
TX packets:1116 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:97223 (94.9 KiB) TX bytes:146140 (142.7 KiB)
ping 192.168.0.1
PING 192.168.0.1 (192.168.0.1) 56(84) bytes of data.
^C
--- 192.168.0.1 ping statistics ---
19 packets transmitted, 0 received, 100% packet loss, time 18007ms
cat /etc/resolv.conf
nameserver 8.8.8.8
netstat -r
Kernel IP routing table
Destination Gateway Genmask Flags MSS Window irtt Iface
default 192.168.0.1 0.0.0.0 UG 0 0 0 eth0
192.168.0.0 * 255.255.255.0 U 0 0 0 eth0
bem, acho que é tudo ...
Alguma idéia?