netfilter: Combine ipt_ttl and ip6t_hl, ipt_TTL and ip6t_HL sources
[tomato.git] / release / src-rt / linux / linux-2.6 / net / ipv6 / netfilter / Kconfig
blob2a5b23e392a388ffe0d48eda95f2f806aa540053
2 # IP netfilter configuration
5 menu "IPv6: Netfilter Configuration (EXPERIMENTAL)"
6         depends on INET && IPV6 && NETFILTER && EXPERIMENTAL
8 config NF_CONNTRACK_IPV6
9         tristate "IPv6 connection tracking support (EXPERIMENTAL)"
10         depends on INET && IPV6 && EXPERIMENTAL && NF_CONNTRACK
11         ---help---
12           Connection tracking keeps a record of what packets have passed
13           through your machine, in order to figure out how they are related
14           into connections.
16           This is IPv6 support on Layer 3 independent connection tracking.
17           Layer 3 independent connection tracking is experimental scheme
18           which generalize ip_conntrack to support other layer 3 protocols.
20           To compile it as a module, choose M here.  If unsure, say N.
22 config IP6_NF_QUEUE
23         tristate "IP6 Userspace queueing via NETLINK (OBSOLETE)"
24         depends on INET && IPV6 && NETFILTER && EXPERIMENTAL
25         ---help---
27           This option adds a queue handler to the kernel for IPv6
28           packets which enables users to receive the filtered packets
29           with QUEUE target using libipq.
31           This option enables the old IPv6-only "ip6_queue" implementation
32           which has been obsoleted by the new "nfnetlink_queue" code (see
33           CONFIG_NETFILTER_NETLINK_QUEUE).
35           (C) Fernando Anton 2001
36           IPv64 Project - Work based in IPv64 draft by Arturo Azcorra.
37           Universidad Carlos III de Madrid
38           Universidad Politecnica de Alcala de Henares
39           email: <fanton@it.uc3m.es>.
41           To compile it as a module, choose M here.  If unsure, say N.
43 config IP6_NF_IPTABLES
44         tristate "IP6 tables support (required for filtering)"
45         depends on INET && IPV6 && EXPERIMENTAL
46         select NETFILTER_XTABLES
47         help
48           ip6tables is a general, extensible packet identification framework.
49           Currently only the packet filtering and packet mangling subsystem
50           for IPv6 use this, but connection tracking is going to follow.
51           Say 'Y' or 'M' here if you want to use either of those.
53           To compile it as a module, choose M here.  If unsure, say N.
55 # The simple matches.
56 config IP6_NF_MATCH_RT
57         tristate "Routing header match support"
58         depends on IP6_NF_IPTABLES
59         help
60           rt matching allows you to match packets based on the routing
61           header of the packet.
63           To compile it as a module, choose M here.  If unsure, say N.
65 config IP6_NF_MATCH_OPTS
66         tristate "Hop-by-hop and Dst opts header match support"
67         depends on IP6_NF_IPTABLES
68         help
69           This allows one to match packets based on the hop-by-hop
70           and destination options headers of a packet.
72           To compile it as a module, choose M here.  If unsure, say N.
74 config IP6_NF_MATCH_FRAG
75         tristate "Fragmentation header match support"
76         depends on IP6_NF_IPTABLES
77         help
78           frag matching allows you to match packets based on the fragmentation
79           header of the packet.
81           To compile it as a module, choose M here.  If unsure, say N.
83 config IP6_NF_MATCH_OWNER
84         tristate "Owner match support"
85         depends on IP6_NF_IPTABLES
86         help
87           Packet owner matching allows you to match locally-generated packets
88           based on who created them: the user, group, process or session.
90           To compile it as a module, choose M here.  If unsure, say N.
92 config IP6_NF_MATCH_IPV6HEADER
93         tristate "IPv6 Extension Headers Match"
94         depends on IP6_NF_IPTABLES
95         help
96           This module allows one to match packets based upon
97           the ipv6 extension headers.
99           To compile it as a module, choose M here.  If unsure, say N.
101 config IP6_NF_MATCH_AH
102         tristate "AH match support"
103         depends on IP6_NF_IPTABLES
104         help
105           This module allows one to match AH packets.
107           To compile it as a module, choose M here.  If unsure, say N.
109 config IP6_NF_MATCH_MH
110         tristate "MH match support"
111         depends on IP6_NF_IPTABLES
112         help
113           This module allows one to match MH packets.
115           To compile it as a module, choose M here.  If unsure, say N.
117 config IP6_NF_MATCH_EUI64
118         tristate "EUI64 address check"
119         depends on IP6_NF_IPTABLES
120         help
121           This module performs checking on the IPv6 source address
122           Compares the last 64 bits with the EUI64 (delivered
123           from the MAC address) address
125           To compile it as a module, choose M here.  If unsure, say N.
127 # The targets
128 config IP6_NF_FILTER
129         tristate "Packet filtering"
130         depends on IP6_NF_IPTABLES
131         help
132           Packet filtering defines a table `filter', which has a series of
133           rules for simple packet filtering at local input, forwarding and
134           local output.  See the man page for iptables(8).
136           To compile it as a module, choose M here.  If unsure, say N.
138 config IP6_NF_TARGET_LOG
139         tristate "LOG target support"
140         depends on IP6_NF_FILTER
141         help
142           This option adds a `LOG' target, which allows you to create rules in
143           any iptables table which records the packet header to the syslog.
145           To compile it as a module, choose M here.  If unsure, say N.
147 config IP6_NF_TARGET_REJECT
148         tristate "REJECT target support"
149         depends on IP6_NF_FILTER
150         help
151           The REJECT target allows a filtering rule to specify that an ICMPv6
152           error should be issued in response to an incoming packet, rather
153           than silently being dropped.
155           To compile it as a module, choose M here.  If unsure, say N.
157 config IP6_NF_MANGLE
158         tristate "Packet mangling"
159         depends on IP6_NF_IPTABLES
160         help
161           This option adds a `mangle' table to iptables: see the man page for
162           iptables(8).  This table is used for various packet alterations
163           which can effect how the packet is routed.
165           To compile it as a module, choose M here.  If unsure, say N.
167 config IP6_NF_TARGET_IMQ
168         tristate "IMQ target support"
169         depends on IP6_NF_MANGLE
170         help
171           This option adds a `IMQ' target which is used to specify if and
172           to which imq device packets should get enqueued/dequeued.
174           To compile it as a module, choose M here.  If unsure, say N.
176 config IP6_NF_RAW
177         tristate  'raw table support (required for TRACE)'
178         depends on IP6_NF_IPTABLES
179         help
180           This option adds a `raw' table to ip6tables. This table is the very
181           first in the netfilter framework and hooks in at the PREROUTING
182           and OUTPUT chains.
183         
184           If you want to compile it as a module, say M here and read
185           <file:Documentation/kbuild/modules.txt>.  If unsure, say `N'.
187 config IP6_NF_TARGET_ROUTE
188         tristate 'ROUTE target support'
189         depends on IP6_NF_MANGLE
190         help
191           This option adds a `ROUTE' target, which enables you to setup unusual
192           routes. The ROUTE target is also able to change the incoming interface
193           of a packet.
194         
195           The target can be or not a final target. It has to be used inside the 
196           mangle table.
197           
198           Not working as a module.
200 endmenu