Thanks again for a really informative reply. So when I say that I have access to router and nas admin page. I mean that if I connect my phone to the guest wireless on the ap-point I can still access the router page on the primary router dhcp.The firewall rules I provided should prevent access to anything on the private network (br0) from the guest network (br1). So when you say the router or NAS is still accessible, are you referring to the AP? You would need additional firewall rules to limit the guest network's access to the AP itself.
The following limits guests to only dhcp, dns, and icmp (ping) on the AP.
Code:iptables -I INPUT -i br1 -j REJECT iptables -I INPUT -i br1 -p icmp -j ACCEPT iptables -I INPUT -i br1 -p tcp --dport 53 -j ACCEPT iptables -I INPUT -i br1 -p udp --dport 53 -j ACCEPT iptables -I INPUT -i br1 -p udp --dport 67 -j ACCEPT
icmp is obviously optional, but I like to offer it for diagnostic purposes. And you could eliminate DNS if you chose to configure the guests w/ public DNS servers (I usually do) in the DHCP/DNS custom config field.
Code:dhcp-option=br1,option:dns-server,8.8.8.8,8.8.4.4
As far as searching for LAN shares, if you're referring to network discovery, it typically doesn't work across different ethernet/IP networks. Not without the aid of a mDNS reflector (e.g., Avahi). But again, the firewall rules I provided would NOT allow access to anything on the private network anyway, even if you could "discover" resources there. So I don't know if your comment is just an observation or a complaint.
Last edited: