diff options
author | Arturo Borrero <arturo.borrero.glez@gmail.com> | 2014-09-08 13:45:00 +0200 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2014-09-09 16:31:30 +0200 |
commit | 9ba1f726bec090399eb9bb9157eb32dedc8e8c45 (patch) | |
tree | 4a2875982feb3cad10ccb8f3da4a1f452bd1f068 /net/netfilter/Kconfig | |
parent | be6b635cd674add9410efa9ac6f03e0040848b12 (diff) | |
download | talos-op-linux-9ba1f726bec090399eb9bb9157eb32dedc8e8c45.tar.gz talos-op-linux-9ba1f726bec090399eb9bb9157eb32dedc8e8c45.zip |
netfilter: nf_tables: add new nft_masq expression
The nft_masq expression is intended to perform NAT in the masquerade flavour.
We decided to have the masquerade functionality in a separated expression other
than nft_nat.
Signed-off-by: Arturo Borrero Gonzalez <arturo.borrero.glez@gmail.com>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'net/netfilter/Kconfig')
-rw-r--r-- | net/netfilter/Kconfig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/net/netfilter/Kconfig b/net/netfilter/Kconfig index ad751fe2e82b..37428723394f 100644 --- a/net/netfilter/Kconfig +++ b/net/netfilter/Kconfig @@ -496,6 +496,15 @@ config NFT_LIMIT This option adds the "limit" expression that you can use to ratelimit rule matchings. +config NFT_MASQ + depends on NF_TABLES + depends on NF_CONNTRACK + depends on NF_NAT + tristate "Netfilter nf_tables masquerade support" + help + This option adds the "masquerade" expression that you can use + to perform NAT in the masquerade flavour. + config NFT_NAT depends on NF_TABLES depends on NF_CONNTRACK |