diff --git a/docs/FAQ.xml b/docs/FAQ.xml index 9e356c68a..c1f5b3cf3 100644 --- a/docs/FAQ.xml +++ b/docs/FAQ.xml @@ -244,9 +244,25 @@ DNAT net:address loc:local-IP-address Answer: That is usually the - result of one of four things: + result of one of five things: + + You are trying to redirect a UDP port and there is already a + conntrack table entry for the flow, created via an ACCEPT + rule. + + Example: + + DNAT loc:192.168.0.2 dmz:192.168.1.3 udp 53 + + Assuming that you have installed the + conntrack package, you can delete all such + conntrack table entries using: + + conntrack -D -s 192.168.0.2 -p udp --dport 53 + + You are trying to test from inside your firewall (no, that won't work -- see ).