diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-02-26 15:50:01 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-02-26 15:50:01 +0000 |
commit | 99a3d0399e82cb04568a17e392e7eea32c942b59 (patch) | |
tree | 6eaf840b2badfcedb645423cdc26515270c8782c /include | |
parent | 8a521f69390e7e4fedc2ca7050c4f6709a3feb04 (diff) | |
download | upstream-99a3d0399e82cb04568a17e392e7eea32c942b59.tar.gz upstream-99a3d0399e82cb04568a17e392e7eea32c942b59.tar.bz2 upstream-99a3d0399e82cb04568a17e392e7eea32c942b59.zip |
netfilter: add missing modules for v6 conntrack (patch from #8940)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25731 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'include')
-rw-r--r-- | include/netfilter.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/netfilter.mk b/include/netfilter.mk index 8f57839c81..66c9eefd88 100644 --- a/include/netfilter.mk +++ b/include/netfilter.mk @@ -53,7 +53,9 @@ $(eval $(call nf_add,IPT_CORE,CONFIG_IP_NF_TARGET_REJECT, $(P_V4)ipt_REJECT)) $(eval $(if $(NF_KMOD),$(call nf_add,IPT_CONNTRACK,CONFIG_NF_CONNTRACK, $(P_XT)nf_conntrack),)) $(eval $(if $(NF_KMOD),$(call nf_add,IPT_CONNTRACK,CONFIG_IP_NF_CONNTRACK, $(P_V4)ip_conntrack),)) $(eval $(if $(NF_KMOD),$(call nf_add,IPT_CONNTRACK,CONFIG_NF_DEFRAG_IPV4, $(P_V4)nf_defrag_ipv4),)) +$(eval $(if $(NF_KMOD),$(call nf_add,IPT_CONNTRACK,CONFIG_NF_DEFRAG_IPV6, $(P_V6)nf_defrag_ipv6),)) $(eval $(if $(NF_KMOD),$(call nf_add,IPT_CONNTRACK,CONFIG_NF_CONNTRACK_IPV4, $(P_V4)nf_conntrack_ipv4),)) +$(eval $(if $(NF_KMOD),$(call nf_add,IPT_CONNTRACK,CONFIG_NF_CONNTRACK_IPV6, $(P_V6)nf_conntrack_ipv6),)) $(eval $(call nf_add,IPT_CONNTRACK,CONFIG_IP_NF_MATCH_STATE, $(P_V4)ipt_state)) $(eval $(call nf_add,IPT_CONNTRACK,CONFIG_NETFILTER_XT_MATCH_STATE, $(P_XT)xt_state)) |