pf + rd

Hi,

I have one NIC and I want a round-robin to IP on the same network; but it doesn't work. Why?
Code:
mysql_h = "{ 10.0.0.2 10.0.0.3}"
rdr on vmx3f0 inet proto tcp from any to any port mysql -> $mysql_h

#vmx3f0 is 10.0.0.4

Thank you.
 
From pf.conf(5):
Code:
 Redirections cannot reflect packets back through the interface they arrive on,
     they can only be redirected to hosts connected to different interfaces or
     to the firewall itself.
 
Back
Top