Hello list,
is it possible to make outgoing traffic load-balance in a way that
connections from the same internal IP to the same external IP always use
the same WAN-connection (at least until the
The example under
> http://www.openbsd.org/faq/pf/pools.html#outexample
circumvents it by using only one connection. It would be nice if I could
use something like:
pass in on $int_if from $lan_net \
route-to { ($ext_if1 $ext_gw1), ($ext_if2 $ext_gw2) } \
round-robin \
"target-hash"
using "round-robin sticky-address" or "source-hash" obviously does not
work, since there is not a single redirection address but *two*.
Is there any other workaround than hardwiring only one connection?
Marcus