Hi all,
I am trying to have one-way access from main (192.168.1.0/24) to Guest Network 3 while access intranet is disabled.
GN3 devices have the following IP's: 192.168.1.150, 192.168.1.151 and 192.168.1.152
what have I to do to achieve my goal ?
Thanks,
GS
I am trying to have one-way access from main (192.168.1.0/24) to Guest Network 3 while access intranet is disabled.
GN3 devices have the following IP's: 192.168.1.150, 192.168.1.151 and 192.168.1.152
Code:
ebtables -t broute -L BROUTING --Lx --Lc
ebtables -t broute -A BROUTING -p IPv4 -i wl0.3 --ip-dst 192.168.1.1 --ip-proto icmp -j ACCEPT -c 57456 4826136
ebtables -t broute -A BROUTING -p IPv4 -i wl0.3 --ip-dst 192.168.1.0/24 --ip-proto tcp --ip-dport 53 -j ACCEPT -c 0 0
ebtables -t broute -A BROUTING -p IPv4 -i wl0.3 --ip-dst 192.168.1.0/24 --ip-proto icmp -j DROP -c 0 0
ebtables -t broute -A BROUTING -p IPv4 -i wl0.3 --ip-dst 192.168.1.0/24 --ip-proto tcp -j DROP -c 0 0
what have I to do to achieve my goal ?
Thanks,
GS