blob: 1b79353a5d2933e6695b7de26d0fa93bec52b45f [file] [log] [blame]
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08001menu "Core Netfilter Configuration"
Patrick McHardy3a411352006-12-12 00:27:46 -08002 depends on NET && INET && NETFILTER
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -08003
Harald Weltef9e815b2005-08-09 19:30:24 -07004config NETFILTER_NETLINK
Patrick McHardy2eeeba32007-12-05 01:31:52 -08005 tristate
Harald Welte7af4cc32005-08-09 19:44:15 -07006
7config NETFILTER_NETLINK_QUEUE
8 tristate "Netfilter NFQUEUE over NFNETLINK interface"
Patrick McHardy33b8e772007-12-17 22:47:05 -08009 depends on NETFILTER_ADVANCED
Patrick McHardy2eeeba32007-12-05 01:31:52 -080010 select NETFILTER_NETLINK
Harald Welte7af4cc32005-08-09 19:44:15 -070011 help
Thomas Vögtle50b521a2006-03-22 13:53:48 -080012 If this option is enabled, the kernel will include support
Harald Welte7af4cc32005-08-09 19:44:15 -070013 for queueing packets via NFNETLINK.
14
Harald Welte0597f262005-08-09 19:58:39 -070015config NETFILTER_NETLINK_LOG
16 tristate "Netfilter LOG over NFNETLINK interface"
Patrick McHardy33b8e772007-12-17 22:47:05 -080017 default m if NETFILTER_ADVANCED=n
Patrick McHardy2eeeba32007-12-05 01:31:52 -080018 select NETFILTER_NETLINK
Harald Welte0597f262005-08-09 19:58:39 -070019 help
20 If this option is enabled, the kernel will include support
21 for logging packets via NFNETLINK.
22
23 This obsoletes the existing ipt_ULOG and ebg_ulog mechanisms,
24 and is also scheduled to replace the old syslog-based ipt_LOG
25 and ip6t_LOG modules.
26
Patrick McHardyab4f58c2007-12-05 01:31:37 -080027config NF_CONNTRACK
Patrick McHardyb321e142006-12-02 22:05:46 -080028 tristate "Netfilter connection tracking support"
Patrick McHardy33b8e772007-12-17 22:47:05 -080029 default m if NETFILTER_ADVANCED=n
Patrick McHardyb321e142006-12-02 22:05:46 -080030 help
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080031 Connection tracking keeps a record of what packets have passed
32 through your machine, in order to figure out how they are related
33 into connections.
34
Patrick McHardyb321e142006-12-02 22:05:46 -080035 This is required to do Masquerading or other kinds of Network
Russ Dillb11c16b2008-07-08 02:35:27 -070036 Address Translation. It can also be used to enhance packet
37 filtering (see `Connection state match support' below).
Patrick McHardyb321e142006-12-02 22:05:46 -080038
39 To compile it as a module, choose M here. If unsure, say N.
40
Jan Engelhardtc2df73d2008-10-08 11:35:18 +020041if NF_CONNTRACK
42
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080043config NF_CONNTRACK_MARK
44 bool 'Connection mark tracking support'
Patrick McHardy33b8e772007-12-17 22:47:05 -080045 depends on NETFILTER_ADVANCED
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080046 help
47 This option enables support for connection marks, used by the
48 `CONNMARK' target and `connmark' match. Similar to the mark value
49 of packets, but this mark value is kept in the conntrack session
50 instead of the individual packets.
51
James Morris7c9728c2006-06-09 00:31:46 -070052config NF_CONNTRACK_SECMARK
53 bool 'Connection tracking security mark support'
Jan Engelhardtc2df73d2008-10-08 11:35:18 +020054 depends on NETWORK_SECMARK
Patrick McHardy33b8e772007-12-17 22:47:05 -080055 default m if NETFILTER_ADVANCED=n
James Morris7c9728c2006-06-09 00:31:46 -070056 help
57 This option enables security markings to be applied to
58 connections. Typically they are copied to connections from
59 packets using the CONNSECMARK target and copied back from
60 connections to packets with the same target, with the packets
61 being originally labeled via SECMARK.
62
63 If unsure, say 'N'.
64
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +010065config NF_CONNTRACK_ZONES
66 bool 'Connection tracking zones'
67 depends on NETFILTER_ADVANCED
68 depends on NETFILTER_XT_TARGET_CT
69 help
70 This option enables support for connection tracking zones.
71 Normally, each connection needs to have a unique system wide
72 identity. Connection tracking zones allow to have multiple
73 connections using the same identity, as long as they are
74 contained in different zones.
75
76 If unsure, say `N'.
77
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080078config NF_CONNTRACK_EVENTS
Patrick McHardy8ce22fc2008-01-14 23:31:36 -080079 bool "Connection tracking events"
Patrick McHardy33b8e772007-12-17 22:47:05 -080080 depends on NETFILTER_ADVANCED
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080081 help
82 If this option is enabled, the connection tracking code will
83 provide a notifier chain that can be used by other kernel code
Thomas Vögtle50b521a2006-03-22 13:53:48 -080084 to get notified about changes in the connection tracking state.
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080085
86 If unsure, say `N'.
87
Patrick McHardy2bc78042008-03-20 15:15:55 +010088config NF_CT_PROTO_DCCP
89 tristate 'DCCP protocol connection tracking support (EXPERIMENTAL)'
Jan Engelhardtc2df73d2008-10-08 11:35:18 +020090 depends on EXPERIMENTAL
Patrick McHardy2bc78042008-03-20 15:15:55 +010091 depends on NETFILTER_ADVANCED
Patrick McHardyf3261af2008-05-08 01:16:04 -070092 default IP_DCCP
Patrick McHardy2bc78042008-03-20 15:15:55 +010093 help
94 With this option enabled, the layer 3 independent connection
95 tracking code will be able to do state tracking on DCCP connections.
96
97 If unsure, say 'N'.
98
Patrick McHardyf09943f2006-12-02 22:09:41 -080099config NF_CT_PROTO_GRE
100 tristate
Patrick McHardyf09943f2006-12-02 22:09:41 -0800101
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800102config NF_CT_PROTO_SCTP
Patrick McHardya3c47972006-12-02 22:11:01 -0800103 tristate 'SCTP protocol connection tracking support (EXPERIMENTAL)'
Jan Engelhardtc2df73d2008-10-08 11:35:18 +0200104 depends on EXPERIMENTAL
Patrick McHardy33b8e772007-12-17 22:47:05 -0800105 depends on NETFILTER_ADVANCED
Patrick McHardyf3261af2008-05-08 01:16:04 -0700106 default IP_SCTP
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800107 help
108 With this option enabled, the layer 3 independent connection
109 tracking code will be able to do state tracking on SCTP connections.
110
111 If you want to compile it as a module, say M here and read
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +0500112 <file:Documentation/kbuild/modules.txt>. If unsure, say `N'.
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800113
Patrick McHardy59eecdf2007-07-14 20:48:44 -0700114config NF_CT_PROTO_UDPLITE
Patrick McHardy8ce22fc2008-01-14 23:31:36 -0800115 tristate 'UDP-Lite protocol connection tracking support'
Patrick McHardy33b8e772007-12-17 22:47:05 -0800116 depends on NETFILTER_ADVANCED
Patrick McHardy59eecdf2007-07-14 20:48:44 -0700117 help
118 With this option enabled, the layer 3 independent connection
119 tracking code will be able to do state tracking on UDP-Lite
120 connections.
121
122 To compile it as a module, choose M here. If unsure, say N.
123
Patrick McHardy16958902006-12-02 22:08:26 -0800124config NF_CONNTRACK_AMANDA
Patrick McHardyc9386cf2007-01-04 12:16:06 -0800125 tristate "Amanda backup protocol support"
Patrick McHardy33b8e772007-12-17 22:47:05 -0800126 depends on NETFILTER_ADVANCED
Patrick McHardy16958902006-12-02 22:08:26 -0800127 select TEXTSEARCH
128 select TEXTSEARCH_KMP
129 help
130 If you are running the Amanda backup package <http://www.amanda.org/>
131 on this machine or machines that will be MASQUERADED through this
132 machine, then you may want to enable this feature. This allows the
133 connection tracking and natting code to allow the sub-channels that
134 Amanda requires for communication of the backup data, messages and
135 index.
136
137 To compile it as a module, choose M here. If unsure, say N.
138
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800139config NF_CONNTRACK_FTP
Patrick McHardyc9386cf2007-01-04 12:16:06 -0800140 tristate "FTP protocol support"
Patrick McHardy33b8e772007-12-17 22:47:05 -0800141 default m if NETFILTER_ADVANCED=n
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800142 help
143 Tracking FTP connections is problematic: special helpers are
144 required for tracking them, and doing masquerading and other forms
145 of Network Address Translation on them.
146
147 This is FTP support on Layer 3 independent connection tracking.
148 Layer 3 independent connection tracking is experimental scheme
149 which generalize ip_conntrack to support other layer 3 protocols.
150
151 To compile it as a module, choose M here. If unsure, say N.
152
Patrick McHardyf587de02006-12-02 22:08:46 -0800153config NF_CONNTRACK_H323
Patrick McHardy8ce22fc2008-01-14 23:31:36 -0800154 tristate "H.323 protocol support"
Jan Engelhardtc2df73d2008-10-08 11:35:18 +0200155 depends on (IPV6 || IPV6=n)
Patrick McHardy33b8e772007-12-17 22:47:05 -0800156 depends on NETFILTER_ADVANCED
Patrick McHardyf587de02006-12-02 22:08:46 -0800157 help
158 H.323 is a VoIP signalling protocol from ITU-T. As one of the most
159 important VoIP protocols, it is widely used by voice hardware and
160 software including voice gateways, IP phones, Netmeeting, OpenPhone,
161 Gnomemeeting, etc.
162
163 With this module you can support H.323 on a connection tracking/NAT
164 firewall.
165
166 This module supports RAS, Fast Start, H.245 Tunnelling, Call
167 Forwarding, RTP/RTCP and T.120 based audio, video, fax, chat,
168 whiteboard, file transfer, etc. For more information, please
169 visit http://nath323.sourceforge.net/.
170
171 To compile it as a module, choose M here. If unsure, say N.
172
Patrick McHardy869f37d2006-12-02 22:09:06 -0800173config NF_CONNTRACK_IRC
Patrick McHardyc9386cf2007-01-04 12:16:06 -0800174 tristate "IRC protocol support"
Patrick McHardy33b8e772007-12-17 22:47:05 -0800175 default m if NETFILTER_ADVANCED=n
Patrick McHardy869f37d2006-12-02 22:09:06 -0800176 help
177 There is a commonly-used extension to IRC called
178 Direct Client-to-Client Protocol (DCC). This enables users to send
179 files to each other, and also chat to each other without the need
180 of a server. DCC Sending is used anywhere you send files over IRC,
181 and DCC Chat is most commonly used by Eggdrop bots. If you are
182 using NAT, this extension will enable you to send files and initiate
183 chats. Note that you do NOT need this extension to get files or
184 have others initiate chats, or everything else in IRC.
185
186 To compile it as a module, choose M here. If unsure, say N.
187
Patrick McHardy92703ee2006-12-02 22:09:24 -0800188config NF_CONNTRACK_NETBIOS_NS
Patrick McHardy8ce22fc2008-01-14 23:31:36 -0800189 tristate "NetBIOS name service protocol support"
Patrick McHardy33b8e772007-12-17 22:47:05 -0800190 depends on NETFILTER_ADVANCED
Patrick McHardy92703ee2006-12-02 22:09:24 -0800191 help
192 NetBIOS name service requests are sent as broadcast messages from an
193 unprivileged port and responded to with unicast messages to the
194 same port. This make them hard to firewall properly because connection
195 tracking doesn't deal with broadcasts. This helper tracks locally
196 originating NetBIOS name service requests and the corresponding
197 responses. It relies on correct IP address configuration, specifically
198 netmask and broadcast address. When properly configured, the output
199 of "ip address show" should look similar to this:
200
201 $ ip -4 address show eth0
202 4: eth0: <BROADCAST,MULTICAST,UP> mtu 1500 qdisc pfifo_fast qlen 1000
203 inet 172.16.2.252/24 brd 172.16.2.255 scope global eth0
204
205 To compile it as a module, choose M here. If unsure, say N.
206
Patrick McHardyf09943f2006-12-02 22:09:41 -0800207config NF_CONNTRACK_PPTP
Patrick McHardyc9386cf2007-01-04 12:16:06 -0800208 tristate "PPtP protocol support"
Patrick McHardy33b8e772007-12-17 22:47:05 -0800209 depends on NETFILTER_ADVANCED
Patrick McHardyf09943f2006-12-02 22:09:41 -0800210 select NF_CT_PROTO_GRE
211 help
212 This module adds support for PPTP (Point to Point Tunnelling
213 Protocol, RFC2637) connection tracking and NAT.
214
215 If you are running PPTP sessions over a stateful firewall or NAT
216 box, you may want to enable this feature.
217
218 Please note that not all PPTP modes of operation are supported yet.
219 Specifically these limitations exist:
David Sterba3dde6ad2007-05-09 07:12:20 +0200220 - Blindly assumes that control connections are always established
Patrick McHardyf09943f2006-12-02 22:09:41 -0800221 in PNS->PAC direction. This is a violation of RFC2637.
222 - Only supports a single call within each session
223
224 To compile it as a module, choose M here. If unsure, say N.
225
Michal Schmidt6fecd192007-02-07 15:05:12 -0800226config NF_CONNTRACK_SANE
227 tristate "SANE protocol support (EXPERIMENTAL)"
Jan Engelhardtc2df73d2008-10-08 11:35:18 +0200228 depends on EXPERIMENTAL
Patrick McHardy33b8e772007-12-17 22:47:05 -0800229 depends on NETFILTER_ADVANCED
Michal Schmidt6fecd192007-02-07 15:05:12 -0800230 help
231 SANE is a protocol for remote access to scanners as implemented
232 by the 'saned' daemon. Like FTP, it uses separate control and
233 data connections.
234
235 With this module you can support SANE on a connection tracking
236 firewall.
237
238 To compile it as a module, choose M here. If unsure, say N.
239
Patrick McHardy9fafcd72006-12-02 22:09:57 -0800240config NF_CONNTRACK_SIP
Patrick McHardy8ce22fc2008-01-14 23:31:36 -0800241 tristate "SIP protocol support"
Patrick McHardy33b8e772007-12-17 22:47:05 -0800242 default m if NETFILTER_ADVANCED=n
Patrick McHardy9fafcd72006-12-02 22:09:57 -0800243 help
244 SIP is an application-layer control protocol that can establish,
245 modify, and terminate multimedia sessions (conferences) such as
246 Internet telephony calls. With the ip_conntrack_sip and
247 the nf_nat_sip modules you can support the protocol on a connection
248 tracking/NATing firewall.
249
250 To compile it as a module, choose M here. If unsure, say N.
251
Patrick McHardya536df32006-12-02 22:10:18 -0800252config NF_CONNTRACK_TFTP
Patrick McHardyc9386cf2007-01-04 12:16:06 -0800253 tristate "TFTP protocol support"
Patrick McHardy33b8e772007-12-17 22:47:05 -0800254 depends on NETFILTER_ADVANCED
Patrick McHardya536df32006-12-02 22:10:18 -0800255 help
256 TFTP connection tracking helper, this is required depending
257 on how restrictive your ruleset is.
258 If you are using a tftp client behind -j SNAT or -j MASQUERADING
259 you will need this.
260
261 To compile it as a module, choose M here. If unsure, say N.
262
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800263config NF_CT_NETLINK
Patrick McHardy8ce22fc2008-01-14 23:31:36 -0800264 tristate 'Connection tracking netlink interface'
Patrick McHardy2eeeba32007-12-05 01:31:52 -0800265 select NETFILTER_NETLINK
Patrick McHardy33b8e772007-12-17 22:47:05 -0800266 default m if NETFILTER_ADVANCED=n
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800267 help
268 This option enables support for a netlink-based userspace interface
269
Laszlo Attila Toth4b070662009-04-24 16:55:25 +0200270endif # NF_CONNTRACK
271
KOVACS Krisztian9ad2d742008-10-08 11:35:12 +0200272# transparent proxy support
273config NETFILTER_TPROXY
274 tristate "Transparent proxying support (EXPERIMENTAL)"
275 depends on EXPERIMENTAL
276 depends on IP_NF_MANGLE
277 depends on NETFILTER_ADVANCED
278 help
279 This option enables transparent proxying support, that is,
280 support for handling non-locally bound IPv4 TCP and UDP sockets.
281 For it to work you will have to configure certain iptables rules
282 and use policy routing. For more information on how to set it up
283 see Documentation/networking/tproxy.txt.
284
285 To compile it as a module, choose M here. If unsure, say N.
286
Harald Welte2e4e6a12006-01-12 13:30:04 -0800287config NETFILTER_XTABLES
288 tristate "Netfilter Xtables support (required for ip_tables)"
Patrick McHardy33b8e772007-12-17 22:47:05 -0800289 default m if NETFILTER_ADVANCED=n
Harald Welte2e4e6a12006-01-12 13:30:04 -0800290 help
291 This is required if you intend to use any of ip_tables,
292 ip6_tables or arp_tables.
293
Jan Engelhardtc2df73d2008-10-08 11:35:18 +0200294if NETFILTER_XTABLES
295
Jan Engelhardt28b94982009-02-28 03:23:57 +0100296comment "Xtables combined modules"
297
298config NETFILTER_XT_MARK
299 tristate 'nfmark target and match support'
300 default m if NETFILTER_ADVANCED=n
301 ---help---
302 This option adds the "MARK" target and "mark" match.
303
304 Netfilter mark matching allows you to match packets based on the
305 "nfmark" value in the packet.
306 The target allows you to create rules in the "mangle" table which alter
307 the netfilter mark (nfmark) field associated with the packet.
308
309 Prior to routing, the nfmark can influence the routing method (see
310 "Use netfilter MARK value as routing key") and can also be used by
311 other subsystems to change their behavior.
312
Jan Engelhardtb8f00ba2010-02-26 14:20:32 +0100313config NETFILTER_XT_CONNMARK
314 tristate 'ctmark target and match support'
315 depends on NF_CONNTRACK
316 depends on NETFILTER_ADVANCED
317 select NF_CONNTRACK_MARK
318 ---help---
319 This option adds the "CONNMARK" target and "connmark" match.
320
321 Netfilter allows you to store a mark value per connection (a.k.a.
322 ctmark), similarly to the packet mark (nfmark). Using this
323 target and match, you can set and match on this mark.
324
Harald Welte2e4e6a12006-01-12 13:30:04 -0800325# alphabetically ordered list of targets
326
Jan Engelhardt44c58732010-02-26 14:14:22 +0100327comment "Xtables targets"
328
Michael S. Tsirkinedf0e1f2010-07-15 17:20:46 +0200329config NETFILTER_XT_TARGET_CHECKSUM
330 tristate "CHECKSUM target support"
331 depends on IP_NF_MANGLE || IP6_NF_MANGLE
332 depends on NETFILTER_ADVANCED
333 ---help---
334 This option adds a `CHECKSUM' target, which can be used in the iptables mangle
335 table.
336
337 You can use this target to compute and fill in the checksum in
338 a packet that lacks a checksum. This is particularly useful,
339 if you need to work around old applications such as dhcp clients,
340 that do not work well with checksum offloads, but don't want to disable
341 checksum offload in your device.
342
343 To compile it as a module, choose M here. If unsure, say N.
344
Harald Welte2e4e6a12006-01-12 13:30:04 -0800345config NETFILTER_XT_TARGET_CLASSIFY
346 tristate '"CLASSIFY" target support'
Patrick McHardy33b8e772007-12-17 22:47:05 -0800347 depends on NETFILTER_ADVANCED
Harald Welte2e4e6a12006-01-12 13:30:04 -0800348 help
349 This option adds a `CLASSIFY' target, which enables the user to set
350 the priority of a packet. Some qdiscs can use this value for
351 classification, among these are:
352
353 atm, cbq, dsmark, pfifo_fast, htb, prio
354
355 To compile it as a module, choose M here. If unsure, say N.
356
357config NETFILTER_XT_TARGET_CONNMARK
358 tristate '"CONNMARK" target support'
Patrick McHardy587aa642007-03-14 16:37:25 -0700359 depends on NF_CONNTRACK
Patrick McHardy33b8e772007-12-17 22:47:05 -0800360 depends on NETFILTER_ADVANCED
Jan Engelhardtb8f00ba2010-02-26 14:20:32 +0100361 select NETFILTER_XT_CONNMARK
362 ---help---
363 This is a backwards-compat option for the user's convenience
364 (e.g. when running oldconfig). It selects
365 CONFIG_NETFILTER_XT_CONNMARK (combined connmark/CONNMARK module).
Harald Welte2e4e6a12006-01-12 13:30:04 -0800366
Jan Engelhardtaba0d342008-10-08 11:35:17 +0200367config NETFILTER_XT_TARGET_CONNSECMARK
368 tristate '"CONNSECMARK" target support'
Jan Engelhardtc2df73d2008-10-08 11:35:18 +0200369 depends on NF_CONNTRACK && NF_CONNTRACK_SECMARK
Jan Engelhardtaba0d342008-10-08 11:35:17 +0200370 default m if NETFILTER_ADVANCED=n
371 help
372 The CONNSECMARK target copies security markings from packets
373 to connections, and restores security markings from connections
374 to packets (if the packets are not already marked). This would
375 normally be used in conjunction with the SECMARK target.
376
377 To compile it as a module, choose M here. If unsure, say N.
378
Patrick McHardy84f3bb92010-02-03 17:17:06 +0100379config NETFILTER_XT_TARGET_CT
380 tristate '"CT" target support'
381 depends on NF_CONNTRACK
382 depends on IP_NF_RAW || IP6_NF_RAW
383 depends on NETFILTER_ADVANCED
384 help
385 This options adds a `CT' target, which allows to specify initial
386 connection tracking parameters like events to be delivered and
387 the helper to be used.
388
389 To compile it as a module, choose M here. If unsure, say N.
390
Yasuyuki Kozakaia4687012006-08-22 00:30:26 -0700391config NETFILTER_XT_TARGET_DSCP
Jan Engelhardtc9fd4962007-12-04 23:38:13 -0800392 tristate '"DSCP" and "TOS" target support'
Yasuyuki Kozakaia4687012006-08-22 00:30:26 -0700393 depends on IP_NF_MANGLE || IP6_NF_MANGLE
Patrick McHardy33b8e772007-12-17 22:47:05 -0800394 depends on NETFILTER_ADVANCED
Yasuyuki Kozakaia4687012006-08-22 00:30:26 -0700395 help
396 This option adds a `DSCP' target, which allows you to manipulate
397 the IPv4/IPv6 header DSCP field (differentiated services codepoint).
398
399 The DSCP field can have any value between 0x0 and 0x3f inclusive.
400
Jan Engelhardtc9fd4962007-12-04 23:38:13 -0800401 It also adds the "TOS" target, which allows you to create rules in
402 the "mangle" table which alter the Type Of Service field of an IPv4
Jan Engelhardt5c350e52007-12-04 23:39:09 -0800403 or the Priority field of an IPv6 packet, prior to routing.
Jan Engelhardtc9fd4962007-12-04 23:38:13 -0800404
Yasuyuki Kozakaia4687012006-08-22 00:30:26 -0700405 To compile it as a module, choose M here. If unsure, say N.
406
Jan Engelhardt563d36e2009-02-18 18:38:40 +0100407config NETFILTER_XT_TARGET_HL
408 tristate '"HL" hoplimit target support'
409 depends on IP_NF_MANGLE || IP6_NF_MANGLE
410 depends on NETFILTER_ADVANCED
411 ---help---
412 This option adds the "HL" (for IPv6) and "TTL" (for IPv4)
413 targets, which enable the user to change the
414 hoplimit/time-to-live value of the IP header.
415
416 While it is safe to decrement the hoplimit/TTL value, the
417 modules also allow to increment and set the hoplimit value of
418 the header to arbitrary values. This is EXTREMELY DANGEROUS
419 since you can easily create immortal packets that loop
420 forever on the network.
421
Luciano Coelho0902b462010-06-15 15:04:00 +0200422config NETFILTER_XT_TARGET_IDLETIMER
423 tristate "IDLETIMER target support"
424 depends on NETFILTER_ADVANCED
425 help
426
427 This option adds the `IDLETIMER' target. Each matching packet
428 resets the timer associated with label specified when the rule is
429 added. When the timer expires, it triggers a sysfs notification.
430 The remaining time for expiration can be read via sysfs.
431
432 To compile it as a module, choose M here. If unsure, say N.
433
Adam Nielsen268cb382009-02-20 10:55:14 +0100434config NETFILTER_XT_TARGET_LED
435 tristate '"LED" target support'
Alex Riesen3ae16f12009-04-06 17:09:43 +0200436 depends on LEDS_CLASS && LEDS_TRIGGERS
Adam Nielsen268cb382009-02-20 10:55:14 +0100437 depends on NETFILTER_ADVANCED
438 help
439 This option adds a `LED' target, which allows you to blink LEDs in
440 response to particular packets passing through your machine.
441
442 This can be used to turn a spare LED into a network activity LED,
443 which only flashes in response to FTP transfers, for example. Or
444 you could have an LED which lights up for a minute or two every time
445 somebody connects to your machine via SSH.
446
447 You will need support for the "led" class to make this work.
448
449 To create an LED trigger for incoming SSH traffic:
450 iptables -A INPUT -p tcp --dport 22 -j LED --led-trigger-id ssh --led-delay 1000
451
452 Then attach the new trigger to an LED on your system:
453 echo netfilter-ssh > /sys/class/leds/<ledname>/trigger
454
455 For more information on the LEDs available on your system, see
456 Documentation/leds-class.txt
457
Harald Welte2e4e6a12006-01-12 13:30:04 -0800458config NETFILTER_XT_TARGET_MARK
459 tristate '"MARK" target support'
Jan Engelhardt28b94982009-02-28 03:23:57 +0100460 depends on NETFILTER_ADVANCED
461 select NETFILTER_XT_MARK
462 ---help---
463 This is a backwards-compat option for the user's convenience
464 (e.g. when running oldconfig). It selects
465 CONFIG_NETFILTER_XT_MARK (combined mark/MARK module).
Harald Welte2e4e6a12006-01-12 13:30:04 -0800466
Patrick McHardybaf7b1e2006-11-29 02:35:38 +0100467config NETFILTER_XT_TARGET_NFLOG
468 tristate '"NFLOG" target support'
Patrick McHardy33b8e772007-12-17 22:47:05 -0800469 default m if NETFILTER_ADVANCED=n
Eric Leblond293a4f22008-12-10 17:24:33 -0800470 select NETFILTER_NETLINK_LOG
Patrick McHardybaf7b1e2006-11-29 02:35:38 +0100471 help
472 This option enables the NFLOG target, which allows to LOG
Eric Leblond293a4f22008-12-10 17:24:33 -0800473 messages through nfnetlink_log.
Patrick McHardybaf7b1e2006-11-29 02:35:38 +0100474
475 To compile it as a module, choose M here. If unsure, say N.
476
Jan Engelhardtaba0d342008-10-08 11:35:17 +0200477config NETFILTER_XT_TARGET_NFQUEUE
478 tristate '"NFQUEUE" target Support'
Jan Engelhardtaba0d342008-10-08 11:35:17 +0200479 depends on NETFILTER_ADVANCED
480 help
481 This target replaced the old obsolete QUEUE target.
482
483 As opposed to QUEUE, it supports 65535 different queues,
484 not just one.
485
486 To compile it as a module, choose M here. If unsure, say N.
487
Harald Welte2e4e6a12006-01-12 13:30:04 -0800488config NETFILTER_XT_TARGET_NOTRACK
489 tristate '"NOTRACK" target support'
Harald Welte2e4e6a12006-01-12 13:30:04 -0800490 depends on IP_NF_RAW || IP6_NF_RAW
Patrick McHardy587aa642007-03-14 16:37:25 -0700491 depends on NF_CONNTRACK
Patrick McHardy33b8e772007-12-17 22:47:05 -0800492 depends on NETFILTER_ADVANCED
Harald Welte2e4e6a12006-01-12 13:30:04 -0800493 help
494 The NOTRACK target allows a select rule to specify
495 which packets *not* to enter the conntrack/NAT
496 subsystem with all the consequences (no ICMP error tracking,
497 no protocol helpers for the selected packets).
Patrick McHardy33b8e772007-12-17 22:47:05 -0800498
Harald Welte2e4e6a12006-01-12 13:30:04 -0800499 If you want to compile it as a module, say M here and read
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +0500500 <file:Documentation/kbuild/modules.txt>. If unsure, say `N'.
Harald Welte2e4e6a12006-01-12 13:30:04 -0800501
Patrick McHardy58590342007-12-04 23:40:05 -0800502config NETFILTER_XT_TARGET_RATEEST
503 tristate '"RATEEST" target support'
Patrick McHardyb26e76b2008-01-14 23:30:56 -0800504 depends on NETFILTER_ADVANCED
Patrick McHardy58590342007-12-04 23:40:05 -0800505 help
506 This option adds a `RATEEST' target, which allows to measure
507 rates similar to TC estimators. The `rateest' match can be
508 used to match on the measured rates.
509
510 To compile it as a module, choose M here. If unsure, say N.
511
Jan Engelhardte281b192010-04-19 14:17:47 +0200512config NETFILTER_XT_TARGET_TEE
Arnd Hannemannfe6fb552010-06-22 08:22:21 +0200513 tristate '"TEE" - packet cloning to alternate destination'
Jan Engelhardte281b192010-04-19 14:17:47 +0200514 depends on NETFILTER_ADVANCED
Jan Engelhardt9b7ce2b2010-05-12 10:11:35 +0000515 depends on (IPV6 || IPV6=n)
Randy Dunlap83827f62010-05-14 13:52:30 -0700516 depends on !NF_CONNTRACK || NF_CONNTRACK
Jan Engelhardte281b192010-04-19 14:17:47 +0200517 ---help---
518 This option adds a "TEE" target with which a packet can be cloned and
519 this clone be rerouted to another nexthop.
520
KOVACS Krisztiane8439272008-10-08 11:35:12 +0200521config NETFILTER_XT_TARGET_TPROXY
522 tristate '"TPROXY" target support (EXPERIMENTAL)'
523 depends on EXPERIMENTAL
524 depends on NETFILTER_TPROXY
525 depends on NETFILTER_XTABLES
526 depends on NETFILTER_ADVANCED
527 select NF_DEFRAG_IPV4
KOVACS Krisztianf6318e52010-10-24 23:38:32 +0000528 select NF_DEFRAG_IPV6 if IP6_NF_IPTABLES
KOVACS Krisztiane8439272008-10-08 11:35:12 +0200529 help
530 This option adds a `TPROXY' target, which is somewhat similar to
531 REDIRECT. It can only be used in the mangle table and is useful
532 to redirect traffic to a transparent proxy. It does _not_ depend
533 on Netfilter connection tracking and NAT, unlike REDIRECT.
534
535 To compile it as a module, choose M here. If unsure, say N.
536
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700537config NETFILTER_XT_TARGET_TRACE
538 tristate '"TRACE" target support'
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700539 depends on IP_NF_RAW || IP6_NF_RAW
Patrick McHardy33b8e772007-12-17 22:47:05 -0800540 depends on NETFILTER_ADVANCED
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700541 help
542 The TRACE target allows you to mark packets so that the kernel
543 will log every rule which match the packets as those traverse
544 the tables, chains, rules.
545
546 If you want to compile it as a module, say M here and read
Dirk Hohndele4031492007-10-30 13:37:19 -0700547 <file:Documentation/kbuild/modules.txt>. If unsure, say `N'.
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700548
James Morris5e6874cd2006-06-09 00:30:57 -0700549config NETFILTER_XT_TARGET_SECMARK
550 tristate '"SECMARK" target support'
Jan Engelhardtc2df73d2008-10-08 11:35:18 +0200551 depends on NETWORK_SECMARK
Patrick McHardy33b8e772007-12-17 22:47:05 -0800552 default m if NETFILTER_ADVANCED=n
James Morris5e6874cd2006-06-09 00:30:57 -0700553 help
554 The SECMARK target allows security marking of network
555 packets, for use with security subsystems.
556
557 To compile it as a module, choose M here. If unsure, say N.
558
Patrick McHardycdd289a2007-02-07 15:09:46 -0800559config NETFILTER_XT_TARGET_TCPMSS
560 tristate '"TCPMSS" target support'
Jan Engelhardtc2df73d2008-10-08 11:35:18 +0200561 depends on (IPV6 || IPV6=n)
Patrick McHardy33b8e772007-12-17 22:47:05 -0800562 default m if NETFILTER_ADVANCED=n
Patrick McHardycdd289a2007-02-07 15:09:46 -0800563 ---help---
564 This option adds a `TCPMSS' target, which allows you to alter the
565 MSS value of TCP SYN packets, to control the maximum size for that
566 connection (usually limiting it to your outgoing interface's MTU
567 minus 40).
568
569 This is used to overcome criminally braindead ISPs or servers which
570 block ICMP Fragmentation Needed packets. The symptoms of this
571 problem are that everything works fine from your Linux
572 firewall/router, but machines behind it can never exchange large
573 packets:
574 1) Web browsers connect, then hang with no data received.
575 2) Small mail works fine, but large emails hang.
576 3) ssh works fine, but scp hangs after initial handshaking.
577
578 Workaround: activate this option and add a rule to your firewall
579 configuration like:
580
581 iptables -A FORWARD -p tcp --tcp-flags SYN,RST SYN \
582 -j TCPMSS --clamp-mss-to-pmtu
583
584 To compile it as a module, choose M here. If unsure, say N.
585
Sven Schnelle338e8a72007-12-04 23:21:50 -0800586config NETFILTER_XT_TARGET_TCPOPTSTRIP
587 tristate '"TCPOPTSTRIP" target support (EXPERIMENTAL)'
Jan Engelhardtc2df73d2008-10-08 11:35:18 +0200588 depends on EXPERIMENTAL
Sven Schnelle338e8a72007-12-04 23:21:50 -0800589 depends on IP_NF_MANGLE || IP6_NF_MANGLE
Patrick McHardy33b8e772007-12-17 22:47:05 -0800590 depends on NETFILTER_ADVANCED
Sven Schnelle338e8a72007-12-04 23:21:50 -0800591 help
592 This option adds a "TCPOPTSTRIP" target, which allows you to strip
593 TCP options from TCP packets.
594
Jan Engelhardt44c58732010-02-26 14:14:22 +0100595# alphabetically ordered list of matches
596
597comment "Xtables matches"
598
Pablo Neira Ayuso0269ea42009-03-16 17:10:36 +0100599config NETFILTER_XT_MATCH_CLUSTER
600 tristate '"cluster" match support'
601 depends on NF_CONNTRACK
602 depends on NETFILTER_ADVANCED
603 ---help---
604 This option allows you to build work-load-sharing clusters of
605 network servers/stateful firewalls without having a dedicated
606 load-balancing router/server/switch. Basically, this match returns
607 true when the packet must be handled by this cluster node. Thus,
608 all nodes see all packets and this match decides which node handles
609 what packets. The work-load sharing algorithm is based on source
610 address hashing.
611
612 If you say Y or M here, try `iptables -m cluster --help` for
613 more information.
614
Harald Welte2e4e6a12006-01-12 13:30:04 -0800615config NETFILTER_XT_MATCH_COMMENT
616 tristate '"comment" match support'
Patrick McHardy33b8e772007-12-17 22:47:05 -0800617 depends on NETFILTER_ADVANCED
Harald Welte2e4e6a12006-01-12 13:30:04 -0800618 help
619 This option adds a `comment' dummy-match, which allows you to put
620 comments in your iptables ruleset.
621
622 If you want to compile it as a module, say M here and read
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +0500623 <file:Documentation/kbuild/modules.txt>. If unsure, say `N'.
Harald Welte2e4e6a12006-01-12 13:30:04 -0800624
625config NETFILTER_XT_MATCH_CONNBYTES
626 tristate '"connbytes" per-connection counter match support'
Patrick McHardy587aa642007-03-14 16:37:25 -0700627 depends on NF_CONNTRACK
Patrick McHardy33b8e772007-12-17 22:47:05 -0800628 depends on NETFILTER_ADVANCED
Harald Welte2e4e6a12006-01-12 13:30:04 -0800629 help
630 This option adds a `connbytes' match, which allows you to match the
631 number of bytes and/or packets for each direction within a connection.
632
633 If you want to compile it as a module, say M here and read
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +0500634 <file:Documentation/kbuild/modules.txt>. If unsure, say `N'.
Harald Welte2e4e6a12006-01-12 13:30:04 -0800635
Jan Engelhardt370786f2007-07-14 20:47:26 -0700636config NETFILTER_XT_MATCH_CONNLIMIT
637 tristate '"connlimit" match support"'
Cornelia Huck3fd8f9e2007-07-18 02:38:32 -0700638 depends on NF_CONNTRACK
Patrick McHardy33b8e772007-12-17 22:47:05 -0800639 depends on NETFILTER_ADVANCED
Jan Engelhardt370786f2007-07-14 20:47:26 -0700640 ---help---
641 This match allows you to match against the number of parallel
642 connections to a server per client IP address (or address block).
643
Harald Welte2e4e6a12006-01-12 13:30:04 -0800644config NETFILTER_XT_MATCH_CONNMARK
645 tristate '"connmark" connection mark match support'
Patrick McHardy587aa642007-03-14 16:37:25 -0700646 depends on NF_CONNTRACK
Patrick McHardy33b8e772007-12-17 22:47:05 -0800647 depends on NETFILTER_ADVANCED
Jan Engelhardtb8f00ba2010-02-26 14:20:32 +0100648 select NETFILTER_XT_CONNMARK
649 ---help---
650 This is a backwards-compat option for the user's convenience
651 (e.g. when running oldconfig). It selects
652 CONFIG_NETFILTER_XT_CONNMARK (combined connmark/CONNMARK module).
Harald Welte2e4e6a12006-01-12 13:30:04 -0800653
654config NETFILTER_XT_MATCH_CONNTRACK
655 tristate '"conntrack" connection tracking match support'
Patrick McHardy587aa642007-03-14 16:37:25 -0700656 depends on NF_CONNTRACK
Patrick McHardy33b8e772007-12-17 22:47:05 -0800657 default m if NETFILTER_ADVANCED=n
Harald Welte2e4e6a12006-01-12 13:30:04 -0800658 help
659 This is a general conntrack match module, a superset of the state match.
660
661 It allows matching on additional conntrack information, which is
662 useful in complex configurations, such as NAT gateways with multiple
663 internet links or tunnels.
664
665 To compile it as a module, choose M here. If unsure, say N.
666
Eric Dumazete8648a12010-07-23 12:59:36 +0200667config NETFILTER_XT_MATCH_CPU
668 tristate '"cpu" match support'
669 depends on NETFILTER_ADVANCED
670 help
671 CPU matching allows you to match packets based on the CPU
672 currently handling the packet.
673
674 To compile it as a module, choose M here. If unsure, say N.
675
Harald Welte2e4e6a12006-01-12 13:30:04 -0800676config NETFILTER_XT_MATCH_DCCP
Jan Engelhardt4c377992007-12-04 23:31:59 -0800677 tristate '"dccp" protocol match support'
Patrick McHardy33b8e772007-12-17 22:47:05 -0800678 depends on NETFILTER_ADVANCED
Patrick McHardyf3261af2008-05-08 01:16:04 -0700679 default IP_DCCP
Harald Welte2e4e6a12006-01-12 13:30:04 -0800680 help
681 With this option enabled, you will be able to use the iptables
682 `dccp' match in order to match on DCCP source/destination ports
683 and DCCP flags.
684
685 If you want to compile it as a module, say M here and read
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +0500686 <file:Documentation/kbuild/modules.txt>. If unsure, say `N'.
Harald Welte2e4e6a12006-01-12 13:30:04 -0800687
Yasuyuki Kozakai9ba16272006-08-22 00:29:37 -0700688config NETFILTER_XT_MATCH_DSCP
Jan Engelhardtc3b33e62007-12-04 23:37:54 -0800689 tristate '"dscp" and "tos" match support'
Patrick McHardy33b8e772007-12-17 22:47:05 -0800690 depends on NETFILTER_ADVANCED
Yasuyuki Kozakai9ba16272006-08-22 00:29:37 -0700691 help
692 This option adds a `DSCP' match, which allows you to match against
693 the IPv4/IPv6 header DSCP field (differentiated services codepoint).
694
695 The DSCP field can have any value between 0x0 and 0x3f inclusive.
696
Jan Engelhardtc3b33e62007-12-04 23:37:54 -0800697 It will also add a "tos" match, which allows you to match packets
698 based on the Type Of Service fields of the IPv4 packet (which share
699 the same bits as DSCP).
700
Yasuyuki Kozakai9ba16272006-08-22 00:29:37 -0700701 To compile it as a module, choose M here. If unsure, say N.
702
Yasuyuki Kozakaidc5ab2f2006-04-01 02:22:30 -0800703config NETFILTER_XT_MATCH_ESP
Jan Engelhardt4c377992007-12-04 23:31:59 -0800704 tristate '"esp" match support'
Patrick McHardy33b8e772007-12-17 22:47:05 -0800705 depends on NETFILTER_ADVANCED
Yasuyuki Kozakaidc5ab2f2006-04-01 02:22:30 -0800706 help
707 This match extension allows you to match a range of SPIs
708 inside ESP header of IPSec packets.
709
710 To compile it as a module, choose M here. If unsure, say N.
711
Jan Engelhardtaba0d342008-10-08 11:35:17 +0200712config NETFILTER_XT_MATCH_HASHLIMIT
713 tristate '"hashlimit" match support'
Jan Engelhardtc2df73d2008-10-08 11:35:18 +0200714 depends on (IP6_NF_IPTABLES || IP6_NF_IPTABLES=n)
Jan Engelhardtaba0d342008-10-08 11:35:17 +0200715 depends on NETFILTER_ADVANCED
716 help
717 This option adds a `hashlimit' match.
718
719 As opposed to `limit', this match dynamically creates a hash table
720 of limit buckets, based on your selection of source/destination
721 addresses and/or ports.
722
723 It enables you to express policies like `10kpps for any given
724 destination address' or `500pps from any given source address'
725 with a single rule.
726
Harald Welte2e4e6a12006-01-12 13:30:04 -0800727config NETFILTER_XT_MATCH_HELPER
728 tristate '"helper" match support'
Patrick McHardy587aa642007-03-14 16:37:25 -0700729 depends on NF_CONNTRACK
Patrick McHardy33b8e772007-12-17 22:47:05 -0800730 depends on NETFILTER_ADVANCED
Harald Welte2e4e6a12006-01-12 13:30:04 -0800731 help
732 Helper matching allows you to match packets in dynamic connections
733 tracked by a conntrack-helper, ie. ip_conntrack_ftp
734
735 To compile it as a module, choose M here. If unsure, say Y.
736
Jan Engelhardtcfac5ef2009-02-18 18:39:31 +0100737config NETFILTER_XT_MATCH_HL
738 tristate '"hl" hoplimit/TTL match support'
739 depends on NETFILTER_ADVANCED
740 ---help---
741 HL matching allows you to match packets based on the hoplimit
742 in the IPv6 header, or the time-to-live field in the IPv4
743 header of the packet.
744
Jan Engelhardtf72e25a2008-01-14 23:42:47 -0800745config NETFILTER_XT_MATCH_IPRANGE
746 tristate '"iprange" address range match support'
Jan Engelhardtf72e25a2008-01-14 23:42:47 -0800747 depends on NETFILTER_ADVANCED
748 ---help---
749 This option adds a "iprange" match, which allows you to match based on
750 an IP address range. (Normal iptables only matches on single addresses
751 with an optional mask.)
752
753 If unsure, say M.
754
Hannes Eder9c3e1c32010-07-23 12:42:58 +0200755config NETFILTER_XT_MATCH_IPVS
756 tristate '"ipvs" match support'
757 depends on IP_VS
758 depends on NETFILTER_ADVANCED
759 depends on NF_CONNTRACK
760 help
761 This option allows you to match against IPVS properties of a packet.
762
763 If unsure, say N.
764
Harald Welte2e4e6a12006-01-12 13:30:04 -0800765config NETFILTER_XT_MATCH_LENGTH
766 tristate '"length" match support'
Patrick McHardy33b8e772007-12-17 22:47:05 -0800767 depends on NETFILTER_ADVANCED
Harald Welte2e4e6a12006-01-12 13:30:04 -0800768 help
769 This option allows you to match the length of a packet against a
770 specific value or range of values.
771
772 To compile it as a module, choose M here. If unsure, say N.
773
774config NETFILTER_XT_MATCH_LIMIT
775 tristate '"limit" match support'
Patrick McHardy33b8e772007-12-17 22:47:05 -0800776 depends on NETFILTER_ADVANCED
Harald Welte2e4e6a12006-01-12 13:30:04 -0800777 help
778 limit matching allows you to control the rate at which a rule can be
779 matched: mainly useful in combination with the LOG target ("LOG
780 target support", below) and to avoid some Denial of Service attacks.
781
782 To compile it as a module, choose M here. If unsure, say N.
783
784config NETFILTER_XT_MATCH_MAC
785 tristate '"mac" address match support'
Patrick McHardy33b8e772007-12-17 22:47:05 -0800786 depends on NETFILTER_ADVANCED
Harald Welte2e4e6a12006-01-12 13:30:04 -0800787 help
788 MAC matching allows you to match packets based on the source
789 Ethernet address of the packet.
790
791 To compile it as a module, choose M here. If unsure, say N.
792
793config NETFILTER_XT_MATCH_MARK
794 tristate '"mark" match support'
Jan Engelhardt28b94982009-02-28 03:23:57 +0100795 depends on NETFILTER_ADVANCED
796 select NETFILTER_XT_MARK
797 ---help---
798 This is a backwards-compat option for the user's convenience
799 (e.g. when running oldconfig). It selects
800 CONFIG_NETFILTER_XT_MARK (combined mark/MARK module).
Harald Welte2e4e6a12006-01-12 13:30:04 -0800801
Jan Engelhardtaba0d342008-10-08 11:35:17 +0200802config NETFILTER_XT_MATCH_MULTIPORT
803 tristate '"multiport" Multiple port match support'
Jan Engelhardtaba0d342008-10-08 11:35:17 +0200804 depends on NETFILTER_ADVANCED
805 help
806 Multiport matching allows you to match TCP or UDP packets based on
807 a series of source or destination ports: normally a rule can only
808 match a single range of ports.
809
810 To compile it as a module, choose M here. If unsure, say N.
811
Jan Engelhardt115bc8f2010-03-16 20:06:55 +0100812config NETFILTER_XT_MATCH_OSF
813 tristate '"osf" Passive OS fingerprint match'
814 depends on NETFILTER_ADVANCED && NETFILTER_NETLINK
815 help
816 This option selects the Passive OS Fingerprinting match module
817 that allows to passively match the remote operating system by
818 analyzing incoming TCP SYN packets.
819
820 Rules and loading software can be downloaded from
821 http://www.ioremap.net/projects/osf
822
823 To compile it as a module, choose M here. If unsure, say N.
824
Jan Engelhardt0265ab42007-12-04 23:27:38 -0800825config NETFILTER_XT_MATCH_OWNER
826 tristate '"owner" match support'
Patrick McHardy33b8e772007-12-17 22:47:05 -0800827 depends on NETFILTER_ADVANCED
Jan Engelhardt0265ab42007-12-04 23:27:38 -0800828 ---help---
829 Socket owner matching allows you to match locally-generated packets
830 based on who created the socket: the user or group. It is also
831 possible to check whether a socket actually exists.
832
Patrick McHardyc4b88512006-03-20 18:03:40 -0800833config NETFILTER_XT_MATCH_POLICY
834 tristate 'IPsec "policy" match support'
Jan Engelhardtc2df73d2008-10-08 11:35:18 +0200835 depends on XFRM
Patrick McHardy33b8e772007-12-17 22:47:05 -0800836 default m if NETFILTER_ADVANCED=n
Patrick McHardyc4b88512006-03-20 18:03:40 -0800837 help
838 Policy matching allows you to match packets based on the
839 IPsec policy that was used during decapsulation/will
840 be used during encapsulation.
841
842 To compile it as a module, choose M here. If unsure, say N.
843
Harald Welte2e4e6a12006-01-12 13:30:04 -0800844config NETFILTER_XT_MATCH_PHYSDEV
845 tristate '"physdev" match support'
Jan Engelhardtc2df73d2008-10-08 11:35:18 +0200846 depends on BRIDGE && BRIDGE_NETFILTER
Patrick McHardy33b8e772007-12-17 22:47:05 -0800847 depends on NETFILTER_ADVANCED
Harald Welte2e4e6a12006-01-12 13:30:04 -0800848 help
849 Physdev packet matching matches against the physical bridge ports
850 the IP packet arrived on or will leave by.
851
852 To compile it as a module, choose M here. If unsure, say N.
853
854config NETFILTER_XT_MATCH_PKTTYPE
855 tristate '"pkttype" packet type match support'
Patrick McHardy33b8e772007-12-17 22:47:05 -0800856 depends on NETFILTER_ADVANCED
Harald Welte2e4e6a12006-01-12 13:30:04 -0800857 help
858 Packet type matching allows you to match a packet by
859 its "class", eg. BROADCAST, MULTICAST, ...
860
861 Typical usage:
862 iptables -A INPUT -m pkttype --pkt-type broadcast -j LOG
863
864 To compile it as a module, choose M here. If unsure, say N.
865
Patrick McHardy62b77432006-05-29 18:20:32 -0700866config NETFILTER_XT_MATCH_QUOTA
867 tristate '"quota" match support'
Patrick McHardy33b8e772007-12-17 22:47:05 -0800868 depends on NETFILTER_ADVANCED
Patrick McHardy62b77432006-05-29 18:20:32 -0700869 help
870 This option adds a `quota' match, which allows to match on a
871 byte counter.
872
873 If you want to compile it as a module, say M here and read
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +0500874 <file:Documentation/kbuild/modules.txt>. If unsure, say `N'.
Patrick McHardy62b77432006-05-29 18:20:32 -0700875
Patrick McHardy50c164a2007-12-04 13:02:19 +0100876config NETFILTER_XT_MATCH_RATEEST
877 tristate '"rateest" match support'
Patrick McHardyb26e76b2008-01-14 23:30:56 -0800878 depends on NETFILTER_ADVANCED
Patrick McHardy50c164a2007-12-04 13:02:19 +0100879 select NETFILTER_XT_TARGET_RATEEST
880 help
881 This option adds a `rateest' match, which allows to match on the
882 rate estimated by the RATEEST target.
883
884 To compile it as a module, choose M here. If unsure, say N.
885
Harald Welte2e4e6a12006-01-12 13:30:04 -0800886config NETFILTER_XT_MATCH_REALM
887 tristate '"realm" match support'
Patrick McHardy33b8e772007-12-17 22:47:05 -0800888 depends on NETFILTER_ADVANCED
Patrick McHardyc7066f72011-01-14 13:36:42 +0100889 select IP_ROUTE_CLASSID
Harald Welte2e4e6a12006-01-12 13:30:04 -0800890 help
891 This option adds a `realm' match, which allows you to use the realm
892 key from the routing subsystem inside iptables.
Patrick McHardy33b8e772007-12-17 22:47:05 -0800893
Harald Welte2e4e6a12006-01-12 13:30:04 -0800894 This match pretty much resembles the CONFIG_NET_CLS_ROUTE4 option
895 in tc world.
Patrick McHardy33b8e772007-12-17 22:47:05 -0800896
Harald Welte2e4e6a12006-01-12 13:30:04 -0800897 If you want to compile it as a module, say M here and read
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +0500898 <file:Documentation/kbuild/modules.txt>. If unsure, say `N'.
Harald Welte2e4e6a12006-01-12 13:30:04 -0800899
Jan Engelhardte948b202008-10-08 11:35:00 +0200900config NETFILTER_XT_MATCH_RECENT
901 tristate '"recent" match support'
Jan Engelhardte948b202008-10-08 11:35:00 +0200902 depends on NETFILTER_ADVANCED
903 ---help---
904 This match is used for creating one or many lists of recently
905 used addresses and then matching against that/those list(s).
906
907 Short options are available by using 'iptables -m recent -h'
908 Official Website: <http://snowman.net/projects/ipt_recent/>
909
Harald Welte2e4e6a12006-01-12 13:30:04 -0800910config NETFILTER_XT_MATCH_SCTP
Patrick McHardyd5af9812006-07-24 22:55:29 -0700911 tristate '"sctp" protocol match support (EXPERIMENTAL)'
Jan Engelhardtc2df73d2008-10-08 11:35:18 +0200912 depends on EXPERIMENTAL
Patrick McHardy33b8e772007-12-17 22:47:05 -0800913 depends on NETFILTER_ADVANCED
Patrick McHardyf3261af2008-05-08 01:16:04 -0700914 default IP_SCTP
Harald Welte2e4e6a12006-01-12 13:30:04 -0800915 help
916 With this option enabled, you will be able to use the
917 `sctp' match in order to match on SCTP source/destination ports
918 and SCTP chunk types.
919
920 If you want to compile it as a module, say M here and read
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +0500921 <file:Documentation/kbuild/modules.txt>. If unsure, say `N'.
Harald Welte2e4e6a12006-01-12 13:30:04 -0800922
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200923config NETFILTER_XT_MATCH_SOCKET
924 tristate '"socket" match support (EXPERIMENTAL)'
925 depends on EXPERIMENTAL
926 depends on NETFILTER_TPROXY
927 depends on NETFILTER_XTABLES
928 depends on NETFILTER_ADVANCED
Laszlo Attila Tothacda0742009-05-01 15:23:10 -0700929 depends on !NF_CONNTRACK || NF_CONNTRACK
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200930 select NF_DEFRAG_IPV4
KOVACS Krisztianf6318e52010-10-24 23:38:32 +0000931 select NF_DEFRAG_IPV6 if IP6_NF_IPTABLES
KOVACS Krisztian136cdc72008-10-08 11:35:12 +0200932 help
933 This option adds a `socket' match, which can be used to match
934 packets for which a TCP or UDP socket lookup finds a valid socket.
935 It can be used in combination with the MARK target and policy
936 routing to implement full featured non-locally bound sockets.
937
938 To compile it as a module, choose M here. If unsure, say N.
939
Harald Welte2e4e6a12006-01-12 13:30:04 -0800940config NETFILTER_XT_MATCH_STATE
941 tristate '"state" match support'
Patrick McHardy587aa642007-03-14 16:37:25 -0700942 depends on NF_CONNTRACK
Patrick McHardy33b8e772007-12-17 22:47:05 -0800943 default m if NETFILTER_ADVANCED=n
Harald Welte2e4e6a12006-01-12 13:30:04 -0800944 help
945 Connection state matching allows you to match packets based on their
946 relationship to a tracked connection (ie. previous packets). This
947 is a powerful tool for packet classification.
948
949 To compile it as a module, choose M here. If unsure, say N.
950
Patrick McHardyf3389802006-05-29 18:21:00 -0700951config NETFILTER_XT_MATCH_STATISTIC
952 tristate '"statistic" match support'
Patrick McHardy33b8e772007-12-17 22:47:05 -0800953 depends on NETFILTER_ADVANCED
Patrick McHardyf3389802006-05-29 18:21:00 -0700954 help
Patrick McHardy68c16922006-06-27 03:02:14 -0700955 This option adds a `statistic' match, which allows you to match
956 on packets periodically or randomly with a given percentage.
957
958 To compile it as a module, choose M here. If unsure, say N.
Patrick McHardyf3389802006-05-29 18:21:00 -0700959
Harald Welte2e4e6a12006-01-12 13:30:04 -0800960config NETFILTER_XT_MATCH_STRING
961 tristate '"string" match support'
Patrick McHardy33b8e772007-12-17 22:47:05 -0800962 depends on NETFILTER_ADVANCED
Harald Welte2e4e6a12006-01-12 13:30:04 -0800963 select TEXTSEARCH
964 select TEXTSEARCH_KMP
965 select TEXTSEARCH_BM
966 select TEXTSEARCH_FSM
967 help
968 This option adds a `string' match, which allows you to look for
969 pattern matchings in packets.
970
971 To compile it as a module, choose M here. If unsure, say N.
972
973config NETFILTER_XT_MATCH_TCPMSS
974 tristate '"tcpmss" match support'
Patrick McHardy33b8e772007-12-17 22:47:05 -0800975 depends on NETFILTER_ADVANCED
Harald Welte2e4e6a12006-01-12 13:30:04 -0800976 help
977 This option adds a `tcpmss' match, which allows you to examine the
978 MSS value of TCP SYN packets, which control the maximum packet size
979 for that connection.
980
981 To compile it as a module, choose M here. If unsure, say N.
982
Jan Engelhardtee4411a2007-09-28 14:46:43 -0700983config NETFILTER_XT_MATCH_TIME
984 tristate '"time" match support'
Patrick McHardy33b8e772007-12-17 22:47:05 -0800985 depends on NETFILTER_ADVANCED
Jan Engelhardtee4411a2007-09-28 14:46:43 -0700986 ---help---
987 This option adds a "time" match, which allows you to match based on
988 the packet arrival time (at the machine which netfilter is running)
989 on) or departure time/date (for locally generated packets).
990
991 If you say Y here, try `iptables -m time --help` for
992 more information.
993
994 If you want to compile it as a module, say M here.
995 If unsure, say N.
996
Jan Engelhardt1b50b8a2007-07-07 22:20:36 -0700997config NETFILTER_XT_MATCH_U32
998 tristate '"u32" match support'
Patrick McHardy33b8e772007-12-17 22:47:05 -0800999 depends on NETFILTER_ADVANCED
Jan Engelhardt1b50b8a2007-07-07 22:20:36 -07001000 ---help---
1001 u32 allows you to extract quantities of up to 4 bytes from a packet,
1002 AND them with specified masks, shift them by specified amounts and
1003 test whether the results are in any of a set of specified ranges.
1004 The specification of what to extract is general enough to skip over
1005 headers with lengths stored in the packet, as in IP or TCP header
1006 lengths.
1007
1008 Details and examples are in the kernel module source.
1009
Jan Engelhardtc2df73d2008-10-08 11:35:18 +02001010endif # NETFILTER_XTABLES
Harald Weltea6c1cd572006-02-13 15:42:48 -08001011
Jan Engelhardtc2df73d2008-10-08 11:35:18 +02001012endmenu
Harald Weltef9e815b2005-08-09 19:30:24 -07001013
Julius Volzcb7f6a72008-09-19 12:32:57 +02001014source "net/netfilter/ipvs/Kconfig"