From: Imre Kaloz Date: Wed, 10 Dec 2008 18:44:46 +0000 (+0000) Subject: defrag needs to be loaded before conntrack_ipv4 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=24e299f95d1839a794a8475c876c6c5b5064b975;p=openwrt%2Fstaging%2Fyousong.git defrag needs to be loaded before conntrack_ipv4 SVN-Revision: 13585 --- diff --git a/include/netfilter.mk b/include/netfilter.mk index 76d95f47b9..6968feffd3 100644 --- a/include/netfilter.mk +++ b/include/netfilter.mk @@ -50,8 +50,8 @@ $(eval $(call nf_add,IPT_CORE,CONFIG_IP_NF_TARGET_REJECT, $(P_V4)ipt_REJECT)) # kernel only $(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_CONNTRACK_IPV4, $(P_V4)nf_conntrack_ipv4),)) $(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_CONNTRACK_IPV4, $(P_V4)nf_conntrack_ipv4),)) $(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))