summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorPhil Sutter <phil@nwl.cc>2019-11-27 13:58:00 +0100
committerPhil Sutter <phil@nwl.cc>2019-11-27 18:56:40 +0100
commit2f188c852ba264028b0834632f5f813d2f8bb4c6 (patch)
tree674d9ac13132d39e6ba06408e6b314d85517d2fc /doc
parent7ef6eb2ef15cf161044ac3167e55d071060e5637 (diff)
nft.8: Fix nat family spec position
In inet family nat statements, ip/ip6 keyword must come before 'to' keyword, not after. Fixes: fbe27464dee45 ("src: add nat support for the inet family") Cc: Florian Westphal <fw@strlen.de> Signed-off-by: Phil Sutter <phil@nwl.cc> Acked-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'doc')
-rw-r--r--doc/statements.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/statements.txt b/doc/statements.txt
index e17068a8..07bf09c5 100644
--- a/doc/statements.txt
+++ b/doc/statements.txt
@@ -324,10 +324,10 @@ NAT STATEMENTS
____
*snat to* 'address' [*:*'port'] ['PRF_FLAGS']
*snat to* 'address' *-* 'address' [*:*'port' *-* 'port'] ['PRF_FLAGS']
-*snat to* { *ip* | *ip6* } 'address' *-* 'address' [*:*'port' *-* 'port'] ['PR_FLAGS']
+*snat* { *ip* | *ip6* } *to* 'address' *-* 'address' [*:*'port' *-* 'port'] ['PR_FLAGS']
*dnat to* 'address' [*:*'port'] ['PRF_FLAGS']
*dnat to* 'address' [*:*'port' *-* 'port'] ['PR_FLAGS']
-*dnat to* { *ip* | *ip6* } 'address' [*:*'port' *-* 'port'] ['PR_FLAGS']
+*dnat* { *ip* | *ip6* } *to* 'address' [*:*'port' *-* 'port'] ['PR_FLAGS']
*masquerade to* [*:*'port'] ['PRF_FLAGS']
*masquerade to* [*:*'port' *-* 'port'] ['PRF_FLAGS']
*redirect to* [*:*'port'] ['PRF_FLAGS']