Perfect for the hobbyists at home: Grab your Raspberry Pi!
#DEVCommunity
https://dev.to/always_better_with_t/gameready-router-how-i-used-a-raspberry-pi-for-console-laptop-lan-connectivity-2a8l
Perfect for the hobbyists at home: Grab your Raspberry Pi!
#DEVCommunity
https://dev.to/always_better_with_t/gameready-router-how-i-used-a-raspberry-pi-for-console-laptop-lan-connectivity-2a8l
@thepracticaldev Apologies if I'm missing something because it's late and I'm tired, but I think the related/established rule might be the wrong way around. You want to allow FORWARDing only related/established from wlan0 to eth0 but you want to FORWARD/ACCEPT all outgoing connections from eth0 to wlan0.
EDIT: To clarify, I think the in and out devices should be swapped in the second rule, e.g:
`sudo iptables -A FORWARD -i wlan0 -o eth0 -m state --state RELATED,ESTABLISHED -j ACCEPT`