Add <forward_subnets> to divert rule in OpenBSD

Fixes bug where all traffic routed to loopback would end up being diverted to the same port.
This commit is contained in:
João Vieira 2016-06-16 22:34:19 +01:00 committed by GitHub
parent 2e1beefc9a
commit f876c5db5e

View File

@ -249,7 +249,7 @@ class OpenBsd(Generic):
]
translating_rules = [
b'pass in on lo0 inet proto tcp '
b'divert-to 127.0.0.1 port %r' % port
b'to <forward_subnets> divert-to 127.0.0.1 port %r' % port
]
filtering_rules = [
b'pass out inet proto tcp '