Weighted round robin for multi wan FreeBSD router setup!

Hi,
someone can explain me the reason why a got a syntax error with this rules?

Code:
pass in on $int_if from $int_if:network route-to { ($ext_if $ext_gw) weight 1, ($ext_if2 $ext_gw2) weight 15 } round-robin

pass out on $ext_if route-to ($ext_if2 $ext_gw2) from $ext_if2 to any
pass out on $ext_if2 route-to ($ext_if $ext_gw) from $ext_if to any


there is no reference in the pf.conf(5) man page to round robin weighted!!


thanks
 
You're using OpenBSD's syntax. FreeBSD's PF is a bit older than OpenBSD's.
 
ok thanks, how could so pfsense load balancing with round robin weighted?

thanks
 
so, the question now is:

is it possible to load balancing with weighted round ronin in freebsd too?

thanks
 
Weighted routing is a job for a routing protocol, not a firewall.
 
i'm asking if is it possible to load balancing with weighted round robin in freebsd too,

next i decide how to use this function

thanks a lot
 
ok thanks, but i need to know only if pf on freebsd support round robin weigthed as on openbsd

no routing protocol

thanks
 
but i need to know only if pf on freebsd support round robin weigthed as on openbsd
I've told you in another thread that FreeBSD's PF is based on PF from OpenBSD 4.5. The function not being documented in the pf.conf(5) man page should be enough of an indication that this feature isn't in FreeBSD's PF.
 
Back
Top