Olivier Nicole wrote:
I have a redirection rule that goes like:
rdr xl0 0.0.0.0/0 port 80 -> 10.0.0.1 port 5280 tcp
Is there a way to say that the redirection should not apply to a
specific host? Preferably saying it with using a preauth rule.
why not just rewrite the specific host to where you
want it to go, even if it's a "null rewrite"?
one example:
rdr x10 1.2.3.4/32 port 80 -> 10.0.0.1 port 80 tcp
rdr xl0 0.0.0.0/0 port 80 -> 10.0.0.1 port 5280 tcp
another example
rdr x10 1.2.3.4/32 port 80 -> 1.2.3.4 port 80 tcp
rdr xl0 0.0.0.0/0 port 80 -> 10.0.0.1 port 5280 tcp
jim