diff options
author | Rafał Miłecki <rafal@milecki.pl> | 2019-10-28 08:39:02 +0100 |
---|---|---|
committer | Rafał Miłecki <rafal@milecki.pl> | 2019-10-28 08:40:02 +0100 |
commit | d22c1755fcb45a7509629c3f769a2da204d6b0b0 (patch) | |
tree | 4345d225651923e435540e82710c6f36340da6a9 /include | |
parent | a8a934060957212eb7b9eb6bd14fc80a3857d9d8 (diff) | |
download | upstream-d22c1755fcb45a7509629c3f769a2da204d6b0b0.tar.gz upstream-d22c1755fcb45a7509629c3f769a2da204d6b0b0.tar.bz2 upstream-d22c1755fcb45a7509629c3f769a2da204d6b0b0.zip |
netfilter: fix NAT packaging with kernels 5.2+
It's related to the upstream kernel commit adf82accc5f5 ("netfilter:
x_tables: merge ip and ipv6 masquerade modules").
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
Diffstat (limited to 'include')
-rw-r--r-- | include/netfilter.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/netfilter.mk b/include/netfilter.mk index 179d4ed7b9..009f3502ee 100644 --- a/include/netfilter.mk +++ b/include/netfilter.mk @@ -202,7 +202,8 @@ $(eval $(if $(NF_KMOD),$(call nf_add,IPT_NAT6,CONFIG_IP6_NF_TARGET_NPT, $(P_V6)i $(eval $(if $(NF_KMOD),,$(call nf_add,IPT_NAT,CONFIG_NF_NAT, ipt_SNAT ipt_DNAT))) $(eval $(if $(NF_KMOD),,$(call nf_add,IPT_NAT6,CONFIG_IP6_NF_TARGET_NPT, ip6t_DNPT ip6t_SNPT))) -$(eval $(call nf_add,IPT_NAT,CONFIG_IP_NF_TARGET_MASQUERADE, $(P_V4)ipt_MASQUERADE)) +$(eval $(call nf_add,IPT_NAT,CONFIG_IP_NF_TARGET_MASQUERADE, $(P_V4)ipt_MASQUERADE, lt 5.2)) +$(eval $(call nf_add,IPT_NAT,CONFIG_IP_NF_TARGET_MASQUERADE, $(P_XT)xt_MASQUERADE, ge 5.2)) $(eval $(call nf_add,IPT_NAT,CONFIG_IP_NF_TARGET_REDIRECT, $(P_XT)xt_REDIRECT)) |