Re: route https to specific wan connection
Greg <[email protected]>
| Newsgroups | gmane.os.openbsd.pf |
|---|---|
| Organization | http://groups.google.com |
| Message-ID | <[email protected]> |
On Jul 22, 2:31=A0am, [email protected] (Kahlil Erwin S. Talledo) wrote: > Hello, > > Good day! I am currently doing a load balancing between two of my wan > connections using pf based on the rules on this link:http://www.openbsd.o= rg/faq/pf/pools.html. all tcp, udp and icmp > connections are naturally loadbalnced and i was wondering if there is > a way for me to specify outgoing https (port 443) connections =A0to a > specific wan connection and not be loadbalanced? some secure sites do > not seem to respond as expected when https is passed through on my > loadbalancer. hoping to hear from anybody. thanks. > > Sincerely yours, > Kai Assuming outbound load balancing. pass in on $int_if route-to ($isp2_if $isp2_gw) proto tcp from any to any port https modulate state Insert appropriately into ruleset so it is processed after your load- balance rule so it gets matched. Greg