netfilter: fix unmet dependencies in NETFILTER_XT_TARGET_REDIRECT
warning: (NETFILTER_XT_TARGET_REDIRECT) selects NF_NAT_REDIRECT_IPV4 which has unmet direct dependencies (NET && INET && NETFILTER && NF_NAT_IPV4) warning: (NETFILTER_XT_TARGET_REDIRECT) selects NF_NAT_REDIRECT_IPV6 which has unmet direct dependencies (NET && INET && IPV6 && NETFILTER && NF_NAT_IPV6) Fixes:8b13edd
("netfilter: refactor NAT redirect IPv4 to use it from nf_tables") Fixes:9de920e
("netfilter: refactor NAT redirect IPv6 code to use it from nf_tables") Reported-by: kbuild test robot <fengguang.wu@intel.com> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
This commit is contained in:
parent
ce674173e9
commit
f6c6339d5e
|
@ -844,8 +844,8 @@ config NETFILTER_XT_TARGET_RATEEST
|
|||
config NETFILTER_XT_TARGET_REDIRECT
|
||||
tristate "REDIRECT target support"
|
||||
depends on NF_NAT
|
||||
select NF_NAT_REDIRECT_IPV4
|
||||
select NF_NAT_REDIRECT_IPV6 if IP6_NF_IPTABLES
|
||||
select NF_NAT_REDIRECT_IPV4 if NF_NAT_IPV4
|
||||
select NF_NAT_REDIRECT_IPV6 if NF_NAT_IPV6
|
||||
---help---
|
||||
REDIRECT is a special case of NAT: all incoming connections are
|
||||
mapped onto the incoming interface's address, causing the packets to
|
||||
|
|
Loading…
Reference in New Issue