* Jean-Frangois SIMON ([email protected]) wrote:
> 2010/2/7 Bret S. Lambert <[email protected]>
> >
> > No, you'd have to so a seperate rdr line for each backend host.
> >
>
> Would a rule like this one work (2 lines).
>  rdr pass on $ext_if proto tcp from any to any port 1024:65535 -> 10.0.1.32
>  rdr pass on $ext_if proto tcp from any to any port 1024:65535 -> 10.0.1.33

You can't redirect one port to multiple machines, your options are:
1) redirect different ports to different machines, i.e.:
rdr pass on $ext_if proto tcp from any to any port 1024:5000 -> 10.0.1.32
rdr pass on $ext_if proto tcp from any to any port 5001:65535 -> 10.0.1.33

2) get more external IP addresses.

/jkm

Reply via email to