Your current rule will always match, think about it: ip does not equal 1.2.3.4 or does not equal 5.6
Your current rule will always match, think about it:
ip does not equal 1.2.3.4 or does not equal 5.6.7.8)
If your IP is 1.2.3.4, it gets through the first one
IP does not equal 1.2.3.4 = false
OR
ip does not equal 5.6.7.8 = true
overall true, so it gets directed
You could use an AND instead, or just the
ip does not equal 1.2.3.4 or does not equal 5.6.7.8)
If your IP is 1.2.3.4, it gets through the first one
IP does not equal 1.2.3.4 = false
OR
ip does not equal 5.6.7.8 = true
overall true, so it gets directed
You could use an AND instead, or just the
is not in

