fix prereq.sh on NetBSD 8.1
[openadk.git] / target / waldux / config / Config.in.netfilter.ip6
blobd2bdd3df42380cdc652eeede323df04480a26ca8
1 # This file is part of the OpenADK project. OpenADK is copyrighted
2 # material, please see the LICENCE file in the top-level directory.
4 config ADK_WALDUX_KERNEL_NF_CONNTRACK_IPV6
5         tristate "IPv6 connection tracking support"
6         select ADK_WALDUX_KERNEL_NF_CONNTRACK
7         select ADK_WALDUX_KERNEL_IPV6
8         default n
9         help
10           Connection tracking keeps a record of what packets have passed
11           through your machine, in order to figure out how they are related
12           into connections.
14           This is IPv6 support on Layer 3 independent connection tracking.
15           Layer 3 independent connection tracking is experimental scheme
16           which generalize ip_conntrack to support other layer 3 protocols.
18           To compile it as a module, choose M here.  If unsure, say N.
20 config ADK_WALDUX_KERNEL_IP6_NF_IPTABLES
21         tristate "IP6 tables support (required for filtering)"
22         select ADK_WALDUX_KERNEL_NETFILTER_XTABLES
23         select ADK_WALDUX_KERNEL_IPV6
24         default n
25         help
26           ip6tables is a general, extensible packet identification framework.
27           Currently only the packet filtering and packet mangling subsystem
28           for IPv6 use this, but connection tracking is going to follow.
29           Say 'Y' or 'M' here if you want to use either of those.
31           To compile it as a module, choose M here.  If unsure, say N.
33 if ADK_WALDUX_KERNEL_IP6_NF_IPTABLES
35 # The simple matches.
36 config ADK_WALDUX_KERNEL_IP6_NF_MATCH_AH
37         tristate '"ah" match support'
38         help
39           This module allows one to match AH packets.
41           To compile it as a module, choose M here.  If unsure, say N.
43 config ADK_WALDUX_KERNEL_IP6_NF_MATCH_EUI64
44         tristate '"eui64" address check'
45         help
46           This module performs checking on the IPv6 source address
47           Compares the last 64 bits with the EUI64 (delivered
48           from the MAC address) address
50           To compile it as a module, choose M here.  If unsure, say N.
52 config ADK_WALDUX_KERNEL_IP6_NF_MATCH_FRAG
53         tristate '"frag" Fragmentation header match support'
54         help
55           frag matching allows you to match packets based on the fragmentation
56           header of the packet.
58           To compile it as a module, choose M here.  If unsure, say N.
60 config ADK_WALDUX_KERNEL_IP6_NF_MATCH_OPTS
61         tristate '"hbh" hop-by-hop and "dst" opts header match support'
62         help
63           This allows one to match packets based on the hop-by-hop
64           and destination options headers of a packet.
66           To compile it as a module, choose M here.  If unsure, say N.
68 config ADK_WALDUX_KERNEL_IP6_NF_MATCH_IPV6HEADER
69         tristate '"ipv6header" IPv6 Extension Headers Match'
70         help
71           This module allows one to match packets based upon
72           the ipv6 extension headers.
74           To compile it as a module, choose M here.  If unsure, say N.
76 config ADK_WALDUX_KERNEL_IP6_NF_MATCH_MH
77         tristate '"mh" match support'
78         help
79           This module allows one to match MH packets.
81           To compile it as a module, choose M here.  If unsure, say N.
83 config ADK_WALDUX_KERNEL_IP6_NF_MATCH_RT
84         tristate '"rt" Routing header match support'
85         help
86           rt matching allows you to match packets based on the routing
87           header of the packet.
89           To compile it as a module, choose M here.  If unsure, say N.
91 # The targets
93 config ADK_WALDUX_KERNEL_IP6_NF_FILTER
94         tristate "Packet filtering"
95         default n
96         help
97           Packet filtering defines a table `filter', which has a series of
98           rules for simple packet filtering at local input, forwarding and
99           local output.  See the man page for iptables(8).
101           To compile it as a module, choose M here.  If unsure, say N.
103 config ADK_WALDUX_KERNEL_IP6_NF_TARGET_REJECT
104         tristate "REJECT target support"
105         depends on ADK_WALDUX_KERNEL_IP6_NF_FILTER
106         help
107           The REJECT target allows a filtering rule to specify that an ICMPv6
108           error should be issued in response to an incoming packet, rather
109           than silently being dropped.
111           To compile it as a module, choose M here.  If unsure, say N.
113 config ADK_WALDUX_KERNEL_IP6_NF_MANGLE
114         tristate "Packet mangling"
115         help
116           This option adds a `mangle' table to iptables: see the man page for
117           iptables(8).  This table is used for various packet alterations
118           which can effect how the packet is routed.
120           To compile it as a module, choose M here.  If unsure, say N.
122 config ADK_WALDUX_KERNEL_IP6_NF_RAW
123         tristate 'raw table support (required for TRACE)'
124         help
125           This option adds a `raw' table to ip6tables. This table is the very
126           first in the netfilter framework and hooks in at the PREROUTING
127           and OUTPUT chains.
129           If you want to compile it as a module, say M here and read
130           <file:Documentation/kbuild/modules.txt>.  If unsure, say `N'.
132 endif # ADK_WALDUX_KERNEL_IP6_NF_IPTABLES