diff options
author | Steven Barth <cyrus@openwrt.org> | 2013-09-03 06:29:46 +0000 |
---|---|---|
committer | Steven Barth <cyrus@openwrt.org> | 2013-09-03 06:29:46 +0000 |
commit | 2e2c4c2dd3f0f4833488f7af0f4fa09755f6b30d (patch) | |
tree | 4f719d20683650dd6f7e624ca481ea6d9a46f6d1 | |
parent | d120ec18b2f547ead8b80005c110bd2758c75daa (diff) | |
download | upstream-2e2c4c2dd3f0f4833488f7af0f4fa09755f6b30d.tar.gz upstream-2e2c4c2dd3f0f4833488f7af0f4fa09755f6b30d.tar.bz2 upstream-2e2c4c2dd3f0f4833488f7af0f4fa09755f6b30d.zip |
Fix IPv6 NAT breaking older kernels
SVN-Revision: 37891
-rw-r--r-- | include/netfilter.mk | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/netfilter.mk b/include/netfilter.mk index fe31091b6c..305f28e087 100644 --- a/include/netfilter.mk +++ b/include/netfilter.mk @@ -170,14 +170,12 @@ $(eval $(if $(NF_KMOD),,$(call nf_add,IPT_NAT6,CONFIG_IP6_NF_TARGET_NPT, ip6t_DN $(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_REDIRECT, $(P_XT)xt_REDIRECT, ge 3.7.0)) $(eval $(call nf_add,IPT_NAT,CONFIG_IP_NF_TARGET_REDIRECT, $(P_V4)ipt_REDIRECT, lt 3.7.0)) -$(eval $(call nf_add,IPT_NAT6,CONFIG_IP_NF_TARGET_REDIRECT, $(P_V4)ip6t_REDIRECT, lt 3.8.0)) # nat-extra $(eval $(call nf_add,IPT_NAT_EXTRA,CONFIG_IP_NF_TARGET_NETMAP, $(P_XT)xt_NETMAP, ge 3.7.0)) $(eval $(call nf_add,IPT_NAT_EXTRA,CONFIG_IP_NF_TARGET_NETMAP, $(P_V4)ipt_NETMAP, lt 3.7.0)) -$(eval $(call nf_add,IPT_NAT6,CONFIG_IP_NF_TARGET_NETMAP, $(P_V6)ip6t_NETMAP, lt 3.8.0)) # nathelper |