It's the first time I've tried doing this and all has gone well so far I've been using this https://learn.adafruit.com/setting-up-a ... l-software as a walkthrough guide and it's gone well.
However the problem I have is trying to get an internet connection from the Ethernet port to the WiFi, after doing this code
Code: Select all
sudo iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
sudo iptables -A FORWARD -i eth0 -o wlan0 -m state --state RELATED,ESTABLISHED -j ACCEPT
sudo iptables -A FORWARD -i wlan0 -o eth0 -j ACCEPTCode: Select all
sudo sh -c "iptables-save > /etc/iptables.ipv4.nat"I'm just wondering if anyone has any solutions or had any problems like this?
Many Thanks