> Is there any (future) release of FreeBSD concern about multiple default > gateway ? > Supposed i want to have load balancing and round robin connection in my > FreeBSD firewall without routing daemon.
It can be done using ipfw, if you want to use only IPv4. An example is shown below. (Although it is not round robin connections.) # route add default GW1 # ipfw add prob 0.5 fwd GW2 ip from any to any out # ipfw add allow ip from any to any -- [EMAIL PROTECTED] _______________________________________________ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-net To unsubscribe, send any mail to "[EMAIL PROTECTED]"