blob: 81c6910cfa925b315c8efda5e3d79af817c82c88 [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
Pablo Neira Ayusoed683f12013-10-07 22:53:08 +020064config NF_TABLES_ARP
65 depends on NF_TABLES
66 tristate "ARP nf_tables support"
Pablo Neira Ayusod497c632013-12-30 15:09:18 +010067 help
68 This option enables the ARP support for nf_tables.
Pablo Neira Ayusoed683f12013-10-07 22:53:08 +020069
Linus Torvalds1da177e2005-04-16 15:20:36 -070070config IP_NF_IPTABLES
71 tristate "IP tables support (required for filtering/masq/NAT)"
Patrick McHardy33b8e772007-12-17 22:47:05 -080072 default m if NETFILTER_ADVANCED=n
Patrick McHardya3c941b2007-02-12 11:15:02 -080073 select NETFILTER_XTABLES
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 help
75 iptables is a general, extensible packet identification framework.
76 The packet filtering and full NAT (masquerading, port forwarding,
77 etc) subsystems now use this: say `Y' or `M' here if you want to use
78 either of those.
79
80 To compile it as a module, choose M here. If unsure, say N.
81
Jan Engelhardtc2df73d2008-10-08 11:35:18 +020082if IP_NF_IPTABLES
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084# The matches.
Yasuyuki Kozakaidc5ab2f2006-04-01 02:22:30 -080085config IP_NF_MATCH_AH
Jan Engelhardt4c377992007-12-04 23:31:59 -080086 tristate '"ah" match support'
Patrick McHardy33b8e772007-12-17 22:47:05 -080087 depends on NETFILTER_ADVANCED
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 help
Yasuyuki Kozakaidc5ab2f2006-04-01 02:22:30 -080089 This match extension allows you to match a range of SPIs
90 inside AH header of IPSec packets.
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92 To compile it as a module, choose M here. If unsure, say N.
93
Jan Engelhardtaba0d342008-10-08 11:35:17 +020094config IP_NF_MATCH_ECN
95 tristate '"ecn" match support'
Jan Engelhardtaba0d342008-10-08 11:35:17 +020096 depends on NETFILTER_ADVANCED
Jan Engelhardtd446a8202011-06-09 21:03:07 +020097 select NETFILTER_XT_MATCH_ECN
98 ---help---
99 This is a backwards-compat option for the user's convenience
100 (e.g. when running oldconfig). It selects
101 CONFIG_NETFILTER_XT_MATCH_ECN.
Jan Engelhardtaba0d342008-10-08 11:35:17 +0200102
Florian Westphal8f973392011-07-04 22:48:10 +0100103config IP_NF_MATCH_RPFILTER
104 tristate '"rpfilter" reverse path filter match support'
Florian Westphald37d6962013-04-17 22:45:25 +0000105 depends on NETFILTER_ADVANCED && (IP_NF_MANGLE || IP_NF_RAW)
Florian Westphal8f973392011-07-04 22:48:10 +0100106 ---help---
107 This option allows you to match packets whose replies would
108 go out via the interface the packet came in.
109
110 To compile it as a module, choose M here. If unsure, say N.
111 The module will be called ipt_rpfilter.
112
Jan Engelhardt43233622009-02-19 11:16:03 +0100113config IP_NF_MATCH_TTL
114 tristate '"ttl" match support'
115 depends on NETFILTER_ADVANCED
116 select NETFILTER_XT_MATCH_HL
117 ---help---
118 This is a backwards-compat option for the user's convenience
119 (e.g. when running oldconfig). It selects
Stephen Hemminger67c0d572009-03-16 15:17:23 +0100120 CONFIG_NETFILTER_XT_MATCH_HL.
Jan Engelhardt43233622009-02-19 11:16:03 +0100121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122# `filter', generic and specific targets
123config IP_NF_FILTER
124 tristate "Packet filtering"
Patrick McHardy33b8e772007-12-17 22:47:05 -0800125 default m if NETFILTER_ADVANCED=n
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 help
127 Packet filtering defines a table `filter', which has a series of
128 rules for simple packet filtering at local input, forwarding and
129 local output. See the man page for iptables(8).
130
131 To compile it as a module, choose M here. If unsure, say N.
132
133config IP_NF_TARGET_REJECT
134 tristate "REJECT target support"
135 depends on IP_NF_FILTER
Patrick McHardy33b8e772007-12-17 22:47:05 -0800136 default m if NETFILTER_ADVANCED=n
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 help
138 The REJECT target allows a filtering rule to specify that an ICMP
139 error should be issued in response to an incoming packet, rather
140 than silently being dropped.
141
142 To compile it as a module, choose M here. If unsure, say N.
143
Patrick McHardy48b1de42013-08-27 08:50:14 +0200144config IP_NF_TARGET_SYNPROXY
145 tristate "SYNPROXY target support"
146 depends on NF_CONNTRACK && NETFILTER_ADVANCED
147 select NETFILTER_SYNPROXY
148 select SYN_COOKIES
149 help
150 The SYNPROXY target allows you to intercept TCP connections and
151 establish them using syncookies before they are passed on to the
152 server. This allows to avoid conntrack and server resource usage
153 during SYN-flood attacks.
154
155 To compile it as a module, choose M here. If unsure, say N.
156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157config IP_NF_TARGET_ULOG
Pablo Neira Ayusode94c452013-05-22 22:42:37 +0000158 tristate "ULOG target support (obsolete)"
Patrick McHardy33b8e772007-12-17 22:47:05 -0800159 default m if NETFILTER_ADVANCED=n
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 ---help---
Harald Weltef40863c2005-10-10 20:51:53 -0700161
162 This option enables the old IPv4-only "ipt_ULOG" implementation
163 which has been obsoleted by the new "nfnetlink_log" code (see
164 CONFIG_NETFILTER_NETLINK_LOG).
165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 This option adds a `ULOG' target, which allows you to create rules in
167 any iptables table. The packet is passed to a userspace logging
168 daemon using netlink multicast sockets; unlike the LOG target
169 which can only be viewed through syslog.
170
Matt LaPlante44c09202006-10-03 22:34:14 +0200171 The appropriate userspace logging daemon (ulogd) may be obtained from
Justin P. Mattock631dd1a2010-10-18 11:03:14 +0200172 <http://www.netfilter.org/projects/ulogd/index.html>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
174 To compile it as a module, choose M here. If unsure, say N.
175
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800176# NAT + specific targets: nf_conntrack
Patrick McHardyc7232c92012-08-26 19:14:06 +0200177config NF_NAT_IPV4
178 tristate "IPv4 NAT"
Jan Engelhardtc2df73d2008-10-08 11:35:18 +0200179 depends on NF_CONNTRACK_IPV4
Patrick McHardy33b8e772007-12-17 22:47:05 -0800180 default m if NETFILTER_ADVANCED=n
Patrick McHardyc7232c92012-08-26 19:14:06 +0200181 select NF_NAT
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800182 help
Patrick McHardyc7232c92012-08-26 19:14:06 +0200183 The IPv4 NAT option allows masquerading, port forwarding and other
Jozsef Kadlecsik5b1158e2006-12-02 22:07:13 -0800184 forms of full Network Address Port Translation. It is controlled by
185 the `nat' table in iptables: see the man page for iptables(8).
186
187 To compile it as a module, choose M here. If unsure, say N.
188
Patrick McHardyc7232c92012-08-26 19:14:06 +0200189if NF_NAT_IPV4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
191config IP_NF_TARGET_MASQUERADE
192 tristate "MASQUERADE target support"
Patrick McHardy33b8e772007-12-17 22:47:05 -0800193 default m if NETFILTER_ADVANCED=n
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 help
195 Masquerading is a special case of NAT: all outgoing connections are
196 changed to seem to come from a particular interface's address, and
197 if the interface goes down, those connections are lost. This is
198 only useful for dialup accounts with dynamic IP address (ie. your IP
199 address will be different on next dialup).
200
201 To compile it as a module, choose M here. If unsure, say N.
202
Jan Engelhardtaba0d342008-10-08 11:35:17 +0200203config IP_NF_TARGET_NETMAP
204 tristate "NETMAP target support"
Jan Engelhardtaba0d342008-10-08 11:35:17 +0200205 depends on NETFILTER_ADVANCED
Jan Engelhardtb3d54b32012-09-21 11:37:59 +0200206 select NETFILTER_XT_TARGET_NETMAP
207 ---help---
208 This is a backwards-compat option for the user's convenience
209 (e.g. when running oldconfig). It selects
210 CONFIG_NETFILTER_XT_TARGET_NETMAP.
Jan Engelhardtaba0d342008-10-08 11:35:17 +0200211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212config IP_NF_TARGET_REDIRECT
213 tristate "REDIRECT target support"
Patrick McHardy33b8e772007-12-17 22:47:05 -0800214 depends on NETFILTER_ADVANCED
Jan Engelhardt2cbc78a2012-09-21 11:41:34 +0200215 select NETFILTER_XT_TARGET_REDIRECT
216 ---help---
217 This is a backwards-compat option for the user's convenience
218 (e.g. when running oldconfig). It selects
219 CONFIG_NETFILTER_XT_TARGET_REDIRECT.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Patrick McHardyc7232c92012-08-26 19:14:06 +0200221endif
222
Patrick McHardy807467c2006-12-02 22:10:34 -0800223config NF_NAT_SNMP_BASIC
Patrick McHardy8ce22fc2008-01-14 23:31:36 -0800224 tristate "Basic SNMP-ALG support"
Patrick McHardyc7232c92012-08-26 19:14:06 +0200225 depends on NF_CONNTRACK_SNMP && NF_NAT_IPV4
Patrick McHardy33b8e772007-12-17 22:47:05 -0800226 depends on NETFILTER_ADVANCED
Jiri Olsa93557f52011-01-18 18:12:24 +0100227 default NF_NAT && NF_CONNTRACK_SNMP
Patrick McHardy807467c2006-12-02 22:10:34 -0800228 ---help---
229
230 This module implements an Application Layer Gateway (ALG) for
231 SNMP payloads. In conjunction with NAT, it allows a network
232 management system to access multiple private networks with
233 conflicting addresses. It works by modifying IP addresses
234 inside SNMP payloads to match IP-layer NAT mapping.
235
236 This is the "basic" form of SNMP-ALG, as described in RFC 2962
237
238 To compile it as a module, choose M here. If unsure, say N.
239
Jozsef Kadlecsik55a73322006-12-02 22:07:44 -0800240# If they want FTP, set to $CONFIG_IP_NF_NAT (m or y),
241# or $CONFIG_IP_NF_FTP (m or y), whichever is weaker.
242# From kconfig-language.txt:
243#
244# <expr> '&&' <expr> (6)
245#
246# (6) Returns the result of min(/expr/, /expr/).
Patrick McHardy4910a082008-03-20 15:15:57 +0100247
Patrick McHardyf09943f2006-12-02 22:09:41 -0800248config NF_NAT_PROTO_GRE
249 tristate
Patrick McHardyc7232c92012-08-26 19:14:06 +0200250 depends on NF_NAT_IPV4 && NF_CT_PROTO_GRE
Patrick McHardy9d908a62008-04-14 11:15:50 +0200251
Patrick McHardyf09943f2006-12-02 22:09:41 -0800252config NF_NAT_PPTP
253 tristate
Patrick McHardyc7232c92012-08-26 19:14:06 +0200254 depends on NF_CONNTRACK && NF_NAT_IPV4
255 default NF_NAT_IPV4 && NF_CONNTRACK_PPTP
Patrick McHardyf09943f2006-12-02 22:09:41 -0800256 select NF_NAT_PROTO_GRE
257
Patrick McHardyf587de02006-12-02 22:08:46 -0800258config NF_NAT_H323
259 tristate
Patrick McHardyc7232c92012-08-26 19:14:06 +0200260 depends on NF_CONNTRACK && NF_NAT_IPV4
261 default NF_NAT_IPV4 && NF_CONNTRACK_H323
Patrick McHardyf587de02006-12-02 22:08:46 -0800262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263# mangle + specific targets
264config IP_NF_MANGLE
265 tristate "Packet mangling"
Patrick McHardy33b8e772007-12-17 22:47:05 -0800266 default m if NETFILTER_ADVANCED=n
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 help
268 This option adds a `mangle' table to iptables: see the man page for
269 iptables(8). This table is used for various packet alterations
270 which can effect how the packet is routed.
271
272 To compile it as a module, choose M here. If unsure, say N.
273
Jan Engelhardtaba0d342008-10-08 11:35:17 +0200274config IP_NF_TARGET_CLUSTERIP
Kees Cookaec9a0e2012-10-02 11:19:48 -0700275 tristate "CLUSTERIP target support"
276 depends on IP_NF_MANGLE
Jan Engelhardtaba0d342008-10-08 11:35:17 +0200277 depends on NF_CONNTRACK_IPV4
278 depends on NETFILTER_ADVANCED
279 select NF_CONNTRACK_MARK
280 help
281 The CLUSTERIP target allows you to build load-balancing clusters of
282 network servers without having a dedicated load-balancing
283 router/server/switch.
284
285 To compile it as a module, choose M here. If unsure, say N.
286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287config IP_NF_TARGET_ECN
288 tristate "ECN target support"
289 depends on IP_NF_MANGLE
Patrick McHardy33b8e772007-12-17 22:47:05 -0800290 depends on NETFILTER_ADVANCED
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 ---help---
292 This option adds a `ECN' target, which can be used in the iptables mangle
293 table.
294
295 You can use this target to remove the ECN bits from the IPv4 header of
296 an IP packet. This is particularly useful, if you need to work around
297 existing ECN blackholes on the internet, but don't want to disable
298 ECN support in general.
299
300 To compile it as a module, choose M here. If unsure, say N.
301
Jan Engelhardt43233622009-02-19 11:16:03 +0100302config IP_NF_TARGET_TTL
303 tristate '"TTL" target support'
Randy Dunlap76b67172010-10-18 11:13:30 +0200304 depends on NETFILTER_ADVANCED && IP_NF_MANGLE
Jan Engelhardt43233622009-02-19 11:16:03 +0100305 select NETFILTER_XT_TARGET_HL
306 ---help---
Randy Dunlap76b67172010-10-18 11:13:30 +0200307 This is a backwards-compatible option for the user's convenience
Jan Engelhardt43233622009-02-19 11:16:03 +0100308 (e.g. when running oldconfig). It selects
Stephen Hemminger67c0d572009-03-16 15:17:23 +0100309 CONFIG_NETFILTER_XT_TARGET_HL.
Jan Engelhardt43233622009-02-19 11:16:03 +0100310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311# raw + specific targets
312config IP_NF_RAW
313 tristate 'raw table support (required for NOTRACK/TRACE)'
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 help
315 This option adds a `raw' table to iptables. This table is the very
316 first in the netfilter framework and hooks in at the PREROUTING
317 and OUTPUT chains.
318
319 If you want to compile it as a module, say M here and read
Dirk Hohndele4031492007-10-30 13:37:19 -0700320 <file:Documentation/kbuild/modules.txt>. If unsure, say `N'.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
James Morris560ee652008-06-09 15:57:24 -0700322# security table for MAC policy
323config IP_NF_SECURITY
324 tristate "Security table"
James Morris560ee652008-06-09 15:57:24 -0700325 depends on SECURITY
Patrick McHardy70eed752008-07-23 16:42:42 -0700326 depends on NETFILTER_ADVANCED
James Morris560ee652008-06-09 15:57:24 -0700327 help
328 This option adds a `security' table to iptables, for use
329 with Mandatory Access Control (MAC) policy.
330
331 If unsure, say N.
332
Jan Engelhardtc2df73d2008-10-08 11:35:18 +0200333endif # IP_NF_IPTABLES
334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335# ARP tables
336config IP_NF_ARPTABLES
337 tristate "ARP tables support"
Patrick McHardya3c941b2007-02-12 11:15:02 -0800338 select NETFILTER_XTABLES
Patrick McHardy33b8e772007-12-17 22:47:05 -0800339 depends on NETFILTER_ADVANCED
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 help
341 arptables is a general, extensible packet identification framework.
342 The ARP packet filtering and mangling (manipulation)subsystems
343 use this: say Y or M here if you want to use either of those.
344
345 To compile it as a module, choose M here. If unsure, say N.
346
Jan Engelhardtc2df73d2008-10-08 11:35:18 +0200347if IP_NF_ARPTABLES
348
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349config IP_NF_ARPFILTER
350 tristate "ARP packet filtering"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 help
352 ARP packet filtering defines a table `filter', which has a series of
353 rules for simple ARP packet filtering at local input and
354 local output. On a bridge, you can also specify filtering rules
355 for forwarded ARP packets. See the man page for arptables(8).
356
357 To compile it as a module, choose M here. If unsure, say N.
358
359config IP_NF_ARP_MANGLE
360 tristate "ARP payload mangling"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 help
362 Allows altering the ARP packet payload: source and destination
363 hardware and network addresses.
364
Jan Engelhardtc2df73d2008-10-08 11:35:18 +0200365endif # IP_NF_ARPTABLES
366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367endmenu
368