Hi, problem is described in title: It seems that the firewall is blocking wlnao from connecting to my NAS. It works through eth0, but not through wlan0.
I found this thread, but it does not provde a solution:
Do not manually enter any interface name unless you understand the consequences.
When by default no interface is named, then rules apply to all interfaces.
Once you specify an interface in a zone, then rules will only apply to that interface.
AFAIK once you’ve specified an interface, it’s not easy to undo that configuration (Maybe do a force re-install?)
So I presume that both wlan0 and eth0 point to networks that have been assigned private IP addresses…?
Anyway, have you set the following two?
**FW_ROUTE
FW_FORWARD
**If not, no routing between networks takes place, and you don’t get any connectivity.
I’d furthermore recommend to set the following on your firewall:
**FW_DEV_INT=“wlan0”
FW_DEV_DMZ=“eth0”
**Then make sure to install forwarding rules between your internal network and the LAN on which your NAS storage resides - both directions required!
Let’s assume your internal network is 192.168.1.0/24 and your NAS resides on 172.16.0.0/24, that would require this setting:
**FW_FORWARD=“192.168.1.0/24,172.16.0.0/24 172.16.0.0/24,192.168.1.0/24”
**Otherwise your data wouldn’t find their way to theNAS and back again.