Hello all, really easy for everyone but me i guess ![]()
how do i have to set the firewall when i have 3 subnets
192.168.0.0/24 (LAN)
10.0.0.0/24 (vpn)
10.5.50.0/24 (hotspot)
and i want hotspot subnet to not see the other subnet, so the hotspot user only get in the internet and don´t see or get anything else.
And also of course the other 2 subnets don´t see and get anything from the hotspot subnet.
I have given the ether1-interface a 192.168.0.0/24 adress.
/ip firewall filter
add action=drop chain=output comment=âplace hotspot rules hereâ disabled=yes
dst-address=10.0.0.0/24 src-address=10.0.0.0/24
add action=drop chain=output disabled=yes dst-address=192.168.0.0/24
src-address=192.168.0.0/24
/ip firewall nat
add action=passthrough chain=unused-hs-chain comment=
âplace hotspot rules hereâ disabled=yes to-addresses=0.0.0.0
add action=masquerade chain=srcnat comment=âmasquerade hotspot networkâ
disabled=yes dst-address=!192.168.0.0/24 to-addresses=0.0.0.0
add action=masquerade chain=srcnat disabled=no src-address=10.5.50.0/24
/ip firewall service-port
set ftp disabled=no ports=21
set tftp disabled=no ports=69
set irc disabled=no ports=6667
set h323 disabled=no
set sip disabled=no ports=5060,5061 sip-direct-media=yes
set pptp disabled=no
ANY help or suggestion or idea is highly welcome!