Of course it's possible.Is it possible to set up a router that treats the wlan0 adapter as the WAN port and the eth0 as the LAN? All of the guides assume that it will be the other way around.
NAT requires iptable rules. Did you set them?If it is possible, how would I do it? I have been able to get dhcp working and making a local network, but I don't know exactly what I did to do that. And I was unable to get NAT working properly to connect to my wifi network.
Code: Select all
sudo iptables -t nat -A POSTROUTING -o wlan0 -j MASQUERADE
sudo iptables -A FORWARD -i eth0 -o wlan0 -j ACCEPTYou can always Google. Like this one: https://www.instructables.com/id/Share- ... pberry-Pi/Are there any guides out there for this specific use case, or something similar?