fix outside connectivity when default route goes through internal network

This commit is contained in:
Timo Makinen 2019-05-23 17:31:53 +03:00
parent 6c5f344318
commit eecf34b517

View file

@ -54,8 +54,9 @@ block in quick from any to self
# allow communication from internal to world
pass in quick on $int_if from $int_net to !$int_net
# allow myself to communicate outside
# allow myself to communicate outside (both routes)
pass out quick on $ext_if from self to any
pass out quick on $int_if from self to any
# allow traffic from outside
pass out quick on $int_if from any to $int_net