netfilter: add protocol independent NAT core
[deliverable/linux.git] / net / ipv4 / netfilter / Kconfig
CommitLineData
1da177e4
LT
1#
2# IP netfilter configuration
3#
4
5menu "IP: Netfilter Configuration"
6 depends on INET && NETFILTER
7
73e4022f
KK
8config NF_DEFRAG_IPV4
9 tristate
10 default n
11
9fb9cbb1 12config NF_CONNTRACK_IPV4
c9386cfd
PM
13 tristate "IPv4 connection tracking support (required for NAT)"
14 depends on NF_CONNTRACK
33b8e776 15 default m if NETFILTER_ADVANCED=n
73e4022f 16 select NF_DEFRAG_IPV4
9fb9cbb1
YK
17 ---help---
18 Connection tracking keeps a record of what packets have passed
19 through your machine, in order to figure out how they are related
20 into connections.
21
22 This is IPv4 support on Layer 3 independent connection tracking.
23 Layer 3 independent connection tracking is experimental scheme
24 which generalize ip_conntrack to support other layer 3 protocols.
25
26 To compile it as a module, choose M here. If unsure, say N.
27
a999e683
PM
28config NF_CONNTRACK_PROC_COMPAT
29 bool "proc/sysctl compatibility with old connection tracking"
54b07dca 30 depends on NF_CONNTRACK_PROCFS && NF_CONNTRACK_IPV4
a999e683
PM
31 default y
32 help
33 This option enables /proc and sysctl compatibility with the old
67c0d579 34 layer 3 dependent connection tracking. This is needed to keep
a999e683
PM
35 old programs that have not been adapted to the new names working.
36
37 If unsure, say Y.
38
1da177e4 39config IP_NF_QUEUE
7af4cc3f 40 tristate "IP Userspace queueing via NETLINK (OBSOLETE)"
33b8e776 41 depends on NETFILTER_ADVANCED
1da177e4
LT
42 help
43 Netfilter has the ability to queue packets to user space: the
44 netlink device can be used to access them using this driver.
45
7af4cc3f
HW
46 This option enables the old IPv4-only "ip_queue" implementation
47 which has been obsoleted by the new "nfnetlink_queue" code (see
48 CONFIG_NETFILTER_NETLINK_QUEUE).
49
1da177e4
LT
50 To compile it as a module, choose M here. If unsure, say N.
51
52config IP_NF_IPTABLES
53 tristate "IP tables support (required for filtering/masq/NAT)"
33b8e776 54 default m if NETFILTER_ADVANCED=n
a3c941b0 55 select NETFILTER_XTABLES
1da177e4
LT
56 help
57 iptables is a general, extensible packet identification framework.
58 The packet filtering and full NAT (masquerading, port forwarding,
59 etc) subsystems now use this: say `Y' or `M' here if you want to use
60 either of those.
61
62 To compile it as a module, choose M here. If unsure, say N.
63
c2df73de
JE
64if IP_NF_IPTABLES
65
1da177e4 66# The matches.
dc5ab2fa 67config IP_NF_MATCH_AH
4c37799c 68 tristate '"ah" match support'
33b8e776 69 depends on NETFILTER_ADVANCED
1da177e4 70 help
dc5ab2fa
YK
71 This match extension allows you to match a range of SPIs
72 inside AH header of IPSec packets.
1da177e4
LT
73
74 To compile it as a module, choose M here. If unsure, say N.
75
aba0d348
JE
76config IP_NF_MATCH_ECN
77 tristate '"ecn" match support'
33b8e776 78 depends on NETFILTER_ADVANCED
d446a820
JE
79 select NETFILTER_XT_MATCH_ECN
80 ---help---
81 This is a backwards-compat option for the user's convenience
82 (e.g. when running oldconfig). It selects
83 CONFIG_NETFILTER_XT_MATCH_ECN.
1da177e4 84
8f97339d
FW
85config IP_NF_MATCH_RPFILTER
86 tristate '"rpfilter" reverse path filter match support'
87 depends on NETFILTER_ADVANCED
88 ---help---
89 This option allows you to match packets whose replies would
90 go out via the interface the packet came in.
91
92 To compile it as a module, choose M here. If unsure, say N.
93 The module will be called ipt_rpfilter.
94
4323362e
JE
95config IP_NF_MATCH_TTL
96 tristate '"ttl" match support'
97 depends on NETFILTER_ADVANCED
98 select NETFILTER_XT_MATCH_HL
99 ---help---
100 This is a backwards-compat option for the user's convenience
101 (e.g. when running oldconfig). It selects
67c0d579 102 CONFIG_NETFILTER_XT_MATCH_HL.
4323362e 103
1da177e4
LT
104# `filter', generic and specific targets
105config IP_NF_FILTER
106 tristate "Packet filtering"
33b8e776 107 default m if NETFILTER_ADVANCED=n
1da177e4
LT
108 help
109 Packet filtering defines a table `filter', which has a series of
110 rules for simple packet filtering at local input, forwarding and
111 local output. See the man page for iptables(8).
112
113 To compile it as a module, choose M here. If unsure, say N.
114
115config IP_NF_TARGET_REJECT
116 tristate "REJECT target support"
117 depends on IP_NF_FILTER
33b8e776 118 default m if NETFILTER_ADVANCED=n
1da177e4
LT
119 help
120 The REJECT target allows a filtering rule to specify that an ICMP
121 error should be issued in response to an incoming packet, rather
122 than silently being dropped.
123
124 To compile it as a module, choose M here. If unsure, say N.
125
1da177e4 126config IP_NF_TARGET_ULOG
44adf28f 127 tristate "ULOG target support"
33b8e776 128 default m if NETFILTER_ADVANCED=n
1da177e4 129 ---help---
f40863ce
HW
130
131 This option enables the old IPv4-only "ipt_ULOG" implementation
132 which has been obsoleted by the new "nfnetlink_log" code (see
133 CONFIG_NETFILTER_NETLINK_LOG).
134
1da177e4
LT
135 This option adds a `ULOG' target, which allows you to create rules in
136 any iptables table. The packet is passed to a userspace logging
137 daemon using netlink multicast sockets; unlike the LOG target
138 which can only be viewed through syslog.
139
44c09201 140 The appropriate userspace logging daemon (ulogd) may be obtained from
631dd1a8 141 <http://www.netfilter.org/projects/ulogd/index.html>
1da177e4
LT
142
143 To compile it as a module, choose M here. If unsure, say N.
144
5b1158e9 145# NAT + specific targets: nf_conntrack
c7232c99
PM
146config NF_NAT_IPV4
147 tristate "IPv4 NAT"
c2df73de 148 depends on NF_CONNTRACK_IPV4
33b8e776 149 default m if NETFILTER_ADVANCED=n
c7232c99 150 select NF_NAT
5b1158e9 151 help
c7232c99 152 The IPv4 NAT option allows masquerading, port forwarding and other
5b1158e9
JK
153 forms of full Network Address Port Translation. It is controlled by
154 the `nat' table in iptables: see the man page for iptables(8).
155
156 To compile it as a module, choose M here. If unsure, say N.
157
c7232c99 158if NF_NAT_IPV4
1da177e4
LT
159
160config IP_NF_TARGET_MASQUERADE
161 tristate "MASQUERADE target support"
33b8e776 162 default m if NETFILTER_ADVANCED=n
1da177e4
LT
163 help
164 Masquerading is a special case of NAT: all outgoing connections are
165 changed to seem to come from a particular interface's address, and
166 if the interface goes down, those connections are lost. This is
167 only useful for dialup accounts with dynamic IP address (ie. your IP
168 address will be different on next dialup).
169
170 To compile it as a module, choose M here. If unsure, say N.
171
aba0d348
JE
172config IP_NF_TARGET_NETMAP
173 tristate "NETMAP target support"
33b8e776 174 depends on NETFILTER_ADVANCED
1da177e4 175 help
aba0d348
JE
176 NETMAP is an implementation of static 1:1 NAT mapping of network
177 addresses. It maps the network address part, while keeping the host
178 address part intact.
1da177e4
LT
179
180 To compile it as a module, choose M here. If unsure, say N.
181
aba0d348
JE
182config IP_NF_TARGET_REDIRECT
183 tristate "REDIRECT target support"
33b8e776 184 depends on NETFILTER_ADVANCED
1da177e4 185 help
aba0d348
JE
186 REDIRECT is a special case of NAT: all incoming connections are
187 mapped onto the incoming interface's address, causing the packets to
188 come to the local machine instead of passing through. This is
189 useful for transparent proxies.
1da177e4
LT
190
191 To compile it as a module, choose M here. If unsure, say N.
192
c7232c99
PM
193endif
194
807467c2 195config NF_NAT_SNMP_BASIC
8ce22fca 196 tristate "Basic SNMP-ALG support"
c7232c99 197 depends on NF_CONNTRACK_SNMP && NF_NAT_IPV4
33b8e776 198 depends on NETFILTER_ADVANCED
93557f53 199 default NF_NAT && NF_CONNTRACK_SNMP
807467c2
PM
200 ---help---
201
202 This module implements an Application Layer Gateway (ALG) for
203 SNMP payloads. In conjunction with NAT, it allows a network
1da177e4
LT
204 management system to access multiple private networks with
205 conflicting addresses. It works by modifying IP addresses
206 inside SNMP payloads to match IP-layer NAT mapping.
207
208 This is the "basic" form of SNMP-ALG, as described in RFC 2962
209
210 To compile it as a module, choose M here. If unsure, say N.
211
55a73324
JK
212# If they want FTP, set to $CONFIG_IP_NF_NAT (m or y),
213# or $CONFIG_IP_NF_FTP (m or y), whichever is weaker.
214# From kconfig-language.txt:
215#
216# <expr> '&&' <expr> (6)
217#
218# (6) Returns the result of min(/expr/, /expr/).
4910a087 219
f09943fe
PM
220config NF_NAT_PROTO_GRE
221 tristate
c7232c99 222 depends on NF_NAT_IPV4 && NF_CT_PROTO_GRE
9d908a69 223
55a73324
JK
224config NF_NAT_FTP
225 tristate
c7232c99
PM
226 depends on NF_CONNTRACK && NF_NAT_IPV4
227 default NF_NAT_IPV4 && NF_CONNTRACK_FTP
55a73324 228
869f37d8
PM
229config NF_NAT_IRC
230 tristate
c7232c99
PM
231 depends on NF_CONNTRACK && NF_NAT_IPV4
232 default NF_NAT_IPV4 && NF_CONNTRACK_IRC
869f37d8 233
a536df35
PM
234config NF_NAT_TFTP
235 tristate
c7232c99
PM
236 depends on NF_CONNTRACK && NF_NAT_IPV4
237 default NF_NAT_IPV4 && NF_CONNTRACK_TFTP
a536df35 238
16958900
PM
239config NF_NAT_AMANDA
240 tristate
c7232c99
PM
241 depends on NF_CONNTRACK && NF_NAT_IPV4
242 default NF_NAT_IPV4 && NF_CONNTRACK_AMANDA
16958900 243
f09943fe
PM
244config NF_NAT_PPTP
245 tristate
c7232c99
PM
246 depends on NF_CONNTRACK && NF_NAT_IPV4
247 default NF_NAT_IPV4 && NF_CONNTRACK_PPTP
f09943fe
PM
248 select NF_NAT_PROTO_GRE
249
f587de0e
PM
250config NF_NAT_H323
251 tristate
c7232c99
PM
252 depends on NF_CONNTRACK && NF_NAT_IPV4
253 default NF_NAT_IPV4 && NF_CONNTRACK_H323
f587de0e 254
9fafcd7b
PM
255config NF_NAT_SIP
256 tristate
c7232c99
PM
257 depends on NF_CONNTRACK && NF_NAT_IPV4
258 default NF_NAT_IPV4 && NF_CONNTRACK_SIP
9fafcd7b 259
1da177e4
LT
260# mangle + specific targets
261config IP_NF_MANGLE
262 tristate "Packet mangling"
33b8e776 263 default m if NETFILTER_ADVANCED=n
1da177e4
LT
264 help
265 This option adds a `mangle' table to iptables: see the man page for
266 iptables(8). This table is used for various packet alterations
267 which can effect how the packet is routed.
268
269 To compile it as a module, choose M here. If unsure, say N.
270
aba0d348
JE
271config IP_NF_TARGET_CLUSTERIP
272 tristate "CLUSTERIP target support (EXPERIMENTAL)"
273 depends on IP_NF_MANGLE && EXPERIMENTAL
274 depends on NF_CONNTRACK_IPV4
275 depends on NETFILTER_ADVANCED
276 select NF_CONNTRACK_MARK
277 help
278 The CLUSTERIP target allows you to build load-balancing clusters of
279 network servers without having a dedicated load-balancing
280 router/server/switch.
281
282 To compile it as a module, choose M here. If unsure, say N.
283
1da177e4
LT
284config IP_NF_TARGET_ECN
285 tristate "ECN target support"
286 depends on IP_NF_MANGLE
33b8e776 287 depends on NETFILTER_ADVANCED
1da177e4
LT
288 ---help---
289 This option adds a `ECN' target, which can be used in the iptables mangle
290 table.
291
292 You can use this target to remove the ECN bits from the IPv4 header of
293 an IP packet. This is particularly useful, if you need to work around
294 existing ECN blackholes on the internet, but don't want to disable
295 ECN support in general.
296
297 To compile it as a module, choose M here. If unsure, say N.
298
4323362e
JE
299config IP_NF_TARGET_TTL
300 tristate '"TTL" target support'
76b6717b 301 depends on NETFILTER_ADVANCED && IP_NF_MANGLE
4323362e
JE
302 select NETFILTER_XT_TARGET_HL
303 ---help---
76b6717b 304 This is a backwards-compatible option for the user's convenience
4323362e 305 (e.g. when running oldconfig). It selects
67c0d579 306 CONFIG_NETFILTER_XT_TARGET_HL.
4323362e 307
1da177e4
LT
308# raw + specific targets
309config IP_NF_RAW
310 tristate 'raw table support (required for NOTRACK/TRACE)'
1da177e4
LT
311 help
312 This option adds a `raw' table to iptables. This table is the very
313 first in the netfilter framework and hooks in at the PREROUTING
314 and OUTPUT chains.
315
316 If you want to compile it as a module, say M here and read
e403149c 317 <file:Documentation/kbuild/modules.txt>. If unsure, say `N'.
560ee653
JM
318
319# security table for MAC policy
320config IP_NF_SECURITY
321 tristate "Security table"
560ee653 322 depends on SECURITY
70eed75d 323 depends on NETFILTER_ADVANCED
560ee653
JM
324 help
325 This option adds a `security' table to iptables, for use
326 with Mandatory Access Control (MAC) policy.
327
328 If unsure, say N.
1da177e4 329
c2df73de
JE
330endif # IP_NF_IPTABLES
331
1da177e4
LT
332# ARP tables
333config IP_NF_ARPTABLES
334 tristate "ARP tables support"
a3c941b0 335 select NETFILTER_XTABLES
33b8e776 336 depends on NETFILTER_ADVANCED
1da177e4
LT
337 help
338 arptables is a general, extensible packet identification framework.
339 The ARP packet filtering and mangling (manipulation)subsystems
340 use this: say Y or M here if you want to use either of those.
341
342 To compile it as a module, choose M here. If unsure, say N.
343
c2df73de
JE
344if IP_NF_ARPTABLES
345
1da177e4
LT
346config IP_NF_ARPFILTER
347 tristate "ARP packet filtering"
1da177e4
LT
348 help
349 ARP packet filtering defines a table `filter', which has a series of
350 rules for simple ARP packet filtering at local input and
351 local output. On a bridge, you can also specify filtering rules
352 for forwarded ARP packets. See the man page for arptables(8).
353
354 To compile it as a module, choose M here. If unsure, say N.
355
356config IP_NF_ARP_MANGLE
357 tristate "ARP payload mangling"
1da177e4
LT
358 help
359 Allows altering the ARP packet payload: source and destination
360 hardware and network addresses.
361
c2df73de
JE
362endif # IP_NF_ARPTABLES
363
1da177e4
LT
364endmenu
365
This page took 0.71221 seconds and 5 git commands to generate.