Guest Wifi, no access to internet

@trendy so would the only change required be from wan here to lan?
Like this
firewall.guest_wan.dest='lan'

Maybe that would be enough, but I cannot tell for sure what else might be mixed. It's better to follow the guide anyway.

1 Like

Found the solution.
I set this rules in the firewall and problem has been solved!
The guest go to internet!

firewall.@rule[10].name='DHCP Guest'
firewall.@rule[10].src='guest'
firewall.@rule[10].src_port='67-68'
firewall.@rule[10].dest='lan'
firewall.@rule[10].dest_port='67-68'
firewall.@rule[10].target='ACCEPT'
firewall.@rule[11]=rule
firewall.@rule[11].name='DNS Guest'
firewall.@rule[11].src='guest'
firewall.@rule[11].src_port='53'
firewall.@rule[11].dest='lan'
firewall.@rule[11].dest_port='53'
firewall.@rule[11].target='ACCEPT'
firewall.@rule[12]=rule
firewall.@rule[12].name='GUEST HTTP'
firewall.@rule[12].src='guest'
firewall.@rule[12].src_port='80'
firewall.@rule[12].dest='wan'
firewall.@rule[12].dest_port='80'
firewall.@rule[12].target='ACCEPT'
firewall.@rule[13]=rule
firewall.@rule[13].name='GUEST HTTPS'
firewall.@rule[13].src='guest'
firewall.@rule[13].src_port='443'
firewall.@rule[13].dest='wan'
firewall.@rule[13].dest_port='443'
firewall.@rule[13].target='ACCEPT'
firewall.@rule[14]=rule

Whit this rule the computer in the guest zone do not access at the main lan

firewall.@rule[14].name='GUEST LOCK'
firewall.@rule[14].src='guest'
firewall.@rule[14].dest='lan'
firewall.@rule[14].dest_ip='192.168.50.0/24'
firewall.@rule[14].target='DROP'

Thank you for all!!!

1 Like