Hello folks!
Basically I have two nets on two bridges on my CCR: private net 192.168.1.0/24 and a guest net 10.0.0.0/21.
On my guest net I have installed couple of access points which are addressed from 10.0.0.10-10.0.0.50. The DHCP on this net serves the guests with ip addresses from 10.0.1.0-10.0.7.250.
Everything works flawless, but I have troubles to manage access points on the guest net from my private net when I setup a standard firewall rule looks like this: /ip firewall filter add chain=forward action=drop src-address=10.0.0.0/21 dst-addresss=192.168.1.0/24
It will be cool when something like this would work: /ip firewall filter add chain=forward action=drop src-address=10.0.0.100/21-10.0.7.254/21 dst-addresss=192.168.1.0/24
but the src-address can't handle ip ranges.
Is there another option to handle this problem? Or should I assign a second net like 172.16.0.0/24 to the guest bridge that contain all access points and drop all packets from guest to private net?
Thanks for advices!