blob: a26ce035e3fad076a1d76fae0c377771300c7a04 [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
Patrick McHardy96518512013-10-14 11:00:02 +020039config NF_TABLES_IPV4
40 depends on NF_TABLES
41 tristate "IPv4 nf_tables support"
Pablo Neira Ayusod497c632013-12-30 15:09:18 +010042 help
43 This option enables the IPv4 support for nf_tables.
Patrick McHardy96518512013-10-14 11:00:02 +020044
Pablo Neira Ayuso93707612013-10-10 23:21:26 +020045config NFT_CHAIN_ROUTE_IPV4
Patrick McHardy96518512013-10-14 11:00:02 +020046 depends on NF_TABLES_IPV4
Pablo Neira Ayuso93707612013-10-10 23:21:26 +020047 tristate "IPv4 nf_tables route chain support"
Pablo Neira Ayusod497c632013-12-30 15:09:18 +010048 help
49 This option enables the "route" chain for IPv4 in nf_tables. This
50 chain type is used to force packet re-routing after mangling header
51 fields such as the source, destination, type of service and
52 the packet mark.
Patrick McHardy96518512013-10-14 11:00:02 +020053
Pablo Neira Ayuso93707612013-10-10 23:21:26 +020054config NFT_CHAIN_NAT_IPV4
Patrick McHardy96518512013-10-14 11:00:02 +020055 depends on NF_TABLES_IPV4
Tomasz Bursztykaeb316282013-10-10 13:39:19 +020056 depends on NF_NAT_IPV4 && NFT_NAT
Pablo Neira Ayuso93707612013-10-10 23:21:26 +020057 tristate "IPv4 nf_tables nat chain support"
Pablo Neira Ayusod497c632013-12-30 15:09:18 +010058 help
59 This option enables the "nat" chain for IPv4 in nf_tables. This
60 chain type is used to perform Network Address Translation (NAT)
61 packet transformations such as the source, destination address and
62 source and destination ports.
Patrick McHardy96518512013-10-14 11:00:02 +020063
Patrick McHardycc4723c2014-02-05 15:03:38 +000064config NFT_REJECT_IPV4
65 depends on NF_TABLES_IPV4
66 default NFT_REJECT
67 tristate
68
Pablo Neira Ayusoed683f12013-10-07 22:53:08 +020069config NF_TABLES_ARP
70 depends on NF_TABLES
71 tristate "ARP nf_tables support"
Pablo Neira Ayusod497c632013-12-30 15:09:18 +010072 help
73 This option enables the ARP support for nf_tables.
Pablo Neira Ayusoed683f12013-10-07 22:53:08 +020074
Linus Torvalds1da177e2005-04-16 15:20:36 -070075config IP_NF_IPTABLES
76 tristate "IP tables support (required for filtering/masq/NAT)"
Patrick McHardy33b8e772007-12-17 22:47:05 -080077 default m if NETFILTER_ADVANCED=n
Patrick McHardya3c941b2007-02-12 11:15:02 -080078 select NETFILTER_XTABLES
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 help
80 iptables is a general, extensible packet identification framework.
81 The packet filtering and full NAT (masquerading, port forwarding,
82 etc) subsystems now use this: say `Y' or `M' here if you want to use
83 either of those.
84
85 To compile it as a module, choose M here. If unsure, say N.
86
Jan Engelhardtc2df73d2008-10-08 11:35:18 +020087if IP_NF_IPTABLES
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089# The matches.
Yasuyuki Kozakaidc5ab2f2006-04-01 02:22:30 -080090config IP_NF_MATCH_AH
Jan Engelhardt4c377992007-12-04 23:31:59 -080091 tristate '"ah" match support'
Patrick McHardy33b8e772007-12-17 22:47:05 -080092 depends on NETFILTER_ADVANCED
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 help
Yasuyuki Kozakaidc5ab2f2006-04-01 02:22:30 -080094 This match extension allows you to match a range of SPIs
95 inside AH header of IPSec packets.
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
97 To compile it as a module, choose M here. If unsure, say N.
98
Jan Engelhardtaba0d342008-10-08 11:35:17 +020099config IP_NF_MATCH_ECN
100 tristate '"ecn" match support'
Jan Engelhardtaba0d342008-10-08 11:35:17 +0200101 depends on NETFILTER_ADVANCED
Jan Engelhardtd446a8202011-06-09 21:03:07 +0200102 select NETFILTER_XT_MATCH_ECN
103 ---help---
104 This is a backwards-compat option for the user's convenience
105 (e.g. when running oldconfig). It selects
106 CONFIG_NETFILTER_XT_MATCH_ECN.
Jan Engelhardtaba0d342008-10-08 11:35:17 +0200107
Florian Westphal8f973392011-07-04 22:48:10 +0100108config IP_NF_MATCH_RPFILTER
109 tristate '"rpfilter" reverse path filter match support'
Florian Westphald37d6962013-04-17 22:45:25 +0000110 depends on NETFILTER_ADVANCED && (IP_NF_MANGLE || IP_NF_RAW)
Florian Westphal8f973392011-07-04 22:48:10 +0100111 ---help---
112 This option allows you to match packets whose replies would
113 go out via the interface the packet came in.
114
115 To compile it as a module, choose M here. If unsure, say N.
116 The module will be called ipt_rpfilter.
117
Jan Engelhardt43233622009-02-19 11:16:03 +0100118config IP_NF_MATCH_TTL
119 tristate '"ttl" match support'
120 depends on NETFILTER_ADVANCED
121 select NETFILTER_XT_MATCH_HL
122 ---help---
123 This is a backwards-compat option for the user's convenience
124 (e.g. when running oldconfig). It selects
Stephen Hemminger67c0d572009-03-16 15:17:23 +0100125 CONFIG_NETFILTER_XT_MATCH_HL.
Jan Engelhardt43233622009-02-19 11:16:03 +0100126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127# `filter', generic and specific targets
128config IP_NF_FILTER
129 tristate "Packet filtering"
Patrick McHardy33b8e772007-12-17 22:47:05 -0800130 default m if NETFILTER_ADVANCED=n
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 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).
135
136 To compile it as a module, choose M here. If unsure, say N.
137
138config IP_NF_TARGET_REJECT
139 tristate "REJECT target support"
140 depends on IP_NF_FILTER
Patrick McHardy33b8e772007-12-17 22:47:05 -0800141 default m if NETFILTER_ADVANCED=n
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 help
143 The REJECT target allows a filtering rule to specify that an ICMP
144 error should be issued in response to an incoming packet, rather
145 than silently being dropped.
146
147 To compile it as a module, choose M here. If unsure, say N.
148
Patrick McHardy48b1de42013-08-27 08:50:14 +0200149config IP_NF_TARGET_SYNPROXY
150 tristate "SYNPROXY target support"
151 depends on NF_CONNTRACK && NETFILTER_ADVANCED
152 select NETFILTER_SYNPROXY
153 select SYN_COOKIES
154 help
155 The SYNPROXY target allows you to intercept TCP connections and
156 establish them using syncookies before they are passed on to the
157 server. This allows to avoid conntrack and server resource usage
158 during SYN-flood attacks.
159
160 To compile it as a module, choose M here. If unsure, say N.
161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162config IP_NF_TARGET_ULOG
Pablo Neira Ayusode94c452013-05-22 22:42:37 +0000163 tristate "ULOG target support (obsolete)"
Patrick McHardy33b8e772007-12-17 22:47:05 -0800164 default m if NETFILTER_ADVANCED=n
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 ---help---
Harald Weltef40863c2005-10-10 20:51:53 -0700166
167 This option enables the old IPv4-only "ipt_ULOG" implementation
168 which has been obsoleted by the new "nfnetlink_log" code (see
169 CONFIG_NETFILTER_NETLINK_LOG).
170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 This option adds a `ULOG' target, which allows you to create rules in
172 any iptables table. The packet is passed to a userspace logging
173 daemon using netlink multicast sockets; unlike the LOG target
174 which can only be viewed through syslog.
175
Matt LaPlante44c09202006-10-03 22:34:14 +0200176 The appropriate userspace logging daemon (ulogd) may be obtained from
Justin P. Mattock631dd1a2010-10-18 11:03:14 +0200177 <http://www.netfilter.org/projects/ulogd/index.html>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179 To compile it as a module, choose M here. If unsure, say N.
180
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800181# NAT + specific targets: nf_conntrack
Patrick McHardyc7232c92012-08-26 19:14:06 +0200182config NF_NAT_IPV4
183 tristate "IPv4 NAT"
Jan Engelhardtc2df73d2008-10-08 11:35:18 +0200184 depends on NF_CONNTRACK_IPV4
Patrick McHardy33b8e772007-12-17 22:47:05 -0800185 default m if NETFILTER_ADVANCED=n
Patrick McHardyc7232c92012-08-26 19:14:06 +0200186 select NF_NAT
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800187 help
Patrick McHardyc7232c92012-08-26 19:14:06 +0200188 The IPv4 NAT option allows masquerading, port forwarding and other
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800189 forms of full Network Address Port Translation. It is controlled by
190 the `nat' table in iptables: see the man page for iptables(8).
191
192 To compile it as a module, choose M here. If unsure, say N.
193
Patrick McHardyc7232c92012-08-26 19:14:06 +0200194if NF_NAT_IPV4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
196config IP_NF_TARGET_MASQUERADE
197 tristate "MASQUERADE target support"
Patrick McHardy33b8e772007-12-17 22:47:05 -0800198 default m if NETFILTER_ADVANCED=n
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 help
200 Masquerading is a special case of NAT: all outgoing connections are
201 changed to seem to come from a particular interface's address, and
202 if the interface goes down, those connections are lost. This is
203 only useful for dialup accounts with dynamic IP address (ie. your IP
204 address will be different on next dialup).
205
206 To compile it as a module, choose M here. If unsure, say N.
207
Jan Engelhardtaba0d342008-10-08 11:35:17 +0200208config IP_NF_TARGET_NETMAP
209 tristate "NETMAP target support"
Jan Engelhardtaba0d342008-10-08 11:35:17 +0200210 depends on NETFILTER_ADVANCED
Jan Engelhardtb3d54b32012-09-21 11:37:59 +0200211 select NETFILTER_XT_TARGET_NETMAP
212 ---help---
213 This is a backwards-compat option for the user's convenience
214 (e.g. when running oldconfig). It selects
215 CONFIG_NETFILTER_XT_TARGET_NETMAP.
Jan Engelhardtaba0d342008-10-08 11:35:17 +0200216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217config IP_NF_TARGET_REDIRECT
218 tristate "REDIRECT target support"
Patrick McHardy33b8e772007-12-17 22:47:05 -0800219 depends on NETFILTER_ADVANCED
Jan Engelhardt2cbc78a2012-09-21 11:41:34 +0200220 select NETFILTER_XT_TARGET_REDIRECT
221 ---help---
222 This is a backwards-compat option for the user's convenience
223 (e.g. when running oldconfig). It selects
224 CONFIG_NETFILTER_XT_TARGET_REDIRECT.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Patrick McHardyc7232c92012-08-26 19:14:06 +0200226endif
227
Patrick McHardy807467c2006-12-02 22:10:34 -0800228config NF_NAT_SNMP_BASIC
Patrick McHardy8ce22fc2008-01-14 23:31:36 -0800229 tristate "Basic SNMP-ALG support"
Patrick McHardyc7232c92012-08-26 19:14:06 +0200230 depends on NF_CONNTRACK_SNMP && NF_NAT_IPV4
Patrick McHardy33b8e772007-12-17 22:47:05 -0800231 depends on NETFILTER_ADVANCED
Jiri Olsa93557f52011-01-18 18:12:24 +0100232 default NF_NAT && NF_CONNTRACK_SNMP
Patrick McHardy807467c2006-12-02 22:10:34 -0800233 ---help---
234
235 This module implements an Application Layer Gateway (ALG) for
236 SNMP payloads. In conjunction with NAT, it allows a network
237 management system to access multiple private networks with
238 conflicting addresses. It works by modifying IP addresses
239 inside SNMP payloads to match IP-layer NAT mapping.
240
241 This is the "basic" form of SNMP-ALG, as described in RFC 2962
242
243 To compile it as a module, choose M here. If unsure, say N.
244
Jozsef Kadlecsik55a73322006-12-02 22:07:44 -0800245# If they want FTP, set to $CONFIG_IP_NF_NAT (m or y),
246# or $CONFIG_IP_NF_FTP (m or y), whichever is weaker.
247# From kconfig-language.txt:
248#
249# <expr> '&&' <expr> (6)
250#
251# (6) Returns the result of min(/expr/, /expr/).
Patrick McHardy4910a082008-03-20 15:15:57 +0100252
Patrick McHardyf09943f2006-12-02 22:09:41 -0800253config NF_NAT_PROTO_GRE
254 tristate
Patrick McHardyc7232c92012-08-26 19:14:06 +0200255 depends on NF_NAT_IPV4 && NF_CT_PROTO_GRE
Patrick McHardy9d908a62008-04-14 11:15:50 +0200256
Patrick McHardyf09943f2006-12-02 22:09:41 -0800257config NF_NAT_PPTP
258 tristate
Patrick McHardyc7232c92012-08-26 19:14:06 +0200259 depends on NF_CONNTRACK && NF_NAT_IPV4
260 default NF_NAT_IPV4 && NF_CONNTRACK_PPTP
Patrick McHardyf09943f2006-12-02 22:09:41 -0800261 select NF_NAT_PROTO_GRE
262
Patrick McHardyf587de02006-12-02 22:08:46 -0800263config NF_NAT_H323
264 tristate
Patrick McHardyc7232c92012-08-26 19:14:06 +0200265 depends on NF_CONNTRACK && NF_NAT_IPV4
266 default NF_NAT_IPV4 && NF_CONNTRACK_H323
Patrick McHardyf587de02006-12-02 22:08:46 -0800267
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268# mangle + specific targets
269config IP_NF_MANGLE
270 tristate "Packet mangling"
Patrick McHardy33b8e772007-12-17 22:47:05 -0800271 default m if NETFILTER_ADVANCED=n
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 help
273 This option adds a `mangle' table to iptables: see the man page for
274 iptables(8). This table is used for various packet alterations
275 which can effect how the packet is routed.
276
277 To compile it as a module, choose M here. If unsure, say N.
278
Jan Engelhardtaba0d342008-10-08 11:35:17 +0200279config IP_NF_TARGET_CLUSTERIP
Kees Cookaec9a0e2012-10-02 11:19:48 -0700280 tristate "CLUSTERIP target support"
281 depends on IP_NF_MANGLE
Jan Engelhardtaba0d342008-10-08 11:35:17 +0200282 depends on NF_CONNTRACK_IPV4
283 depends on NETFILTER_ADVANCED
284 select NF_CONNTRACK_MARK
285 help
286 The CLUSTERIP target allows you to build load-balancing clusters of
287 network servers without having a dedicated load-balancing
288 router/server/switch.
289
290 To compile it as a module, choose M here. If unsure, say N.
291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292config IP_NF_TARGET_ECN
293 tristate "ECN target support"
294 depends on IP_NF_MANGLE
Patrick McHardy33b8e772007-12-17 22:47:05 -0800295 depends on NETFILTER_ADVANCED
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 ---help---
297 This option adds a `ECN' target, which can be used in the iptables mangle
298 table.
299
300 You can use this target to remove the ECN bits from the IPv4 header of
301 an IP packet. This is particularly useful, if you need to work around
302 existing ECN blackholes on the internet, but don't want to disable
303 ECN support in general.
304
305 To compile it as a module, choose M here. If unsure, say N.
306
Jan Engelhardt43233622009-02-19 11:16:03 +0100307config IP_NF_TARGET_TTL
308 tristate '"TTL" target support'
Randy Dunlap76b67172010-10-18 11:13:30 +0200309 depends on NETFILTER_ADVANCED && IP_NF_MANGLE
Jan Engelhardt43233622009-02-19 11:16:03 +0100310 select NETFILTER_XT_TARGET_HL
311 ---help---
Randy Dunlap76b67172010-10-18 11:13:30 +0200312 This is a backwards-compatible option for the user's convenience
Jan Engelhardt43233622009-02-19 11:16:03 +0100313 (e.g. when running oldconfig). It selects
Stephen Hemminger67c0d572009-03-16 15:17:23 +0100314 CONFIG_NETFILTER_XT_TARGET_HL.
Jan Engelhardt43233622009-02-19 11:16:03 +0100315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316# raw + specific targets
317config IP_NF_RAW
318 tristate 'raw table support (required for NOTRACK/TRACE)'
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 help
320 This option adds a `raw' table to iptables. This table is the very
321 first in the netfilter framework and hooks in at the PREROUTING
322 and OUTPUT chains.
323
324 If you want to compile it as a module, say M here and read
Dirk Hohndele4031492007-10-30 13:37:19 -0700325 <file:Documentation/kbuild/modules.txt>. If unsure, say `N'.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
James Morris560ee652008-06-09 15:57:24 -0700327# security table for MAC policy
328config IP_NF_SECURITY
329 tristate "Security table"
James Morris560ee652008-06-09 15:57:24 -0700330 depends on SECURITY
Patrick McHardy70eed752008-07-23 16:42:42 -0700331 depends on NETFILTER_ADVANCED
James Morris560ee652008-06-09 15:57:24 -0700332 help
333 This option adds a `security' table to iptables, for use
334 with Mandatory Access Control (MAC) policy.
335
336 If unsure, say N.
337
Jan Engelhardtc2df73d2008-10-08 11:35:18 +0200338endif # IP_NF_IPTABLES
339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340# ARP tables
341config IP_NF_ARPTABLES
342 tristate "ARP tables support"
Patrick McHardya3c941b2007-02-12 11:15:02 -0800343 select NETFILTER_XTABLES
Patrick McHardy33b8e772007-12-17 22:47:05 -0800344 depends on NETFILTER_ADVANCED
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 help
346 arptables is a general, extensible packet identification framework.
347 The ARP packet filtering and mangling (manipulation)subsystems
348 use this: say Y or M here if you want to use either of those.
349
350 To compile it as a module, choose M here. If unsure, say N.
351
Jan Engelhardtc2df73d2008-10-08 11:35:18 +0200352if IP_NF_ARPTABLES
353
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354config IP_NF_ARPFILTER
355 tristate "ARP packet filtering"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 help
357 ARP packet filtering defines a table `filter', which has a series of
358 rules for simple ARP packet filtering at local input and
359 local output. On a bridge, you can also specify filtering rules
360 for forwarded ARP packets. See the man page for arptables(8).
361
362 To compile it as a module, choose M here. If unsure, say N.
363
364config IP_NF_ARP_MANGLE
365 tristate "ARP payload mangling"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 help
367 Allows altering the ARP packet payload: source and destination
368 hardware and network addresses.
369
Jan Engelhardtc2df73d2008-10-08 11:35:18 +0200370endif # IP_NF_ARPTABLES
371
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372endmenu
373