blob: f3efb6570dd98c6537165c11000a1baaf81fc0cb [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
Pablo Neira Ayuso94139022011-12-23 14:19:50 +01007config NETFILTER_NETLINK_ACCT
8tristate "Netfilter NFACCT over NFNETLINK interface"
9 depends on NETFILTER_ADVANCED
10 select NETFILTER_NETLINK
11 help
12 If this option is enabled, the kernel will include support
13 for extended accounting via NFNETLINK.
14
Harald Welte7af4cc32005-08-09 19:44:15 -070015config NETFILTER_NETLINK_QUEUE
16 tristate "Netfilter NFQUEUE over NFNETLINK interface"
Patrick McHardy33b8e772007-12-17 22:47:05 -080017 depends on NETFILTER_ADVANCED
Patrick McHardy2eeeba32007-12-05 01:31:52 -080018 select NETFILTER_NETLINK
Harald Welte7af4cc32005-08-09 19:44:15 -070019 help
Thomas Vögtle50b521a2006-03-22 13:53:48 -080020 If this option is enabled, the kernel will include support
Harald Welte7af4cc32005-08-09 19:44:15 -070021 for queueing packets via NFNETLINK.
22
Harald Welte0597f262005-08-09 19:58:39 -070023config NETFILTER_NETLINK_LOG
24 tristate "Netfilter LOG over NFNETLINK interface"
Patrick McHardy33b8e772007-12-17 22:47:05 -080025 default m if NETFILTER_ADVANCED=n
Patrick McHardy2eeeba32007-12-05 01:31:52 -080026 select NETFILTER_NETLINK
Harald Welte0597f262005-08-09 19:58:39 -070027 help
28 If this option is enabled, the kernel will include support
29 for logging packets via NFNETLINK.
30
31 This obsoletes the existing ipt_ULOG and ebg_ulog mechanisms,
32 and is also scheduled to replace the old syslog-based ipt_LOG
33 and ip6t_LOG modules.
34
Patrick McHardyab4f58c2007-12-05 01:31:37 -080035config NF_CONNTRACK
Patrick McHardyb321e142006-12-02 22:05:46 -080036 tristate "Netfilter connection tracking support"
Patrick McHardy33b8e772007-12-17 22:47:05 -080037 default m if NETFILTER_ADVANCED=n
Patrick McHardyb321e142006-12-02 22:05:46 -080038 help
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080039 Connection tracking keeps a record of what packets have passed
40 through your machine, in order to figure out how they are related
41 into connections.
42
Patrick McHardyb321e142006-12-02 22:05:46 -080043 This is required to do Masquerading or other kinds of Network
Russ Dillb11c16b2008-07-08 02:35:27 -070044 Address Translation. It can also be used to enhance packet
45 filtering (see `Connection state match support' below).
Patrick McHardyb321e142006-12-02 22:05:46 -080046
47 To compile it as a module, choose M here. If unsure, say N.
48
Jan Engelhardtc2df73d2008-10-08 11:35:18 +020049if NF_CONNTRACK
50
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080051config NF_CONNTRACK_MARK
52 bool 'Connection mark tracking support'
Patrick McHardy33b8e772007-12-17 22:47:05 -080053 depends on NETFILTER_ADVANCED
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080054 help
55 This option enables support for connection marks, used by the
56 `CONNMARK' target and `connmark' match. Similar to the mark value
57 of packets, but this mark value is kept in the conntrack session
58 instead of the individual packets.
59
James Morris7c9728c2006-06-09 00:31:46 -070060config NF_CONNTRACK_SECMARK
61 bool 'Connection tracking security mark support'
Jan Engelhardtc2df73d2008-10-08 11:35:18 +020062 depends on NETWORK_SECMARK
Patrick McHardy33b8e772007-12-17 22:47:05 -080063 default m if NETFILTER_ADVANCED=n
James Morris7c9728c2006-06-09 00:31:46 -070064 help
65 This option enables security markings to be applied to
66 connections. Typically they are copied to connections from
67 packets using the CONNSECMARK target and copied back from
68 connections to packets with the same target, with the packets
69 being originally labeled via SECMARK.
70
71 If unsure, say 'N'.
72
Patrick McHardy5d0aa2c2010-02-15 18:13:33 +010073config NF_CONNTRACK_ZONES
74 bool 'Connection tracking zones'
75 depends on NETFILTER_ADVANCED
76 depends on NETFILTER_XT_TARGET_CT
77 help
78 This option enables support for connection tracking zones.
79 Normally, each connection needs to have a unique system wide
80 identity. Connection tracking zones allow to have multiple
81 connections using the same identity, as long as they are
82 contained in different zones.
83
84 If unsure, say `N'.
85
Jan Engelhardt54b07dc2011-04-21 09:32:45 +020086config NF_CONNTRACK_PROCFS
87 bool "Supply CT list in procfs (OBSOLETE)"
88 default y
89 depends on PROC_FS
90 ---help---
91 This option enables for the list of known conntrack entries
92 to be shown in procfs under net/netfilter/nf_conntrack. This
93 is considered obsolete in favor of using the conntrack(8)
94 tool which uses Netlink.
95
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080096config NF_CONNTRACK_EVENTS
Patrick McHardy8ce22fc2008-01-14 23:31:36 -080097 bool "Connection tracking events"
Patrick McHardy33b8e772007-12-17 22:47:05 -080098 depends on NETFILTER_ADVANCED
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080099 help
100 If this option is enabled, the connection tracking code will
101 provide a notifier chain that can be used by other kernel code
Thomas Vögtle50b521a2006-03-22 13:53:48 -0800102 to get notified about changes in the connection tracking state.
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800103
104 If unsure, say `N'.
105
Pablo Neira Ayusoa992ca22011-01-19 16:00:07 +0100106config NF_CONNTRACK_TIMESTAMP
107 bool 'Connection tracking timestamping'
108 depends on NETFILTER_ADVANCED
109 help
110 This option enables support for connection tracking timestamping.
111 This allows you to store the flow start-time and to obtain
112 the flow-stop time (once it has been destroyed) via Connection
113 tracking events.
114
115 If unsure, say `N'.
116
Patrick McHardy2bc78042008-03-20 15:15:55 +0100117config NF_CT_PROTO_DCCP
118 tristate 'DCCP protocol connection tracking support (EXPERIMENTAL)'
Jan Engelhardtc2df73d2008-10-08 11:35:18 +0200119 depends on EXPERIMENTAL
Patrick McHardy2bc78042008-03-20 15:15:55 +0100120 depends on NETFILTER_ADVANCED
Patrick McHardyf3261af2008-05-08 01:16:04 -0700121 default IP_DCCP
Patrick McHardy2bc78042008-03-20 15:15:55 +0100122 help
123 With this option enabled, the layer 3 independent connection
124 tracking code will be able to do state tracking on DCCP connections.
125
126 If unsure, say 'N'.
127
Patrick McHardyf09943f2006-12-02 22:09:41 -0800128config NF_CT_PROTO_GRE
129 tristate
Patrick McHardyf09943f2006-12-02 22:09:41 -0800130
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800131config NF_CT_PROTO_SCTP
Patrick McHardya3c47972006-12-02 22:11:01 -0800132 tristate 'SCTP protocol connection tracking support (EXPERIMENTAL)'
Jan Engelhardtc2df73d2008-10-08 11:35:18 +0200133 depends on EXPERIMENTAL
Patrick McHardy33b8e772007-12-17 22:47:05 -0800134 depends on NETFILTER_ADVANCED
Patrick McHardyf3261af2008-05-08 01:16:04 -0700135 default IP_SCTP
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800136 help
137 With this option enabled, the layer 3 independent connection
138 tracking code will be able to do state tracking on SCTP connections.
139
140 If you want to compile it as a module, say M here and read
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +0500141 <file:Documentation/kbuild/modules.txt>. If unsure, say `N'.
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800142
Patrick McHardy59eecdf2007-07-14 20:48:44 -0700143config NF_CT_PROTO_UDPLITE
Patrick McHardy8ce22fc2008-01-14 23:31:36 -0800144 tristate 'UDP-Lite protocol connection tracking support'
Patrick McHardy33b8e772007-12-17 22:47:05 -0800145 depends on NETFILTER_ADVANCED
Patrick McHardy59eecdf2007-07-14 20:48:44 -0700146 help
147 With this option enabled, the layer 3 independent connection
148 tracking code will be able to do state tracking on UDP-Lite
149 connections.
150
151 To compile it as a module, choose M here. If unsure, say N.
152
Patrick McHardy16958902006-12-02 22:08:26 -0800153config NF_CONNTRACK_AMANDA
Patrick McHardyc9386cf2007-01-04 12:16:06 -0800154 tristate "Amanda backup protocol support"
Patrick McHardy33b8e772007-12-17 22:47:05 -0800155 depends on NETFILTER_ADVANCED
Patrick McHardy16958902006-12-02 22:08:26 -0800156 select TEXTSEARCH
157 select TEXTSEARCH_KMP
158 help
159 If you are running the Amanda backup package <http://www.amanda.org/>
160 on this machine or machines that will be MASQUERADED through this
161 machine, then you may want to enable this feature. This allows the
162 connection tracking and natting code to allow the sub-channels that
163 Amanda requires for communication of the backup data, messages and
164 index.
165
166 To compile it as a module, choose M here. If unsure, say N.
167
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800168config NF_CONNTRACK_FTP
Patrick McHardyc9386cf2007-01-04 12:16:06 -0800169 tristate "FTP protocol support"
Patrick McHardy33b8e772007-12-17 22:47:05 -0800170 default m if NETFILTER_ADVANCED=n
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800171 help
172 Tracking FTP connections is problematic: special helpers are
173 required for tracking them, and doing masquerading and other forms
174 of Network Address Translation on them.
175
176 This is FTP support on Layer 3 independent connection tracking.
177 Layer 3 independent connection tracking is experimental scheme
178 which generalize ip_conntrack to support other layer 3 protocols.
179
180 To compile it as a module, choose M here. If unsure, say N.
181
Patrick McHardyf587de02006-12-02 22:08:46 -0800182config NF_CONNTRACK_H323
Patrick McHardy8ce22fc2008-01-14 23:31:36 -0800183 tristate "H.323 protocol support"
Jan Engelhardtc2df73d2008-10-08 11:35:18 +0200184 depends on (IPV6 || IPV6=n)
Patrick McHardy33b8e772007-12-17 22:47:05 -0800185 depends on NETFILTER_ADVANCED
Patrick McHardyf587de02006-12-02 22:08:46 -0800186 help
187 H.323 is a VoIP signalling protocol from ITU-T. As one of the most
188 important VoIP protocols, it is widely used by voice hardware and
189 software including voice gateways, IP phones, Netmeeting, OpenPhone,
190 Gnomemeeting, etc.
191
192 With this module you can support H.323 on a connection tracking/NAT
193 firewall.
194
195 This module supports RAS, Fast Start, H.245 Tunnelling, Call
196 Forwarding, RTP/RTCP and T.120 based audio, video, fax, chat,
197 whiteboard, file transfer, etc. For more information, please
198 visit http://nath323.sourceforge.net/.
199
200 To compile it as a module, choose M here. If unsure, say N.
201
Patrick McHardy869f37d2006-12-02 22:09:06 -0800202config NF_CONNTRACK_IRC
Patrick McHardyc9386cf2007-01-04 12:16:06 -0800203 tristate "IRC protocol support"
Patrick McHardy33b8e772007-12-17 22:47:05 -0800204 default m if NETFILTER_ADVANCED=n
Patrick McHardy869f37d2006-12-02 22:09:06 -0800205 help
206 There is a commonly-used extension to IRC called
207 Direct Client-to-Client Protocol (DCC). This enables users to send
208 files to each other, and also chat to each other without the need
209 of a server. DCC Sending is used anywhere you send files over IRC,
210 and DCC Chat is most commonly used by Eggdrop bots. If you are
211 using NAT, this extension will enable you to send files and initiate
212 chats. Note that you do NOT need this extension to get files or
213 have others initiate chats, or everything else in IRC.
214
215 To compile it as a module, choose M here. If unsure, say N.
216
Jiri Olsa93557f52011-01-18 18:12:24 +0100217config NF_CONNTRACK_BROADCAST
218 tristate
219
Patrick McHardy92703ee2006-12-02 22:09:24 -0800220config NF_CONNTRACK_NETBIOS_NS
Patrick McHardy8ce22fc2008-01-14 23:31:36 -0800221 tristate "NetBIOS name service protocol support"
Jiri Olsa93557f52011-01-18 18:12:24 +0100222 select NF_CONNTRACK_BROADCAST
Patrick McHardy92703ee2006-12-02 22:09:24 -0800223 help
224 NetBIOS name service requests are sent as broadcast messages from an
225 unprivileged port and responded to with unicast messages to the
226 same port. This make them hard to firewall properly because connection
227 tracking doesn't deal with broadcasts. This helper tracks locally
228 originating NetBIOS name service requests and the corresponding
229 responses. It relies on correct IP address configuration, specifically
230 netmask and broadcast address. When properly configured, the output
231 of "ip address show" should look similar to this:
232
233 $ ip -4 address show eth0
234 4: eth0: <BROADCAST,MULTICAST,UP> mtu 1500 qdisc pfifo_fast qlen 1000
235 inet 172.16.2.252/24 brd 172.16.2.255 scope global eth0
236
237 To compile it as a module, choose M here. If unsure, say N.
238
Jiri Olsa93557f52011-01-18 18:12:24 +0100239config NF_CONNTRACK_SNMP
240 tristate "SNMP service protocol support"
241 depends on NETFILTER_ADVANCED
242 select NF_CONNTRACK_BROADCAST
243 help
244 SNMP service requests are sent as broadcast messages from an
245 unprivileged port and responded to with unicast messages to the
246 same port. This make them hard to firewall properly because connection
247 tracking doesn't deal with broadcasts. This helper tracks locally
248 originating SNMP service requests and the corresponding
249 responses. It relies on correct IP address configuration, specifically
250 netmask and broadcast address.
251
252 To compile it as a module, choose M here. If unsure, say N.
253
Patrick McHardyf09943f2006-12-02 22:09:41 -0800254config NF_CONNTRACK_PPTP
Patrick McHardyc9386cf2007-01-04 12:16:06 -0800255 tristate "PPtP protocol support"
Patrick McHardy33b8e772007-12-17 22:47:05 -0800256 depends on NETFILTER_ADVANCED
Patrick McHardyf09943f2006-12-02 22:09:41 -0800257 select NF_CT_PROTO_GRE
258 help
259 This module adds support for PPTP (Point to Point Tunnelling
260 Protocol, RFC2637) connection tracking and NAT.
261
262 If you are running PPTP sessions over a stateful firewall or NAT
263 box, you may want to enable this feature.
264
265 Please note that not all PPTP modes of operation are supported yet.
266 Specifically these limitations exist:
David Sterba3dde6ad2007-05-09 07:12:20 +0200267 - Blindly assumes that control connections are always established
Patrick McHardyf09943f2006-12-02 22:09:41 -0800268 in PNS->PAC direction. This is a violation of RFC2637.
269 - Only supports a single call within each session
270
271 To compile it as a module, choose M here. If unsure, say N.
272
Michal Schmidt6fecd192007-02-07 15:05:12 -0800273config NF_CONNTRACK_SANE
274 tristate "SANE protocol support (EXPERIMENTAL)"
Jan Engelhardtc2df73d2008-10-08 11:35:18 +0200275 depends on EXPERIMENTAL
Patrick McHardy33b8e772007-12-17 22:47:05 -0800276 depends on NETFILTER_ADVANCED
Michal Schmidt6fecd192007-02-07 15:05:12 -0800277 help
278 SANE is a protocol for remote access to scanners as implemented
279 by the 'saned' daemon. Like FTP, it uses separate control and
280 data connections.
281
282 With this module you can support SANE on a connection tracking
283 firewall.
284
285 To compile it as a module, choose M here. If unsure, say N.
286
Patrick McHardy9fafcd72006-12-02 22:09:57 -0800287config NF_CONNTRACK_SIP
Patrick McHardy8ce22fc2008-01-14 23:31:36 -0800288 tristate "SIP protocol support"
Patrick McHardy33b8e772007-12-17 22:47:05 -0800289 default m if NETFILTER_ADVANCED=n
Patrick McHardy9fafcd72006-12-02 22:09:57 -0800290 help
291 SIP is an application-layer control protocol that can establish,
292 modify, and terminate multimedia sessions (conferences) such as
293 Internet telephony calls. With the ip_conntrack_sip and
294 the nf_nat_sip modules you can support the protocol on a connection
295 tracking/NATing firewall.
296
297 To compile it as a module, choose M here. If unsure, say N.
298
Patrick McHardya536df32006-12-02 22:10:18 -0800299config NF_CONNTRACK_TFTP
Patrick McHardyc9386cf2007-01-04 12:16:06 -0800300 tristate "TFTP protocol support"
Patrick McHardy33b8e772007-12-17 22:47:05 -0800301 depends on NETFILTER_ADVANCED
Patrick McHardya536df32006-12-02 22:10:18 -0800302 help
303 TFTP connection tracking helper, this is required depending
304 on how restrictive your ruleset is.
305 If you are using a tftp client behind -j SNAT or -j MASQUERADING
306 you will need this.
307
308 To compile it as a module, choose M here. If unsure, say N.
309
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800310config NF_CT_NETLINK
Patrick McHardy8ce22fc2008-01-14 23:31:36 -0800311 tristate 'Connection tracking netlink interface'
Patrick McHardy2eeeba32007-12-05 01:31:52 -0800312 select NETFILTER_NETLINK
Patrick McHardy33b8e772007-12-17 22:47:05 -0800313 default m if NETFILTER_ADVANCED=n
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800314 help
315 This option enables support for a netlink-based userspace interface
316
Pablo Neira Ayuso50978462012-02-28 19:13:48 +0100317config NF_CT_NETLINK_TIMEOUT
318 tristate 'Connection tracking timeout tuning via Netlink'
319 select NETFILTER_NETLINK
320 depends on NETFILTER_ADVANCED
321 help
322 This option enables support for connection tracking timeout
323 fine-grain tuning. This allows you to attach specific timeout
324 policies to flows, instead of using the global timeout policy.
325
326 If unsure, say `N'.
327
Laszlo Attila Toth4b070662009-04-24 16:55:25 +0200328endif # NF_CONNTRACK
329
KOVACS Krisztian9ad2d742008-10-08 11:35:12 +0200330# transparent proxy support
331config NETFILTER_TPROXY
332 tristate "Transparent proxying support (EXPERIMENTAL)"
333 depends on EXPERIMENTAL
334 depends on IP_NF_MANGLE
335 depends on NETFILTER_ADVANCED
336 help
337 This option enables transparent proxying support, that is,
338 support for handling non-locally bound IPv4 TCP and UDP sockets.
339 For it to work you will have to configure certain iptables rules
340 and use policy routing. For more information on how to set it up
341 see Documentation/networking/tproxy.txt.
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_XTABLES
346 tristate "Netfilter Xtables support (required for ip_tables)"
Patrick McHardy33b8e772007-12-17 22:47:05 -0800347 default m if NETFILTER_ADVANCED=n
Harald Welte2e4e6a12006-01-12 13:30:04 -0800348 help
349 This is required if you intend to use any of ip_tables,
350 ip6_tables or arp_tables.
351
Jan Engelhardtc2df73d2008-10-08 11:35:18 +0200352if NETFILTER_XTABLES
353
Jan Engelhardt28b94982009-02-28 03:23:57 +0100354comment "Xtables combined modules"
355
356config NETFILTER_XT_MARK
357 tristate 'nfmark target and match support'
358 default m if NETFILTER_ADVANCED=n
359 ---help---
360 This option adds the "MARK" target and "mark" match.
361
362 Netfilter mark matching allows you to match packets based on the
363 "nfmark" value in the packet.
364 The target allows you to create rules in the "mangle" table which alter
365 the netfilter mark (nfmark) field associated with the packet.
366
367 Prior to routing, the nfmark can influence the routing method (see
368 "Use netfilter MARK value as routing key") and can also be used by
369 other subsystems to change their behavior.
370
Jan Engelhardtb8f00ba2010-02-26 14:20:32 +0100371config NETFILTER_XT_CONNMARK
372 tristate 'ctmark target and match support'
373 depends on NF_CONNTRACK
374 depends on NETFILTER_ADVANCED
375 select NF_CONNTRACK_MARK
376 ---help---
377 This option adds the "CONNMARK" target and "connmark" match.
378
379 Netfilter allows you to store a mark value per connection (a.k.a.
380 ctmark), similarly to the packet mark (nfmark). Using this
381 target and match, you can set and match on this mark.
382
Jozsef Kadlecsikd9567982011-02-01 15:56:00 +0100383config NETFILTER_XT_SET
384 tristate 'set target and match support'
385 depends on IP_SET
386 depends on NETFILTER_ADVANCED
387 help
388 This option adds the "SET" target and "set" match.
389
390 Using this target and match, you can add/delete and match
391 elements in the sets created by ipset(8).
392
393 To compile it as a module, choose M here. If unsure, say N.
394
Harald Welte2e4e6a12006-01-12 13:30:04 -0800395# alphabetically ordered list of targets
396
Jan Engelhardt44c58732010-02-26 14:14:22 +0100397comment "Xtables targets"
398
Thomas Graf43f393c2011-01-16 18:10:28 +0100399config NETFILTER_XT_TARGET_AUDIT
400 tristate "AUDIT target support"
401 depends on AUDIT
402 depends on NETFILTER_ADVANCED
403 ---help---
404 This option adds a 'AUDIT' target, which can be used to create
405 audit records for packets dropped/accepted.
406
407 To compileit as a module, choose M here. If unsure, say N.
408
Michael S. Tsirkinedf0e1f2010-07-15 17:20:46 +0200409config NETFILTER_XT_TARGET_CHECKSUM
410 tristate "CHECKSUM target support"
411 depends on IP_NF_MANGLE || IP6_NF_MANGLE
412 depends on NETFILTER_ADVANCED
413 ---help---
414 This option adds a `CHECKSUM' target, which can be used in the iptables mangle
415 table.
416
417 You can use this target to compute and fill in the checksum in
418 a packet that lacks a checksum. This is particularly useful,
419 if you need to work around old applications such as dhcp clients,
420 that do not work well with checksum offloads, but don't want to disable
421 checksum offload in your device.
422
423 To compile it as a module, choose M here. If unsure, say N.
424
Harald Welte2e4e6a12006-01-12 13:30:04 -0800425config NETFILTER_XT_TARGET_CLASSIFY
426 tristate '"CLASSIFY" target support'
Patrick McHardy33b8e772007-12-17 22:47:05 -0800427 depends on NETFILTER_ADVANCED
Harald Welte2e4e6a12006-01-12 13:30:04 -0800428 help
429 This option adds a `CLASSIFY' target, which enables the user to set
430 the priority of a packet. Some qdiscs can use this value for
431 classification, among these are:
432
433 atm, cbq, dsmark, pfifo_fast, htb, prio
434
435 To compile it as a module, choose M here. If unsure, say N.
436
437config NETFILTER_XT_TARGET_CONNMARK
438 tristate '"CONNMARK" target support'
Patrick McHardy587aa642007-03-14 16:37:25 -0700439 depends on NF_CONNTRACK
Patrick McHardy33b8e772007-12-17 22:47:05 -0800440 depends on NETFILTER_ADVANCED
Jan Engelhardtb8f00ba2010-02-26 14:20:32 +0100441 select NETFILTER_XT_CONNMARK
442 ---help---
443 This is a backwards-compat option for the user's convenience
444 (e.g. when running oldconfig). It selects
445 CONFIG_NETFILTER_XT_CONNMARK (combined connmark/CONNMARK module).
Harald Welte2e4e6a12006-01-12 13:30:04 -0800446
Jan Engelhardtaba0d342008-10-08 11:35:17 +0200447config NETFILTER_XT_TARGET_CONNSECMARK
448 tristate '"CONNSECMARK" target support'
Jan Engelhardtc2df73d2008-10-08 11:35:18 +0200449 depends on NF_CONNTRACK && NF_CONNTRACK_SECMARK
Jan Engelhardtaba0d342008-10-08 11:35:17 +0200450 default m if NETFILTER_ADVANCED=n
451 help
452 The CONNSECMARK target copies security markings from packets
453 to connections, and restores security markings from connections
454 to packets (if the packets are not already marked). This would
455 normally be used in conjunction with the SECMARK target.
456
457 To compile it as a module, choose M here. If unsure, say N.
458
Patrick McHardy84f3bb92010-02-03 17:17:06 +0100459config NETFILTER_XT_TARGET_CT
460 tristate '"CT" target support'
461 depends on NF_CONNTRACK
462 depends on IP_NF_RAW || IP6_NF_RAW
463 depends on NETFILTER_ADVANCED
464 help
465 This options adds a `CT' target, which allows to specify initial
466 connection tracking parameters like events to be delivered and
467 the helper to be used.
468
469 To compile it as a module, choose M here. If unsure, say N.
470
Yasuyuki Kozakaia4687012006-08-22 00:30:26 -0700471config NETFILTER_XT_TARGET_DSCP
Jan Engelhardtc9fd4962007-12-04 23:38:13 -0800472 tristate '"DSCP" and "TOS" target support'
Yasuyuki Kozakaia4687012006-08-22 00:30:26 -0700473 depends on IP_NF_MANGLE || IP6_NF_MANGLE
Patrick McHardy33b8e772007-12-17 22:47:05 -0800474 depends on NETFILTER_ADVANCED
Yasuyuki Kozakaia4687012006-08-22 00:30:26 -0700475 help
476 This option adds a `DSCP' target, which allows you to manipulate
477 the IPv4/IPv6 header DSCP field (differentiated services codepoint).
478
479 The DSCP field can have any value between 0x0 and 0x3f inclusive.
480
Jan Engelhardtc9fd4962007-12-04 23:38:13 -0800481 It also adds the "TOS" target, which allows you to create rules in
482 the "mangle" table which alter the Type Of Service field of an IPv4
Jan Engelhardt5c350e52007-12-04 23:39:09 -0800483 or the Priority field of an IPv6 packet, prior to routing.
Jan Engelhardtc9fd4962007-12-04 23:38:13 -0800484
Yasuyuki Kozakaia4687012006-08-22 00:30:26 -0700485 To compile it as a module, choose M here. If unsure, say N.
486
Jan Engelhardt563d36e2009-02-18 18:38:40 +0100487config NETFILTER_XT_TARGET_HL
488 tristate '"HL" hoplimit target support'
489 depends on IP_NF_MANGLE || IP6_NF_MANGLE
490 depends on NETFILTER_ADVANCED
491 ---help---
492 This option adds the "HL" (for IPv6) and "TTL" (for IPv4)
493 targets, which enable the user to change the
494 hoplimit/time-to-live value of the IP header.
495
496 While it is safe to decrement the hoplimit/TTL value, the
497 modules also allow to increment and set the hoplimit value of
498 the header to arbitrary values. This is EXTREMELY DANGEROUS
499 since you can easily create immortal packets that loop
500 forever on the network.
501
Luciano Coelho0902b462010-06-15 15:04:00 +0200502config NETFILTER_XT_TARGET_IDLETIMER
503 tristate "IDLETIMER target support"
504 depends on NETFILTER_ADVANCED
505 help
506
507 This option adds the `IDLETIMER' target. Each matching packet
508 resets the timer associated with label specified when the rule is
509 added. When the timer expires, it triggers a sysfs notification.
510 The remaining time for expiration can be read via sysfs.
511
512 To compile it as a module, choose M here. If unsure, say N.
513
Adam Nielsen268cb382009-02-20 10:55:14 +0100514config NETFILTER_XT_TARGET_LED
515 tristate '"LED" target support'
Alex Riesen3ae16f12009-04-06 17:09:43 +0200516 depends on LEDS_CLASS && LEDS_TRIGGERS
Adam Nielsen268cb382009-02-20 10:55:14 +0100517 depends on NETFILTER_ADVANCED
518 help
519 This option adds a `LED' target, which allows you to blink LEDs in
520 response to particular packets passing through your machine.
521
522 This can be used to turn a spare LED into a network activity LED,
523 which only flashes in response to FTP transfers, for example. Or
524 you could have an LED which lights up for a minute or two every time
525 somebody connects to your machine via SSH.
526
527 You will need support for the "led" class to make this work.
528
529 To create an LED trigger for incoming SSH traffic:
530 iptables -A INPUT -p tcp --dport 22 -j LED --led-trigger-id ssh --led-delay 1000
531
532 Then attach the new trigger to an LED on your system:
533 echo netfilter-ssh > /sys/class/leds/<ledname>/trigger
534
535 For more information on the LEDs available on your system, see
Paul Bolle395cf962011-08-15 02:02:26 +0200536 Documentation/leds/leds-class.txt
Adam Nielsen268cb382009-02-20 10:55:14 +0100537
Richard Weinberger6939c332012-02-10 23:10:52 +0100538config NETFILTER_XT_TARGET_LOG
539 tristate "LOG target support"
540 default m if NETFILTER_ADVANCED=n
541 help
542 This option adds a `LOG' target, which allows you to create rules in
543 any iptables table which records the packet header to the syslog.
544
545 To compile it as a module, choose M here. If unsure, say N.
546
Harald Welte2e4e6a12006-01-12 13:30:04 -0800547config NETFILTER_XT_TARGET_MARK
548 tristate '"MARK" target support'
Jan Engelhardt28b94982009-02-28 03:23:57 +0100549 depends on NETFILTER_ADVANCED
550 select NETFILTER_XT_MARK
551 ---help---
552 This is a backwards-compat option for the user's convenience
553 (e.g. when running oldconfig). It selects
554 CONFIG_NETFILTER_XT_MARK (combined mark/MARK module).
Harald Welte2e4e6a12006-01-12 13:30:04 -0800555
Patrick McHardybaf7b1e2006-11-29 02:35:38 +0100556config NETFILTER_XT_TARGET_NFLOG
557 tristate '"NFLOG" target support'
Patrick McHardy33b8e772007-12-17 22:47:05 -0800558 default m if NETFILTER_ADVANCED=n
Eric Leblond293a4f22008-12-10 17:24:33 -0800559 select NETFILTER_NETLINK_LOG
Patrick McHardybaf7b1e2006-11-29 02:35:38 +0100560 help
561 This option enables the NFLOG target, which allows to LOG
Eric Leblond293a4f22008-12-10 17:24:33 -0800562 messages through nfnetlink_log.
Patrick McHardybaf7b1e2006-11-29 02:35:38 +0100563
564 To compile it as a module, choose M here. If unsure, say N.
565
Jan Engelhardtaba0d342008-10-08 11:35:17 +0200566config NETFILTER_XT_TARGET_NFQUEUE
567 tristate '"NFQUEUE" target Support'
Jan Engelhardtaba0d342008-10-08 11:35:17 +0200568 depends on NETFILTER_ADVANCED
Florian Westphal5f2cafe2011-01-18 15:18:08 +0100569 select NETFILTER_NETLINK_QUEUE
Jan Engelhardtaba0d342008-10-08 11:35:17 +0200570 help
571 This target replaced the old obsolete QUEUE target.
572
573 As opposed to QUEUE, it supports 65535 different queues,
574 not just one.
575
576 To compile it as a module, choose M here. If unsure, say N.
577
Harald Welte2e4e6a12006-01-12 13:30:04 -0800578config NETFILTER_XT_TARGET_NOTRACK
579 tristate '"NOTRACK" target support'
Harald Welte2e4e6a12006-01-12 13:30:04 -0800580 depends on IP_NF_RAW || IP6_NF_RAW
Patrick McHardy587aa642007-03-14 16:37:25 -0700581 depends on NF_CONNTRACK
Harald Welte2e4e6a12006-01-12 13:30:04 -0800582 help
583 The NOTRACK target allows a select rule to specify
584 which packets *not* to enter the conntrack/NAT
585 subsystem with all the consequences (no ICMP error tracking,
586 no protocol helpers for the selected packets).
Patrick McHardy33b8e772007-12-17 22:47:05 -0800587
Harald Welte2e4e6a12006-01-12 13:30:04 -0800588 If you want to compile it as a module, say M here and read
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +0500589 <file:Documentation/kbuild/modules.txt>. If unsure, say `N'.
Harald Welte2e4e6a12006-01-12 13:30:04 -0800590
Patrick McHardy58590342007-12-04 23:40:05 -0800591config NETFILTER_XT_TARGET_RATEEST
592 tristate '"RATEEST" target support'
Patrick McHardyb26e76b2008-01-14 23:30:56 -0800593 depends on NETFILTER_ADVANCED
Patrick McHardy58590342007-12-04 23:40:05 -0800594 help
595 This option adds a `RATEEST' target, which allows to measure
596 rates similar to TC estimators. The `rateest' match can be
597 used to match on the measured rates.
598
599 To compile it as a module, choose M here. If unsure, say N.
600
Jan Engelhardte281b192010-04-19 14:17:47 +0200601config NETFILTER_XT_TARGET_TEE
Arnd Hannemannfe6fb552010-06-22 08:22:21 +0200602 tristate '"TEE" - packet cloning to alternate destination'
Jan Engelhardte281b192010-04-19 14:17:47 +0200603 depends on NETFILTER_ADVANCED
Jan Engelhardt9b7ce2b2010-05-12 10:11:35 +0000604 depends on (IPV6 || IPV6=n)
Randy Dunlap83827f62010-05-14 13:52:30 -0700605 depends on !NF_CONNTRACK || NF_CONNTRACK
Jan Engelhardte281b192010-04-19 14:17:47 +0200606 ---help---
607 This option adds a "TEE" target with which a packet can be cloned and
608 this clone be rerouted to another nexthop.
609
KOVACS Krisztiane8439272008-10-08 11:35:12 +0200610config NETFILTER_XT_TARGET_TPROXY
611 tristate '"TPROXY" target support (EXPERIMENTAL)'
612 depends on EXPERIMENTAL
613 depends on NETFILTER_TPROXY
614 depends on NETFILTER_XTABLES
615 depends on NETFILTER_ADVANCED
616 select NF_DEFRAG_IPV4
KOVACS Krisztianf6318e52010-10-24 23:38:32 +0000617 select NF_DEFRAG_IPV6 if IP6_NF_IPTABLES
KOVACS Krisztiane8439272008-10-08 11:35:12 +0200618 help
619 This option adds a `TPROXY' target, which is somewhat similar to
620 REDIRECT. It can only be used in the mangle table and is useful
621 to redirect traffic to a transparent proxy. It does _not_ depend
622 on Netfilter connection tracking and NAT, unlike REDIRECT.
623
624 To compile it as a module, choose M here. If unsure, say N.
625
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700626config NETFILTER_XT_TARGET_TRACE
627 tristate '"TRACE" target support'
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700628 depends on IP_NF_RAW || IP6_NF_RAW
Patrick McHardy33b8e772007-12-17 22:47:05 -0800629 depends on NETFILTER_ADVANCED
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700630 help
631 The TRACE target allows you to mark packets so that the kernel
632 will log every rule which match the packets as those traverse
633 the tables, chains, rules.
634
635 If you want to compile it as a module, say M here and read
Dirk Hohndele4031492007-10-30 13:37:19 -0700636 <file:Documentation/kbuild/modules.txt>. If unsure, say `N'.
Jozsef Kadlecsikba9dda32007-07-07 22:21:23 -0700637
James Morris5e6874cd2006-06-09 00:30:57 -0700638config NETFILTER_XT_TARGET_SECMARK
639 tristate '"SECMARK" target support'
Jan Engelhardtc2df73d2008-10-08 11:35:18 +0200640 depends on NETWORK_SECMARK
Patrick McHardy33b8e772007-12-17 22:47:05 -0800641 default m if NETFILTER_ADVANCED=n
James Morris5e6874cd2006-06-09 00:30:57 -0700642 help
643 The SECMARK target allows security marking of network
644 packets, for use with security subsystems.
645
646 To compile it as a module, choose M here. If unsure, say N.
647
Patrick McHardycdd289a2007-02-07 15:09:46 -0800648config NETFILTER_XT_TARGET_TCPMSS
649 tristate '"TCPMSS" target support'
Jan Engelhardtc2df73d2008-10-08 11:35:18 +0200650 depends on (IPV6 || IPV6=n)
Patrick McHardy33b8e772007-12-17 22:47:05 -0800651 default m if NETFILTER_ADVANCED=n
Patrick McHardycdd289a2007-02-07 15:09:46 -0800652 ---help---
653 This option adds a `TCPMSS' target, which allows you to alter the
654 MSS value of TCP SYN packets, to control the maximum size for that
655 connection (usually limiting it to your outgoing interface's MTU
656 minus 40).
657
658 This is used to overcome criminally braindead ISPs or servers which
659 block ICMP Fragmentation Needed packets. The symptoms of this
660 problem are that everything works fine from your Linux
661 firewall/router, but machines behind it can never exchange large
662 packets:
663 1) Web browsers connect, then hang with no data received.
664 2) Small mail works fine, but large emails hang.
665 3) ssh works fine, but scp hangs after initial handshaking.
666
667 Workaround: activate this option and add a rule to your firewall
668 configuration like:
669
670 iptables -A FORWARD -p tcp --tcp-flags SYN,RST SYN \
671 -j TCPMSS --clamp-mss-to-pmtu
672
673 To compile it as a module, choose M here. If unsure, say N.
674
Sven Schnelle338e8a72007-12-04 23:21:50 -0800675config NETFILTER_XT_TARGET_TCPOPTSTRIP
676 tristate '"TCPOPTSTRIP" target support (EXPERIMENTAL)'
Jan Engelhardtc2df73d2008-10-08 11:35:18 +0200677 depends on EXPERIMENTAL
Sven Schnelle338e8a72007-12-04 23:21:50 -0800678 depends on IP_NF_MANGLE || IP6_NF_MANGLE
Patrick McHardy33b8e772007-12-17 22:47:05 -0800679 depends on NETFILTER_ADVANCED
Sven Schnelle338e8a72007-12-04 23:21:50 -0800680 help
681 This option adds a "TCPOPTSTRIP" target, which allows you to strip
682 TCP options from TCP packets.
683
Jan Engelhardt44c58732010-02-26 14:14:22 +0100684# alphabetically ordered list of matches
685
686comment "Xtables matches"
687
Florian Westphalde81bbe2011-03-15 20:16:20 +0100688config NETFILTER_XT_MATCH_ADDRTYPE
689 tristate '"addrtype" address type match support'
690 depends on NETFILTER_ADVANCED
691 ---help---
692 This option allows you to match what routing thinks of an address,
693 eg. UNICAST, LOCAL, BROADCAST, ...
694
695 If you want to compile it as a module, say M here and read
696 <file:Documentation/kbuild/modules.txt>. If unsure, say `N'.
697
Pablo Neira Ayuso0269ea42009-03-16 17:10:36 +0100698config NETFILTER_XT_MATCH_CLUSTER
699 tristate '"cluster" match support'
700 depends on NF_CONNTRACK
701 depends on NETFILTER_ADVANCED
702 ---help---
703 This option allows you to build work-load-sharing clusters of
704 network servers/stateful firewalls without having a dedicated
705 load-balancing router/server/switch. Basically, this match returns
706 true when the packet must be handled by this cluster node. Thus,
707 all nodes see all packets and this match decides which node handles
708 what packets. The work-load sharing algorithm is based on source
709 address hashing.
710
711 If you say Y or M here, try `iptables -m cluster --help` for
712 more information.
713
Harald Welte2e4e6a12006-01-12 13:30:04 -0800714config NETFILTER_XT_MATCH_COMMENT
715 tristate '"comment" match support'
Patrick McHardy33b8e772007-12-17 22:47:05 -0800716 depends on NETFILTER_ADVANCED
Harald Welte2e4e6a12006-01-12 13:30:04 -0800717 help
718 This option adds a `comment' dummy-match, which allows you to put
719 comments in your iptables ruleset.
720
721 If you want to compile it as a module, say M here and read
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +0500722 <file:Documentation/kbuild/modules.txt>. If unsure, say `N'.
Harald Welte2e4e6a12006-01-12 13:30:04 -0800723
724config NETFILTER_XT_MATCH_CONNBYTES
725 tristate '"connbytes" per-connection counter match support'
Patrick McHardy587aa642007-03-14 16:37:25 -0700726 depends on NF_CONNTRACK
Patrick McHardy33b8e772007-12-17 22:47:05 -0800727 depends on NETFILTER_ADVANCED
Harald Welte2e4e6a12006-01-12 13:30:04 -0800728 help
729 This option adds a `connbytes' match, which allows you to match the
730 number of bytes and/or packets for each direction within a connection.
731
732 If you want to compile it as a module, say M here and read
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +0500733 <file:Documentation/kbuild/modules.txt>. If unsure, say `N'.
Harald Welte2e4e6a12006-01-12 13:30:04 -0800734
Jan Engelhardt370786f2007-07-14 20:47:26 -0700735config NETFILTER_XT_MATCH_CONNLIMIT
736 tristate '"connlimit" match support"'
Cornelia Huck3fd8f9e2007-07-18 02:38:32 -0700737 depends on NF_CONNTRACK
Patrick McHardy33b8e772007-12-17 22:47:05 -0800738 depends on NETFILTER_ADVANCED
Jan Engelhardt370786f2007-07-14 20:47:26 -0700739 ---help---
740 This match allows you to match against the number of parallel
741 connections to a server per client IP address (or address block).
742
Harald Welte2e4e6a12006-01-12 13:30:04 -0800743config NETFILTER_XT_MATCH_CONNMARK
744 tristate '"connmark" connection mark match support'
Patrick McHardy587aa642007-03-14 16:37:25 -0700745 depends on NF_CONNTRACK
Patrick McHardy33b8e772007-12-17 22:47:05 -0800746 depends on NETFILTER_ADVANCED
Jan Engelhardtb8f00ba2010-02-26 14:20:32 +0100747 select NETFILTER_XT_CONNMARK
748 ---help---
749 This is a backwards-compat option for the user's convenience
750 (e.g. when running oldconfig). It selects
751 CONFIG_NETFILTER_XT_CONNMARK (combined connmark/CONNMARK module).
Harald Welte2e4e6a12006-01-12 13:30:04 -0800752
753config NETFILTER_XT_MATCH_CONNTRACK
754 tristate '"conntrack" connection tracking match support'
Patrick McHardy587aa642007-03-14 16:37:25 -0700755 depends on NF_CONNTRACK
Patrick McHardy33b8e772007-12-17 22:47:05 -0800756 default m if NETFILTER_ADVANCED=n
Harald Welte2e4e6a12006-01-12 13:30:04 -0800757 help
758 This is a general conntrack match module, a superset of the state match.
759
760 It allows matching on additional conntrack information, which is
761 useful in complex configurations, such as NAT gateways with multiple
762 internet links or tunnels.
763
764 To compile it as a module, choose M here. If unsure, say N.
765
Eric Dumazete8648a12010-07-23 12:59:36 +0200766config NETFILTER_XT_MATCH_CPU
767 tristate '"cpu" match support'
768 depends on NETFILTER_ADVANCED
769 help
770 CPU matching allows you to match packets based on the CPU
771 currently handling the packet.
772
773 To compile it as a module, choose M here. If unsure, say N.
774
Harald Welte2e4e6a12006-01-12 13:30:04 -0800775config NETFILTER_XT_MATCH_DCCP
Jan Engelhardt4c377992007-12-04 23:31:59 -0800776 tristate '"dccp" protocol match support'
Patrick McHardy33b8e772007-12-17 22:47:05 -0800777 depends on NETFILTER_ADVANCED
Patrick McHardyf3261af2008-05-08 01:16:04 -0700778 default IP_DCCP
Harald Welte2e4e6a12006-01-12 13:30:04 -0800779 help
780 With this option enabled, you will be able to use the iptables
781 `dccp' match in order to match on DCCP source/destination ports
782 and DCCP flags.
783
784 If you want to compile it as a module, say M here and read
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +0500785 <file:Documentation/kbuild/modules.txt>. If unsure, say `N'.
Harald Welte2e4e6a12006-01-12 13:30:04 -0800786
Patrick McHardy92917472011-02-03 00:05:43 +0100787config NETFILTER_XT_MATCH_DEVGROUP
788 tristate '"devgroup" match support'
789 depends on NETFILTER_ADVANCED
790 help
791 This options adds a `devgroup' match, which allows to match on the
792 device group a network device is assigned to.
793
794 To compile it as a module, choose M here. If unsure, say N.
795
Yasuyuki Kozakai9ba16272006-08-22 00:29:37 -0700796config NETFILTER_XT_MATCH_DSCP
Jan Engelhardtc3b33e62007-12-04 23:37:54 -0800797 tristate '"dscp" and "tos" match support'
Patrick McHardy33b8e772007-12-17 22:47:05 -0800798 depends on NETFILTER_ADVANCED
Yasuyuki Kozakai9ba16272006-08-22 00:29:37 -0700799 help
800 This option adds a `DSCP' match, which allows you to match against
801 the IPv4/IPv6 header DSCP field (differentiated services codepoint).
802
803 The DSCP field can have any value between 0x0 and 0x3f inclusive.
804
Jan Engelhardtc3b33e62007-12-04 23:37:54 -0800805 It will also add a "tos" match, which allows you to match packets
806 based on the Type Of Service fields of the IPv4 packet (which share
807 the same bits as DSCP).
808
Yasuyuki Kozakai9ba16272006-08-22 00:29:37 -0700809 To compile it as a module, choose M here. If unsure, say N.
810
Jan Engelhardtd446a8202011-06-09 21:03:07 +0200811config NETFILTER_XT_MATCH_ECN
812 tristate '"ecn" match support'
813 depends on NETFILTER_ADVANCED
814 ---help---
815 This option adds an "ECN" match, which allows you to match against
816 the IPv4 and TCP header ECN fields.
817
818 To compile it as a module, choose M here. If unsure, say N.
819
Yasuyuki Kozakaidc5ab2f2006-04-01 02:22:30 -0800820config NETFILTER_XT_MATCH_ESP
Jan Engelhardt4c377992007-12-04 23:31:59 -0800821 tristate '"esp" match support'
Patrick McHardy33b8e772007-12-17 22:47:05 -0800822 depends on NETFILTER_ADVANCED
Yasuyuki Kozakaidc5ab2f2006-04-01 02:22:30 -0800823 help
824 This match extension allows you to match a range of SPIs
825 inside ESP header of IPSec packets.
826
827 To compile it as a module, choose M here. If unsure, say N.
828
Jan Engelhardtaba0d342008-10-08 11:35:17 +0200829config NETFILTER_XT_MATCH_HASHLIMIT
830 tristate '"hashlimit" match support'
Jan Engelhardtc2df73d2008-10-08 11:35:18 +0200831 depends on (IP6_NF_IPTABLES || IP6_NF_IPTABLES=n)
Jan Engelhardtaba0d342008-10-08 11:35:17 +0200832 depends on NETFILTER_ADVANCED
833 help
834 This option adds a `hashlimit' match.
835
836 As opposed to `limit', this match dynamically creates a hash table
837 of limit buckets, based on your selection of source/destination
838 addresses and/or ports.
839
840 It enables you to express policies like `10kpps for any given
841 destination address' or `500pps from any given source address'
842 with a single rule.
843
Harald Welte2e4e6a12006-01-12 13:30:04 -0800844config NETFILTER_XT_MATCH_HELPER
845 tristate '"helper" match support'
Patrick McHardy587aa642007-03-14 16:37:25 -0700846 depends on NF_CONNTRACK
Patrick McHardy33b8e772007-12-17 22:47:05 -0800847 depends on NETFILTER_ADVANCED
Harald Welte2e4e6a12006-01-12 13:30:04 -0800848 help
849 Helper matching allows you to match packets in dynamic connections
850 tracked by a conntrack-helper, ie. ip_conntrack_ftp
851
852 To compile it as a module, choose M here. If unsure, say Y.
853
Jan Engelhardtcfac5ef2009-02-18 18:39:31 +0100854config NETFILTER_XT_MATCH_HL
855 tristate '"hl" hoplimit/TTL match support'
856 depends on NETFILTER_ADVANCED
857 ---help---
858 HL matching allows you to match packets based on the hoplimit
859 in the IPv6 header, or the time-to-live field in the IPv4
860 header of the packet.
861
Jan Engelhardtf72e25a2008-01-14 23:42:47 -0800862config NETFILTER_XT_MATCH_IPRANGE
863 tristate '"iprange" address range match support'
Jan Engelhardtf72e25a2008-01-14 23:42:47 -0800864 depends on NETFILTER_ADVANCED
865 ---help---
866 This option adds a "iprange" match, which allows you to match based on
867 an IP address range. (Normal iptables only matches on single addresses
868 with an optional mask.)
869
870 If unsure, say M.
871
Hannes Eder9c3e1c32010-07-23 12:42:58 +0200872config NETFILTER_XT_MATCH_IPVS
873 tristate '"ipvs" match support'
874 depends on IP_VS
875 depends on NETFILTER_ADVANCED
876 depends on NF_CONNTRACK
877 help
878 This option allows you to match against IPVS properties of a packet.
879
880 If unsure, say N.
881
Harald Welte2e4e6a12006-01-12 13:30:04 -0800882config NETFILTER_XT_MATCH_LENGTH
883 tristate '"length" match support'
Patrick McHardy33b8e772007-12-17 22:47:05 -0800884 depends on NETFILTER_ADVANCED
Harald Welte2e4e6a12006-01-12 13:30:04 -0800885 help
886 This option allows you to match the length of a packet against a
887 specific value or range of values.
888
889 To compile it as a module, choose M here. If unsure, say N.
890
891config NETFILTER_XT_MATCH_LIMIT
892 tristate '"limit" match support'
Patrick McHardy33b8e772007-12-17 22:47:05 -0800893 depends on NETFILTER_ADVANCED
Harald Welte2e4e6a12006-01-12 13:30:04 -0800894 help
895 limit matching allows you to control the rate at which a rule can be
896 matched: mainly useful in combination with the LOG target ("LOG
897 target support", below) and to avoid some Denial of Service attacks.
898
899 To compile it as a module, choose M here. If unsure, say N.
900
901config NETFILTER_XT_MATCH_MAC
902 tristate '"mac" address match support'
Patrick McHardy33b8e772007-12-17 22:47:05 -0800903 depends on NETFILTER_ADVANCED
Harald Welte2e4e6a12006-01-12 13:30:04 -0800904 help
905 MAC matching allows you to match packets based on the source
906 Ethernet address of the packet.
907
908 To compile it as a module, choose M here. If unsure, say N.
909
910config NETFILTER_XT_MATCH_MARK
911 tristate '"mark" match support'
Jan Engelhardt28b94982009-02-28 03:23:57 +0100912 depends on NETFILTER_ADVANCED
913 select NETFILTER_XT_MARK
914 ---help---
915 This is a backwards-compat option for the user's convenience
916 (e.g. when running oldconfig). It selects
917 CONFIG_NETFILTER_XT_MARK (combined mark/MARK module).
Harald Welte2e4e6a12006-01-12 13:30:04 -0800918
Jan Engelhardtaba0d342008-10-08 11:35:17 +0200919config NETFILTER_XT_MATCH_MULTIPORT
920 tristate '"multiport" Multiple port match support'
Jan Engelhardtaba0d342008-10-08 11:35:17 +0200921 depends on NETFILTER_ADVANCED
922 help
923 Multiport matching allows you to match TCP or UDP packets based on
924 a series of source or destination ports: normally a rule can only
925 match a single range of ports.
926
927 To compile it as a module, choose M here. If unsure, say N.
928
Pablo Neira Ayusoceb98d02011-12-23 14:28:59 +0100929config NETFILTER_XT_MATCH_NFACCT
930 tristate '"nfacct" match support'
Pablo Neira Ayusobc94b522011-12-28 15:03:30 +0000931 depends on NETFILTER_ADVANCED
Pablo Neira Ayusoceb98d02011-12-23 14:28:59 +0100932 select NETFILTER_NETLINK_ACCT
933 help
934 This option allows you to use the extended accounting through
935 nfnetlink_acct.
936
937 To compile it as a module, choose M here. If unsure, say N.
938
Jan Engelhardt115bc8f2010-03-16 20:06:55 +0100939config NETFILTER_XT_MATCH_OSF
940 tristate '"osf" Passive OS fingerprint match'
941 depends on NETFILTER_ADVANCED && NETFILTER_NETLINK
942 help
943 This option selects the Passive OS Fingerprinting match module
944 that allows to passively match the remote operating system by
945 analyzing incoming TCP SYN packets.
946
947 Rules and loading software can be downloaded from
948 http://www.ioremap.net/projects/osf
949
950 To compile it as a module, choose M here. If unsure, say N.
951
Jan Engelhardt0265ab42007-12-04 23:27:38 -0800952config NETFILTER_XT_MATCH_OWNER
953 tristate '"owner" match support'
Patrick McHardy33b8e772007-12-17 22:47:05 -0800954 depends on NETFILTER_ADVANCED
Jan Engelhardt0265ab42007-12-04 23:27:38 -0800955 ---help---
956 Socket owner matching allows you to match locally-generated packets
957 based on who created the socket: the user or group. It is also
958 possible to check whether a socket actually exists.
959
Patrick McHardyc4b88512006-03-20 18:03:40 -0800960config NETFILTER_XT_MATCH_POLICY
961 tristate 'IPsec "policy" match support'
Jan Engelhardtc2df73d2008-10-08 11:35:18 +0200962 depends on XFRM
Patrick McHardy33b8e772007-12-17 22:47:05 -0800963 default m if NETFILTER_ADVANCED=n
Patrick McHardyc4b88512006-03-20 18:03:40 -0800964 help
965 Policy matching allows you to match packets based on the
966 IPsec policy that was used during decapsulation/will
967 be used during encapsulation.
968
969 To compile it as a module, choose M here. If unsure, say N.
970
Harald Welte2e4e6a12006-01-12 13:30:04 -0800971config NETFILTER_XT_MATCH_PHYSDEV
972 tristate '"physdev" match support'
Jan Engelhardtc2df73d2008-10-08 11:35:18 +0200973 depends on BRIDGE && BRIDGE_NETFILTER
Patrick McHardy33b8e772007-12-17 22:47:05 -0800974 depends on NETFILTER_ADVANCED
Harald Welte2e4e6a12006-01-12 13:30:04 -0800975 help
976 Physdev packet matching matches against the physical bridge ports
977 the IP packet arrived on or will leave by.
978
979 To compile it as a module, choose M here. If unsure, say N.
980
981config NETFILTER_XT_MATCH_PKTTYPE
982 tristate '"pkttype" packet type match support'
Patrick McHardy33b8e772007-12-17 22:47:05 -0800983 depends on NETFILTER_ADVANCED
Harald Welte2e4e6a12006-01-12 13:30:04 -0800984 help
985 Packet type matching allows you to match a packet by
986 its "class", eg. BROADCAST, MULTICAST, ...
987
988 Typical usage:
989 iptables -A INPUT -m pkttype --pkt-type broadcast -j LOG
990
991 To compile it as a module, choose M here. If unsure, say N.
992
Patrick McHardy62b77432006-05-29 18:20:32 -0700993config NETFILTER_XT_MATCH_QUOTA
994 tristate '"quota" match support'
Patrick McHardy33b8e772007-12-17 22:47:05 -0800995 depends on NETFILTER_ADVANCED
Patrick McHardy62b77432006-05-29 18:20:32 -0700996 help
997 This option adds a `quota' match, which allows to match on a
998 byte counter.
999
1000 If you want to compile it as a module, say M here and read
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +05001001 <file:Documentation/kbuild/modules.txt>. If unsure, say `N'.
Patrick McHardy62b77432006-05-29 18:20:32 -07001002
Patrick McHardy50c164a2007-12-04 13:02:19 +01001003config NETFILTER_XT_MATCH_RATEEST
1004 tristate '"rateest" match support'
Patrick McHardyb26e76b2008-01-14 23:30:56 -08001005 depends on NETFILTER_ADVANCED
Patrick McHardy50c164a2007-12-04 13:02:19 +01001006 select NETFILTER_XT_TARGET_RATEEST
1007 help
1008 This option adds a `rateest' match, which allows to match on the
1009 rate estimated by the RATEEST target.
1010
1011 To compile it as a module, choose M here. If unsure, say N.
1012
Harald Welte2e4e6a12006-01-12 13:30:04 -08001013config NETFILTER_XT_MATCH_REALM
1014 tristate '"realm" match support'
Patrick McHardy33b8e772007-12-17 22:47:05 -08001015 depends on NETFILTER_ADVANCED
Patrick McHardyc7066f72011-01-14 13:36:42 +01001016 select IP_ROUTE_CLASSID
Harald Welte2e4e6a12006-01-12 13:30:04 -08001017 help
1018 This option adds a `realm' match, which allows you to use the realm
1019 key from the routing subsystem inside iptables.
Patrick McHardy33b8e772007-12-17 22:47:05 -08001020
Harald Welte2e4e6a12006-01-12 13:30:04 -08001021 This match pretty much resembles the CONFIG_NET_CLS_ROUTE4 option
1022 in tc world.
Patrick McHardy33b8e772007-12-17 22:47:05 -08001023
Harald Welte2e4e6a12006-01-12 13:30:04 -08001024 If you want to compile it as a module, say M here and read
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +05001025 <file:Documentation/kbuild/modules.txt>. If unsure, say `N'.
Harald Welte2e4e6a12006-01-12 13:30:04 -08001026
Jan Engelhardte948b202008-10-08 11:35:00 +02001027config NETFILTER_XT_MATCH_RECENT
1028 tristate '"recent" match support'
Jan Engelhardte948b202008-10-08 11:35:00 +02001029 depends on NETFILTER_ADVANCED
1030 ---help---
1031 This match is used for creating one or many lists of recently
1032 used addresses and then matching against that/those list(s).
1033
1034 Short options are available by using 'iptables -m recent -h'
1035 Official Website: <http://snowman.net/projects/ipt_recent/>
1036
Harald Welte2e4e6a12006-01-12 13:30:04 -08001037config NETFILTER_XT_MATCH_SCTP
Patrick McHardyd5af9812006-07-24 22:55:29 -07001038 tristate '"sctp" protocol match support (EXPERIMENTAL)'
Jan Engelhardtc2df73d2008-10-08 11:35:18 +02001039 depends on EXPERIMENTAL
Patrick McHardy33b8e772007-12-17 22:47:05 -08001040 depends on NETFILTER_ADVANCED
Patrick McHardyf3261af2008-05-08 01:16:04 -07001041 default IP_SCTP
Harald Welte2e4e6a12006-01-12 13:30:04 -08001042 help
1043 With this option enabled, you will be able to use the
1044 `sctp' match in order to match on SCTP source/destination ports
1045 and SCTP chunk types.
1046
1047 If you want to compile it as a module, say M here and read
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +05001048 <file:Documentation/kbuild/modules.txt>. If unsure, say `N'.
Harald Welte2e4e6a12006-01-12 13:30:04 -08001049
KOVACS Krisztian136cdc72008-10-08 11:35:12 +02001050config NETFILTER_XT_MATCH_SOCKET
1051 tristate '"socket" match support (EXPERIMENTAL)'
1052 depends on EXPERIMENTAL
1053 depends on NETFILTER_TPROXY
1054 depends on NETFILTER_XTABLES
1055 depends on NETFILTER_ADVANCED
Laszlo Attila Tothacda0742009-05-01 15:23:10 -07001056 depends on !NF_CONNTRACK || NF_CONNTRACK
KOVACS Krisztian136cdc72008-10-08 11:35:12 +02001057 select NF_DEFRAG_IPV4
KOVACS Krisztianf6318e52010-10-24 23:38:32 +00001058 select NF_DEFRAG_IPV6 if IP6_NF_IPTABLES
KOVACS Krisztian136cdc72008-10-08 11:35:12 +02001059 help
1060 This option adds a `socket' match, which can be used to match
1061 packets for which a TCP or UDP socket lookup finds a valid socket.
1062 It can be used in combination with the MARK target and policy
1063 routing to implement full featured non-locally bound sockets.
1064
1065 To compile it as a module, choose M here. If unsure, say N.
1066
Harald Welte2e4e6a12006-01-12 13:30:04 -08001067config NETFILTER_XT_MATCH_STATE
1068 tristate '"state" match support'
Patrick McHardy587aa642007-03-14 16:37:25 -07001069 depends on NF_CONNTRACK
Patrick McHardy33b8e772007-12-17 22:47:05 -08001070 default m if NETFILTER_ADVANCED=n
Harald Welte2e4e6a12006-01-12 13:30:04 -08001071 help
1072 Connection state matching allows you to match packets based on their
1073 relationship to a tracked connection (ie. previous packets). This
1074 is a powerful tool for packet classification.
1075
1076 To compile it as a module, choose M here. If unsure, say N.
1077
Patrick McHardyf3389802006-05-29 18:21:00 -07001078config NETFILTER_XT_MATCH_STATISTIC
1079 tristate '"statistic" match support'
Patrick McHardy33b8e772007-12-17 22:47:05 -08001080 depends on NETFILTER_ADVANCED
Patrick McHardyf3389802006-05-29 18:21:00 -07001081 help
Patrick McHardy68c16922006-06-27 03:02:14 -07001082 This option adds a `statistic' match, which allows you to match
1083 on packets periodically or randomly with a given percentage.
1084
1085 To compile it as a module, choose M here. If unsure, say N.
Patrick McHardyf3389802006-05-29 18:21:00 -07001086
Harald Welte2e4e6a12006-01-12 13:30:04 -08001087config NETFILTER_XT_MATCH_STRING
1088 tristate '"string" match support'
Patrick McHardy33b8e772007-12-17 22:47:05 -08001089 depends on NETFILTER_ADVANCED
Harald Welte2e4e6a12006-01-12 13:30:04 -08001090 select TEXTSEARCH
1091 select TEXTSEARCH_KMP
1092 select TEXTSEARCH_BM
1093 select TEXTSEARCH_FSM
1094 help
1095 This option adds a `string' match, which allows you to look for
1096 pattern matchings in packets.
1097
1098 To compile it as a module, choose M here. If unsure, say N.
1099
1100config NETFILTER_XT_MATCH_TCPMSS
1101 tristate '"tcpmss" match support'
Patrick McHardy33b8e772007-12-17 22:47:05 -08001102 depends on NETFILTER_ADVANCED
Harald Welte2e4e6a12006-01-12 13:30:04 -08001103 help
1104 This option adds a `tcpmss' match, which allows you to examine the
1105 MSS value of TCP SYN packets, which control the maximum packet size
1106 for that connection.
1107
1108 To compile it as a module, choose M here. If unsure, say N.
1109
Jan Engelhardtee4411a2007-09-28 14:46:43 -07001110config NETFILTER_XT_MATCH_TIME
1111 tristate '"time" match support'
Patrick McHardy33b8e772007-12-17 22:47:05 -08001112 depends on NETFILTER_ADVANCED
Jan Engelhardtee4411a2007-09-28 14:46:43 -07001113 ---help---
1114 This option adds a "time" match, which allows you to match based on
1115 the packet arrival time (at the machine which netfilter is running)
1116 on) or departure time/date (for locally generated packets).
1117
1118 If you say Y here, try `iptables -m time --help` for
1119 more information.
1120
1121 If you want to compile it as a module, say M here.
1122 If unsure, say N.
1123
Jan Engelhardt1b50b8a2007-07-07 22:20:36 -07001124config NETFILTER_XT_MATCH_U32
1125 tristate '"u32" match support'
Patrick McHardy33b8e772007-12-17 22:47:05 -08001126 depends on NETFILTER_ADVANCED
Jan Engelhardt1b50b8a2007-07-07 22:20:36 -07001127 ---help---
1128 u32 allows you to extract quantities of up to 4 bytes from a packet,
1129 AND them with specified masks, shift them by specified amounts and
1130 test whether the results are in any of a set of specified ranges.
1131 The specification of what to extract is general enough to skip over
1132 headers with lengths stored in the packet, as in IP or TCP header
1133 lengths.
1134
1135 Details and examples are in the kernel module source.
1136
Jan Engelhardtc2df73d2008-10-08 11:35:18 +02001137endif # NETFILTER_XTABLES
Harald Weltea6c1cd572006-02-13 15:42:48 -08001138
Jan Engelhardtc2df73d2008-10-08 11:35:18 +02001139endmenu
Harald Weltef9e815b2005-08-09 19:30:24 -07001140
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +01001141source "net/netfilter/ipset/Kconfig"
1142
Julius Volzcb7f6a72008-09-19 12:32:57 +02001143source "net/netfilter/ipvs/Kconfig"