blob: c187c60e3e0c75e0f9c298eaa831c2f19d9a73fc [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
2# IP netfilter configuration
3#
4
5menu "IP: Netfilter Configuration"
6 depends on INET && NETFILTER
7
KOVACS Krisztian73e40222008-10-08 11:35:12 +02008config NF_DEFRAG_IPV4
9 tristate
10 default n
11
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080012config NF_CONNTRACK_IPV4
Patrick McHardyc9386cf2007-01-04 12:16:06 -080013 tristate "IPv4 connection tracking support (required for NAT)"
14 depends on NF_CONNTRACK
Patrick McHardy33b8e772007-12-17 22:47:05 -080015 default m if NETFILTER_ADVANCED=n
KOVACS Krisztian73e40222008-10-08 11:35:12 +020016 select NF_DEFRAG_IPV4
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080017 ---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
Patrick McHardya999e682006-11-29 02:35:20 +010028config NF_CONNTRACK_PROC_COMPAT
29 bool "proc/sysctl compatibility with old connection tracking"
Jan Engelhardt54b07dc2011-04-21 09:32:45 +020030 depends on NF_CONNTRACK_PROCFS && NF_CONNTRACK_IPV4
Patrick McHardya999e682006-11-29 02:35:20 +010031 default y
32 help
33 This option enables /proc and sysctl compatibility with the old
Stephen Hemminger67c0d572009-03-16 15:17:23 +010034 layer 3 dependent connection tracking. This is needed to keep
Patrick McHardya999e682006-11-29 02:35:20 +010035 old programs that have not been adapted to the new names working.
36
37 If unsure, say Y.
38
Pablo Neira Ayusof04e5992015-03-05 14:56:15 +010039if NF_TABLES
40
41config NF_TABLES_IPV4
42 tristate "IPv4 nf_tables support"
43 help
44 This option enables the IPv4 support for nf_tables.
45
46if NF_TABLES_IPV4
47
48config NFT_CHAIN_ROUTE_IPV4
49 tristate "IPv4 nf_tables route chain support"
50 help
51 This option enables the "route" chain for IPv4 in nf_tables. This
52 chain type is used to force packet re-routing after mangling header
53 fields such as the source, destination, type of service and
54 the packet mark.
55
56config NFT_REJECT_IPV4
57 select NF_REJECT_IPV4
58 default NFT_REJECT
59 tristate
60
Pablo Neira Ayusod877f072015-05-31 18:04:11 +020061config NFT_DUP_IPV4
62 tristate "IPv4 nf_tables packet duplication support"
Pablo Neira Ayusod3340b72015-12-09 22:06:59 +010063 depends on !NF_CONNTRACK || NF_CONNTRACK
Pablo Neira Ayusod877f072015-05-31 18:04:11 +020064 select NF_DUP_IPV4
65 help
66 This module enables IPv4 packet duplication support for nf_tables.
67
Pablo Neira Ayusof04e5992015-03-05 14:56:15 +010068endif # NF_TABLES_IPV4
69
70config NF_TABLES_ARP
71 tristate "ARP nf_tables support"
72 help
73 This option enables the ARP support for nf_tables.
74
75endif # NF_TABLES
76
Pablo Neira Ayusobbde9fc2015-05-31 17:54:44 +020077config NF_DUP_IPV4
78 tristate "Netfilter IPv4 packet duplication to alternate destination"
Pablo Neira Ayuso6ece90f2015-09-29 21:10:05 +020079 depends on !NF_CONNTRACK || NF_CONNTRACK
Pablo Neira Ayusobbde9fc2015-05-31 17:54:44 +020080 help
81 This option enables the nf_dup_ipv4 core, which duplicates an IPv4
82 packet to be rerouted to another destination.
83
Pablo Neira Ayusoc1878862014-06-28 18:39:01 +020084config NF_LOG_ARP
85 tristate "ARP packet logging"
86 default m if NETFILTER_ADVANCED=n
87 select NF_LOG_COMMON
88
89config NF_LOG_IPV4
90 tristate "IPv4 packet logging"
91 default m if NETFILTER_ADVANCED=n
92 select NF_LOG_COMMON
93
Pablo Neira Ayusoc8d7b982014-09-26 14:35:15 +020094config NF_REJECT_IPV4
95 tristate "IPv4 packet rejection"
96 default m if NETFILTER_ADVANCED=n
97
Pablo Neira Ayuso8993cf82014-08-11 18:21:49 +020098config NF_NAT_IPV4
99 tristate "IPv4 NAT"
100 depends on NF_CONNTRACK_IPV4
101 default m if NETFILTER_ADVANCED=n
102 select NF_NAT
103 help
104 The IPv4 NAT option allows masquerading, port forwarding and other
105 forms of full Network Address Port Translation. This can be
106 controlled by iptables or nft.
107
108if NF_NAT_IPV4
109
Pablo Neira Ayuso3e8dc212014-09-11 17:42:00 +0200110config NFT_CHAIN_NAT_IPV4
111 depends on NF_TABLES_IPV4
112 tristate "IPv4 nf_tables nat chain support"
113 help
114 This option enables the "nat" chain for IPv4 in nf_tables. This
115 chain type is used to perform Network Address Translation (NAT)
116 packet transformations such as the source, destination address and
117 source and destination ports.
118
Pablo Neira Ayuso0bbe80e2014-09-11 17:51:27 +0200119config NF_NAT_MASQUERADE_IPV4
120 tristate "IPv4 masquerade support"
121 help
122 This is the kernel functionality to provide NAT in the masquerade
123 flavour (automatic source address selection).
124
125config NFT_MASQ_IPV4
126 tristate "IPv4 masquerading support for nf_tables"
127 depends on NF_TABLES_IPV4
128 depends on NFT_MASQ
129 select NF_NAT_MASQUERADE_IPV4
130 help
131 This is the expression that provides IPv4 masquerading support for
132 nf_tables.
133
Arturo Borreroe9105f12014-10-17 12:39:09 +0200134config NFT_REDIR_IPV4
135 tristate "IPv4 redirect support for nf_tables"
136 depends on NF_TABLES_IPV4
137 depends on NFT_REDIR
Pablo Neira Ayusob59eaf92014-11-26 12:46:50 +0100138 select NF_NAT_REDIRECT
Arturo Borreroe9105f12014-10-17 12:39:09 +0200139 help
140 This is the expression that provides IPv4 redirect support for
141 nf_tables.
142
Pablo Neira Ayuso8993cf82014-08-11 18:21:49 +0200143config NF_NAT_SNMP_BASIC
144 tristate "Basic SNMP-ALG support"
145 depends on NF_CONNTRACK_SNMP
146 depends on NETFILTER_ADVANCED
147 default NF_NAT && NF_CONNTRACK_SNMP
148 ---help---
149
150 This module implements an Application Layer Gateway (ALG) for
151 SNMP payloads. In conjunction with NAT, it allows a network
152 management system to access multiple private networks with
153 conflicting addresses. It works by modifying IP addresses
154 inside SNMP payloads to match IP-layer NAT mapping.
155
156 This is the "basic" form of SNMP-ALG, as described in RFC 2962
157
158 To compile it as a module, choose M here. If unsure, say N.
159
160config NF_NAT_PROTO_GRE
161 tristate
162 depends on NF_CT_PROTO_GRE
163
164config NF_NAT_PPTP
165 tristate
166 depends on NF_CONNTRACK
167 default NF_CONNTRACK_PPTP
168 select NF_NAT_PROTO_GRE
169
170config NF_NAT_H323
171 tristate
172 depends on NF_CONNTRACK
173 default NF_CONNTRACK_H323
174
175endif # NF_NAT_IPV4
176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177config IP_NF_IPTABLES
178 tristate "IP tables support (required for filtering/masq/NAT)"
Patrick McHardy33b8e772007-12-17 22:47:05 -0800179 default m if NETFILTER_ADVANCED=n
Patrick McHardya3c941b2007-02-12 11:15:02 -0800180 select NETFILTER_XTABLES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 help
182 iptables is a general, extensible packet identification framework.
183 The packet filtering and full NAT (masquerading, port forwarding,
184 etc) subsystems now use this: say `Y' or `M' here if you want to use
185 either of those.
186
187 To compile it as a module, choose M here. If unsure, say N.
188
Jan Engelhardtc2df73d2008-10-08 11:35:18 +0200189if IP_NF_IPTABLES
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191# The matches.
Yasuyuki Kozakaidc5ab2f2006-04-01 02:22:30 -0800192config IP_NF_MATCH_AH
Jan Engelhardt4c377992007-12-04 23:31:59 -0800193 tristate '"ah" match support'
Patrick McHardy33b8e772007-12-17 22:47:05 -0800194 depends on NETFILTER_ADVANCED
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 help
Yasuyuki Kozakaidc5ab2f2006-04-01 02:22:30 -0800196 This match extension allows you to match a range of SPIs
197 inside AH header of IPSec packets.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199 To compile it as a module, choose M here. If unsure, say N.
200
Jan Engelhardtaba0d342008-10-08 11:35:17 +0200201config IP_NF_MATCH_ECN
202 tristate '"ecn" match support'
Jan Engelhardtaba0d342008-10-08 11:35:17 +0200203 depends on NETFILTER_ADVANCED
Jan Engelhardtd446a8202011-06-09 21:03:07 +0200204 select NETFILTER_XT_MATCH_ECN
205 ---help---
206 This is a backwards-compat option for the user's convenience
207 (e.g. when running oldconfig). It selects
208 CONFIG_NETFILTER_XT_MATCH_ECN.
Jan Engelhardtaba0d342008-10-08 11:35:17 +0200209
Florian Westphal8f973392011-07-04 22:48:10 +0100210config IP_NF_MATCH_RPFILTER
211 tristate '"rpfilter" reverse path filter match support'
Pablo Neira Ayusof09becc2015-06-12 13:58:52 +0200212 depends on NETFILTER_ADVANCED
213 depends on IP_NF_MANGLE || IP_NF_RAW
Florian Westphal8f973392011-07-04 22:48:10 +0100214 ---help---
215 This option allows you to match packets whose replies would
216 go out via the interface the packet came in.
217
218 To compile it as a module, choose M here. If unsure, say N.
219 The module will be called ipt_rpfilter.
220
Jan Engelhardt43233622009-02-19 11:16:03 +0100221config IP_NF_MATCH_TTL
222 tristate '"ttl" match support'
223 depends on NETFILTER_ADVANCED
224 select NETFILTER_XT_MATCH_HL
225 ---help---
226 This is a backwards-compat option for the user's convenience
227 (e.g. when running oldconfig). It selects
Stephen Hemminger67c0d572009-03-16 15:17:23 +0100228 CONFIG_NETFILTER_XT_MATCH_HL.
Jan Engelhardt43233622009-02-19 11:16:03 +0100229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230# `filter', generic and specific targets
231config IP_NF_FILTER
232 tristate "Packet filtering"
Patrick McHardy33b8e772007-12-17 22:47:05 -0800233 default m if NETFILTER_ADVANCED=n
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 help
235 Packet filtering defines a table `filter', which has a series of
236 rules for simple packet filtering at local input, forwarding and
237 local output. See the man page for iptables(8).
238
239 To compile it as a module, choose M here. If unsure, say N.
240
241config IP_NF_TARGET_REJECT
242 tristate "REJECT target support"
243 depends on IP_NF_FILTER
Pablo Neira Ayusoc8d7b982014-09-26 14:35:15 +0200244 select NF_REJECT_IPV4
Patrick McHardy33b8e772007-12-17 22:47:05 -0800245 default m if NETFILTER_ADVANCED=n
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 help
247 The REJECT target allows a filtering rule to specify that an ICMP
248 error should be issued in response to an incoming packet, rather
249 than silently being dropped.
250
251 To compile it as a module, choose M here. If unsure, say N.
252
Patrick McHardy48b1de42013-08-27 08:50:14 +0200253config IP_NF_TARGET_SYNPROXY
254 tristate "SYNPROXY target support"
255 depends on NF_CONNTRACK && NETFILTER_ADVANCED
256 select NETFILTER_SYNPROXY
257 select SYN_COOKIES
258 help
259 The SYNPROXY target allows you to intercept TCP connections and
260 establish them using syncookies before they are passed on to the
261 server. This allows to avoid conntrack and server resource usage
262 during SYN-flood attacks.
263
264 To compile it as a module, choose M here. If unsure, say N.
265
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800266# NAT + specific targets: nf_conntrack
Pablo Neira Ayuso8993cf82014-08-11 18:21:49 +0200267config IP_NF_NAT
268 tristate "iptables NAT support"
Jan Engelhardtc2df73d2008-10-08 11:35:18 +0200269 depends on NF_CONNTRACK_IPV4
Patrick McHardy33b8e772007-12-17 22:47:05 -0800270 default m if NETFILTER_ADVANCED=n
Patrick McHardyc7232c92012-08-26 19:14:06 +0200271 select NF_NAT
Pablo Neira Ayuso8993cf82014-08-11 18:21:49 +0200272 select NF_NAT_IPV4
273 select NETFILTER_XT_NAT
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800274 help
Pablo Neira Ayuso8993cf82014-08-11 18:21:49 +0200275 This enables the `nat' table in iptables. This allows masquerading,
276 port forwarding and other forms of full Network Address Port
277 Translation.
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800278
279 To compile it as a module, choose M here. If unsure, say N.
280
Pablo Neira Ayuso8993cf82014-08-11 18:21:49 +0200281if IP_NF_NAT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283config IP_NF_TARGET_MASQUERADE
284 tristate "MASQUERADE target support"
Arturo Borrero8dd33cc2014-09-04 14:06:33 +0200285 select NF_NAT_MASQUERADE_IPV4
Patrick McHardy33b8e772007-12-17 22:47:05 -0800286 default m if NETFILTER_ADVANCED=n
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 help
288 Masquerading is a special case of NAT: all outgoing connections are
289 changed to seem to come from a particular interface's address, and
290 if the interface goes down, those connections are lost. This is
291 only useful for dialup accounts with dynamic IP address (ie. your IP
292 address will be different on next dialup).
293
294 To compile it as a module, choose M here. If unsure, say N.
295
Jan Engelhardtaba0d342008-10-08 11:35:17 +0200296config IP_NF_TARGET_NETMAP
297 tristate "NETMAP target support"
Jan Engelhardtaba0d342008-10-08 11:35:17 +0200298 depends on NETFILTER_ADVANCED
Jan Engelhardtb3d54b32012-09-21 11:37:59 +0200299 select NETFILTER_XT_TARGET_NETMAP
300 ---help---
301 This is a backwards-compat option for the user's convenience
302 (e.g. when running oldconfig). It selects
303 CONFIG_NETFILTER_XT_TARGET_NETMAP.
Jan Engelhardtaba0d342008-10-08 11:35:17 +0200304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305config IP_NF_TARGET_REDIRECT
306 tristate "REDIRECT target support"
Patrick McHardy33b8e772007-12-17 22:47:05 -0800307 depends on NETFILTER_ADVANCED
Jan Engelhardt2cbc78a2012-09-21 11:41:34 +0200308 select NETFILTER_XT_TARGET_REDIRECT
309 ---help---
310 This is a backwards-compat option for the user's convenience
311 (e.g. when running oldconfig). It selects
312 CONFIG_NETFILTER_XT_TARGET_REDIRECT.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Pablo Neira Ayuso8993cf82014-08-11 18:21:49 +0200314endif # IP_NF_NAT
Patrick McHardyf587de02006-12-02 22:08:46 -0800315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316# mangle + specific targets
317config IP_NF_MANGLE
318 tristate "Packet mangling"
Patrick McHardy33b8e772007-12-17 22:47:05 -0800319 default m if NETFILTER_ADVANCED=n
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 help
321 This option adds a `mangle' table to iptables: see the man page for
322 iptables(8). This table is used for various packet alterations
323 which can effect how the packet is routed.
324
325 To compile it as a module, choose M here. If unsure, say N.
326
Jan Engelhardtaba0d342008-10-08 11:35:17 +0200327config IP_NF_TARGET_CLUSTERIP
Kees Cookaec9a0e2012-10-02 11:19:48 -0700328 tristate "CLUSTERIP target support"
329 depends on IP_NF_MANGLE
Jan Engelhardtaba0d342008-10-08 11:35:17 +0200330 depends on NF_CONNTRACK_IPV4
331 depends on NETFILTER_ADVANCED
332 select NF_CONNTRACK_MARK
333 help
334 The CLUSTERIP target allows you to build load-balancing clusters of
335 network servers without having a dedicated load-balancing
336 router/server/switch.
337
338 To compile it as a module, choose M here. If unsure, say N.
339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340config IP_NF_TARGET_ECN
341 tristate "ECN target support"
342 depends on IP_NF_MANGLE
Patrick McHardy33b8e772007-12-17 22:47:05 -0800343 depends on NETFILTER_ADVANCED
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 ---help---
345 This option adds a `ECN' target, which can be used in the iptables mangle
346 table.
347
348 You can use this target to remove the ECN bits from the IPv4 header of
349 an IP packet. This is particularly useful, if you need to work around
350 existing ECN blackholes on the internet, but don't want to disable
351 ECN support in general.
352
353 To compile it as a module, choose M here. If unsure, say N.
354
Jan Engelhardt43233622009-02-19 11:16:03 +0100355config IP_NF_TARGET_TTL
356 tristate '"TTL" target support'
Randy Dunlap76b67172010-10-18 11:13:30 +0200357 depends on NETFILTER_ADVANCED && IP_NF_MANGLE
Jan Engelhardt43233622009-02-19 11:16:03 +0100358 select NETFILTER_XT_TARGET_HL
359 ---help---
Randy Dunlap76b67172010-10-18 11:13:30 +0200360 This is a backwards-compatible option for the user's convenience
Jan Engelhardt43233622009-02-19 11:16:03 +0100361 (e.g. when running oldconfig). It selects
Stephen Hemminger67c0d572009-03-16 15:17:23 +0100362 CONFIG_NETFILTER_XT_TARGET_HL.
Jan Engelhardt43233622009-02-19 11:16:03 +0100363
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364# raw + specific targets
365config IP_NF_RAW
366 tristate 'raw table support (required for NOTRACK/TRACE)'
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 help
368 This option adds a `raw' table to iptables. This table is the very
369 first in the netfilter framework and hooks in at the PREROUTING
370 and OUTPUT chains.
371
372 If you want to compile it as a module, say M here and read
Dirk Hohndele4031492007-10-30 13:37:19 -0700373 <file:Documentation/kbuild/modules.txt>. If unsure, say `N'.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
James Morris560ee652008-06-09 15:57:24 -0700375# security table for MAC policy
376config IP_NF_SECURITY
377 tristate "Security table"
James Morris560ee652008-06-09 15:57:24 -0700378 depends on SECURITY
Patrick McHardy70eed752008-07-23 16:42:42 -0700379 depends on NETFILTER_ADVANCED
James Morris560ee652008-06-09 15:57:24 -0700380 help
381 This option adds a `security' table to iptables, for use
382 with Mandatory Access Control (MAC) policy.
383
384 If unsure, say N.
385
Jan Engelhardtc2df73d2008-10-08 11:35:18 +0200386endif # IP_NF_IPTABLES
387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388# ARP tables
389config IP_NF_ARPTABLES
390 tristate "ARP tables support"
Patrick McHardya3c941b2007-02-12 11:15:02 -0800391 select NETFILTER_XTABLES
Patrick McHardy33b8e772007-12-17 22:47:05 -0800392 depends on NETFILTER_ADVANCED
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 help
394 arptables is a general, extensible packet identification framework.
395 The ARP packet filtering and mangling (manipulation)subsystems
396 use this: say Y or M here if you want to use either of those.
397
398 To compile it as a module, choose M here. If unsure, say N.
399
Jan Engelhardtc2df73d2008-10-08 11:35:18 +0200400if IP_NF_ARPTABLES
401
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402config IP_NF_ARPFILTER
403 tristate "ARP packet filtering"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 help
405 ARP packet filtering defines a table `filter', which has a series of
406 rules for simple ARP packet filtering at local input and
407 local output. On a bridge, you can also specify filtering rules
408 for forwarded ARP packets. See the man page for arptables(8).
409
410 To compile it as a module, choose M here. If unsure, say N.
411
412config IP_NF_ARP_MANGLE
413 tristate "ARP payload mangling"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 help
415 Allows altering the ARP packet payload: source and destination
416 hardware and network addresses.
417
Jan Engelhardtc2df73d2008-10-08 11:35:18 +0200418endif # IP_NF_ARPTABLES
419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420endmenu
421