Eu quero conectar o Raspberry PI à Internet através da bridge de rede no meu laptop. É a máquina do Windows 8.1. Eu conectei ethernet e interfaces sem fio. O PI de framboesa tem um endereço IP estático. Eu estava tentando fazer o seguinte tutorial .
Roteador 192.168.1.1
Windows 192.168.1.15
Framboesa PI 192.168.1.100
Eu posso fazer o ping do roteador e do Raspberry do PC, também do PC da Raspberry. O problema é quando eu tento pingar Router ou google.pl de Raspberry:
pi@raspberrypi ~ $ ping 192.168.1.1
PING 192.168.1.1 (192.168.1.1) 56(84) bytes of data.
^C
--- 192.168.1.1 ping statistics ---
8 packets transmitted, 0 received, 100% packet loss, time 7006ms
O firewall no PC está desativado. Aqui está o ifconfig
:
pi@raspberrypi ~ $ ifconfig eth0
eth0 Link encap:Ethernet HWaddr b8:27:eb:9a:ea:1d
inet addr:192.168.1.100 Bcast:192.168.1.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:1796 errors:0 dropped:0 overruns:0 frame:0
TX packets:426 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:133358 (130.2 KiB) TX bytes:54438 (53.1 KiB)
Tabela de roteamento:
pi@raspberrypi ~ $ 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 eth0
192.168.1.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
Tabela ARP:
pi@raspberrypi ~ $ arp -n
Address HWtype HWaddress Flags Mask Iface
192.168.1.1 ether 88:ae:1d:7e:07:2f C eth0
192.168.1.15 ether 88:ae:1d:7e:07:2f C eth0
e interfaces
pi@raspberrypi ~ $ cat /etc/network/interfaces
auto lo
iface lo inet loopback
iface eth0 inet static
address 192.168.1.100
netmask 255.255.255.0
gateway 192.168.1.1
allow-hotplug wlan0
iface wlan0 inet manual
wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
iface default inet dhcp
Eu tentei manipular com interfaces, gateway padrão, nada parece funcionar.
ipconfig -all
do Windows é aqui