aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2008-01-30 08:26:10 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2008-01-30 08:26:10 -0500
commit44c45eb911845ec58fc3e26cc8994ba868ea2572 (patch)
tree44138a5a2b3b7631f426170582e27f02bedaec2e
parent85004cc367abc000aa36c0d0e270ab609a68b0cb (diff)
Make !NETFILTER_ADVANCED enable IP6_NF_MATCH_IPV6HEADER
We want IPV6HEADER matching for the non-advanced default netfilter configuration, since it's part of the standard netfilter setup of at least some distributions (eg Fedora). Otherwise NETFILTER_ADVANCED loses much of its point, since even non-advanced users would have to enable all the advanced options just to get a working IPv6 netfilter setup. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r--net/ipv6/netfilter/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/netfilter/Kconfig b/net/ipv6/netfilter/Kconfig
index 4fc0b023cfd7..6cae5475737e 100644
--- a/net/ipv6/netfilter/Kconfig
+++ b/net/ipv6/netfilter/Kconfig
@@ -99,7 +99,7 @@ config IP6_NF_MATCH_HL
99config IP6_NF_MATCH_IPV6HEADER 99config IP6_NF_MATCH_IPV6HEADER
100 tristate '"ipv6header" IPv6 Extension Headers Match' 100 tristate '"ipv6header" IPv6 Extension Headers Match'
101 depends on IP6_NF_IPTABLES 101 depends on IP6_NF_IPTABLES
102 depends on NETFILTER_ADVANCED 102 default m if NETFILTER_ADVANCED=n
103 help 103 help
104 This module allows one to match packets based upon 104 This module allows one to match packets based upon
105 the ipv6 extension headers. 105 the ipv6 extension headers.