Multipath routing for FreeBSD

FreeBSD 8.2

ex:
Code:
em0 192.168.0.10 gateway 192.168.0.254
em1 192.168.1.10 gateway 192.168.1.254

Can web -> em0 -> web and web -> em1 -> web

How to set up? Please help. Thank you.
 
Try:

pf.conf

Code:
pass in quick on $one_if reply-to ($one_if $oneif_gw) keep state
pass in quick on $two_if reply-to ($two_if $twoif_gw) keep state
 
Back
Top