Primeiro, obtenha o endereço do seu gateway. Isso deve estar no formato 192.168.AAA.BBB
.
Digite os seguintes comandos na sua máquina Ubuntu:
echo 1 | sudo tee /proc/sys/net/ipv4/ip_forward > /dev/null
sudo iptables -P FORWARD ACCEPT
sudo iptables -A POSTROUTING -t nat -j MASQUERADE -s 192.168.2.0/24
sudo ip route del default
sudo ip route add default via 192.168.AAA.BBB
No seu Raspberry Pi:
altere o arquivo /etc/network/interfaces
da seguinte maneira:
iface eth0 inet static
address 192.168.2.201
netmask 255.255.255.0
gateway 192.168.2.1
edite /etc/dhcp/dhcpd.conf
:
ddns-update-style none;
option domain-name "domain.local";
option domain-name-servers 192.168.2.201;
default-lease-time 60;
max-lease-time 72;
# If this DHCP server is the official DHCP server for the local
# network, the authoritative directive should be uncommented.
authoritative;
# Use this to send dhcp log messages to a different log file (you also
# have to hack syslog.conf to complete the redirection).
log-facility local7;
# wpad
option local-proxy-config code 252 = text;
# A slightly different configuration for an internal subnet.
subnet 192.168.2.0 netmask 255.255.255.0 {
range 192.168.2.1 192.168.2.2;
option routers 192.168.2.201;
option local-proxy-config "http://192.168.2.201/wpad.dat";
}
Agora você deve poder usar o ssh via interface Ethernet. Na sessão ssh, digite os seguintes comandos no seu PI:
$ sudo ip route del default
$ sudo ip route add default via 192.168.2.2
$ sudo sh -c "echo 'nameserver 192.168.AAA.BBB' > /etc/resolv.conf"
Substitua o 192.168.AAA.BBB
pelo gateway da sua rede wlan.
Seu RPi agora deve ter conexão com a internet.