blob: c558f32142553683a780078140928813f8ffc451 [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
5 tristate "Netfilter netlink interface"
6 help
7 If this option is enabled, the kernel will include support
8 for the new netfilter netlink interface.
Harald Welte7af4cc32005-08-09 19:44:15 -07009
10config NETFILTER_NETLINK_QUEUE
11 tristate "Netfilter NFQUEUE over NFNETLINK interface"
12 depends on NETFILTER_NETLINK
13 help
Thomas Vögtle50b521a2006-03-22 13:53:48 -080014 If this option is enabled, the kernel will include support
Harald Welte7af4cc32005-08-09 19:44:15 -070015 for queueing packets via NFNETLINK.
16
Harald Welte0597f262005-08-09 19:58:39 -070017config NETFILTER_NETLINK_LOG
18 tristate "Netfilter LOG over NFNETLINK interface"
19 depends on NETFILTER_NETLINK
20 help
21 If this option is enabled, the kernel will include support
22 for logging packets via NFNETLINK.
23
24 This obsoletes the existing ipt_ULOG and ebg_ulog mechanisms,
25 and is also scheduled to replace the old syslog-based ipt_LOG
26 and ip6t_LOG modules.
27
Patrick McHardy587aa642007-03-14 16:37:25 -070028# Rename this to NF_CONNTRACK in a 2.6.25
Patrick McHardyb321e142006-12-02 22:05:46 -080029config NF_CONNTRACK_ENABLED
30 tristate "Netfilter connection tracking support"
31 help
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080032 Connection tracking keeps a record of what packets have passed
33 through your machine, in order to figure out how they are related
34 into connections.
35
Patrick McHardyb321e142006-12-02 22:05:46 -080036 This is required to do Masquerading or other kinds of Network
37 Address Translation (except for Fast NAT). It can also be used to
38 enhance packet filtering (see `Connection state match support'
39 below).
40
41 To compile it as a module, choose M here. If unsure, say N.
42
Patrick McHardyb321e142006-12-02 22:05:46 -080043config NF_CONNTRACK
44 tristate
Patrick McHardy587aa642007-03-14 16:37:25 -070045 default NF_CONNTRACK_ENABLED
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080046
47config NF_CT_ACCT
48 bool "Connection tracking flow accounting"
49 depends on NF_CONNTRACK
50 help
51 If this option is enabled, the connection tracking code will
52 keep per-flow packet and byte counters.
53
54 Those counters can be used for flow-based accounting or the
55 `connbytes' match.
56
57 If unsure, say `N'.
58
59config NF_CONNTRACK_MARK
60 bool 'Connection mark tracking support'
61 depends on NF_CONNTRACK
62 help
63 This option enables support for connection marks, used by the
64 `CONNMARK' target and `connmark' match. Similar to the mark value
65 of packets, but this mark value is kept in the conntrack session
66 instead of the individual packets.
67
James Morris7c9728c2006-06-09 00:31:46 -070068config NF_CONNTRACK_SECMARK
69 bool 'Connection tracking security mark support'
70 depends on NF_CONNTRACK && NETWORK_SECMARK
71 help
72 This option enables security markings to be applied to
73 connections. Typically they are copied to connections from
74 packets using the CONNSECMARK target and copied back from
75 connections to packets with the same target, with the packets
76 being originally labeled via SECMARK.
77
78 If unsure, say 'N'.
79
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080080config NF_CONNTRACK_EVENTS
Patrick McHardya7957562005-12-05 13:36:25 -080081 bool "Connection tracking events (EXPERIMENTAL)"
82 depends on EXPERIMENTAL && NF_CONNTRACK
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080083 help
84 If this option is enabled, the connection tracking code will
85 provide a notifier chain that can be used by other kernel code
Thomas Vögtle50b521a2006-03-22 13:53:48 -080086 to get notified about changes in the connection tracking state.
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080087
88 If unsure, say `N'.
89
Patrick McHardyf09943f2006-12-02 22:09:41 -080090config NF_CT_PROTO_GRE
91 tristate
Patrick McHardyc9386cf2007-01-04 12:16:06 -080092 depends on NF_CONNTRACK
Patrick McHardyf09943f2006-12-02 22:09:41 -080093
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080094config NF_CT_PROTO_SCTP
Patrick McHardya3c47972006-12-02 22:11:01 -080095 tristate 'SCTP protocol connection tracking support (EXPERIMENTAL)'
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -080096 depends on EXPERIMENTAL && NF_CONNTRACK
97 default n
98 help
99 With this option enabled, the layer 3 independent connection
100 tracking code will be able to do state tracking on SCTP connections.
101
102 If you want to compile it as a module, say M here and read
103 Documentation/modules.txt. If unsure, say `N'.
104
Patrick McHardy16958902006-12-02 22:08:26 -0800105config NF_CONNTRACK_AMANDA
Patrick McHardyc9386cf2007-01-04 12:16:06 -0800106 tristate "Amanda backup protocol support"
107 depends on NF_CONNTRACK
Patrick McHardy16958902006-12-02 22:08:26 -0800108 select TEXTSEARCH
109 select TEXTSEARCH_KMP
110 help
111 If you are running the Amanda backup package <http://www.amanda.org/>
112 on this machine or machines that will be MASQUERADED through this
113 machine, then you may want to enable this feature. This allows the
114 connection tracking and natting code to allow the sub-channels that
115 Amanda requires for communication of the backup data, messages and
116 index.
117
118 To compile it as a module, choose M here. If unsure, say N.
119
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800120config NF_CONNTRACK_FTP
Patrick McHardyc9386cf2007-01-04 12:16:06 -0800121 tristate "FTP protocol support"
122 depends on NF_CONNTRACK
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800123 help
124 Tracking FTP connections is problematic: special helpers are
125 required for tracking them, and doing masquerading and other forms
126 of Network Address Translation on them.
127
128 This is FTP support on Layer 3 independent connection tracking.
129 Layer 3 independent connection tracking is experimental scheme
130 which generalize ip_conntrack to support other layer 3 protocols.
131
132 To compile it as a module, choose M here. If unsure, say N.
133
Patrick McHardyf587de02006-12-02 22:08:46 -0800134config NF_CONNTRACK_H323
135 tristate "H.323 protocol support (EXPERIMENTAL)"
Adrian Bunk3e821982007-02-02 19:33:52 -0800136 depends on EXPERIMENTAL && NF_CONNTRACK && (IPV6 || IPV6=n)
Patrick McHardyf587de02006-12-02 22:08:46 -0800137 help
138 H.323 is a VoIP signalling protocol from ITU-T. As one of the most
139 important VoIP protocols, it is widely used by voice hardware and
140 software including voice gateways, IP phones, Netmeeting, OpenPhone,
141 Gnomemeeting, etc.
142
143 With this module you can support H.323 on a connection tracking/NAT
144 firewall.
145
146 This module supports RAS, Fast Start, H.245 Tunnelling, Call
147 Forwarding, RTP/RTCP and T.120 based audio, video, fax, chat,
148 whiteboard, file transfer, etc. For more information, please
149 visit http://nath323.sourceforge.net/.
150
151 To compile it as a module, choose M here. If unsure, say N.
152
Patrick McHardy869f37d2006-12-02 22:09:06 -0800153config NF_CONNTRACK_IRC
Patrick McHardyc9386cf2007-01-04 12:16:06 -0800154 tristate "IRC protocol support"
155 depends on NF_CONNTRACK
Patrick McHardy869f37d2006-12-02 22:09:06 -0800156 help
157 There is a commonly-used extension to IRC called
158 Direct Client-to-Client Protocol (DCC). This enables users to send
159 files to each other, and also chat to each other without the need
160 of a server. DCC Sending is used anywhere you send files over IRC,
161 and DCC Chat is most commonly used by Eggdrop bots. If you are
162 using NAT, this extension will enable you to send files and initiate
163 chats. Note that you do NOT need this extension to get files or
164 have others initiate chats, or everything else in IRC.
165
166 To compile it as a module, choose M here. If unsure, say N.
167
Patrick McHardy92703ee2006-12-02 22:09:24 -0800168config NF_CONNTRACK_NETBIOS_NS
169 tristate "NetBIOS name service protocol support (EXPERIMENTAL)"
170 depends on EXPERIMENTAL && NF_CONNTRACK
171 help
172 NetBIOS name service requests are sent as broadcast messages from an
173 unprivileged port and responded to with unicast messages to the
174 same port. This make them hard to firewall properly because connection
175 tracking doesn't deal with broadcasts. This helper tracks locally
176 originating NetBIOS name service requests and the corresponding
177 responses. It relies on correct IP address configuration, specifically
178 netmask and broadcast address. When properly configured, the output
179 of "ip address show" should look similar to this:
180
181 $ ip -4 address show eth0
182 4: eth0: <BROADCAST,MULTICAST,UP> mtu 1500 qdisc pfifo_fast qlen 1000
183 inet 172.16.2.252/24 brd 172.16.2.255 scope global eth0
184
185 To compile it as a module, choose M here. If unsure, say N.
186
Patrick McHardyf09943f2006-12-02 22:09:41 -0800187config NF_CONNTRACK_PPTP
Patrick McHardyc9386cf2007-01-04 12:16:06 -0800188 tristate "PPtP protocol support"
189 depends on NF_CONNTRACK
Patrick McHardyf09943f2006-12-02 22:09:41 -0800190 select NF_CT_PROTO_GRE
191 help
192 This module adds support for PPTP (Point to Point Tunnelling
193 Protocol, RFC2637) connection tracking and NAT.
194
195 If you are running PPTP sessions over a stateful firewall or NAT
196 box, you may want to enable this feature.
197
198 Please note that not all PPTP modes of operation are supported yet.
199 Specifically these limitations exist:
200 - Blindy assumes that control connections are always established
201 in PNS->PAC direction. This is a violation of RFC2637.
202 - Only supports a single call within each session
203
204 To compile it as a module, choose M here. If unsure, say N.
205
Michal Schmidt6fecd192007-02-07 15:05:12 -0800206config NF_CONNTRACK_SANE
207 tristate "SANE protocol support (EXPERIMENTAL)"
208 depends on EXPERIMENTAL && NF_CONNTRACK
209 help
210 SANE is a protocol for remote access to scanners as implemented
211 by the 'saned' daemon. Like FTP, it uses separate control and
212 data connections.
213
214 With this module you can support SANE on a connection tracking
215 firewall.
216
217 To compile it as a module, choose M here. If unsure, say N.
218
Patrick McHardy9fafcd72006-12-02 22:09:57 -0800219config NF_CONNTRACK_SIP
220 tristate "SIP protocol support (EXPERIMENTAL)"
221 depends on EXPERIMENTAL && NF_CONNTRACK
222 help
223 SIP is an application-layer control protocol that can establish,
224 modify, and terminate multimedia sessions (conferences) such as
225 Internet telephony calls. With the ip_conntrack_sip and
226 the nf_nat_sip modules you can support the protocol on a connection
227 tracking/NATing firewall.
228
229 To compile it as a module, choose M here. If unsure, say N.
230
Patrick McHardya536df32006-12-02 22:10:18 -0800231config NF_CONNTRACK_TFTP
Patrick McHardyc9386cf2007-01-04 12:16:06 -0800232 tristate "TFTP protocol support"
233 depends on NF_CONNTRACK
Patrick McHardya536df32006-12-02 22:10:18 -0800234 help
235 TFTP connection tracking helper, this is required depending
236 on how restrictive your ruleset is.
237 If you are using a tftp client behind -j SNAT or -j MASQUERADING
238 you will need this.
239
240 To compile it as a module, choose M here. If unsure, say N.
241
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800242config NF_CT_NETLINK
243 tristate 'Connection tracking netlink interface (EXPERIMENTAL)'
244 depends on EXPERIMENTAL && NF_CONNTRACK && NETFILTER_NETLINK
245 depends on NF_CONNTRACK!=y || NETFILTER_NETLINK!=m
Patrick McHardyca8fbb82007-03-22 12:29:57 -0700246 depends on NF_NAT=n || NF_NAT
Pablo Neira Ayusoc1d10ad2006-01-05 12:19:05 -0800247 help
248 This option enables support for a netlink-based userspace interface
249
Harald Welte2e4e6a12006-01-12 13:30:04 -0800250config NETFILTER_XTABLES
251 tristate "Netfilter Xtables support (required for ip_tables)"
252 help
253 This is required if you intend to use any of ip_tables,
254 ip6_tables or arp_tables.
255
256# alphabetically ordered list of targets
257
258config NETFILTER_XT_TARGET_CLASSIFY
259 tristate '"CLASSIFY" target support'
260 depends on NETFILTER_XTABLES
261 help
262 This option adds a `CLASSIFY' target, which enables the user to set
263 the priority of a packet. Some qdiscs can use this value for
264 classification, among these are:
265
266 atm, cbq, dsmark, pfifo_fast, htb, prio
267
268 To compile it as a module, choose M here. If unsure, say N.
269
270config NETFILTER_XT_TARGET_CONNMARK
271 tristate '"CONNMARK" target support'
272 depends on NETFILTER_XTABLES
273 depends on IP_NF_MANGLE || IP6_NF_MANGLE
Patrick McHardy587aa642007-03-14 16:37:25 -0700274 depends on NF_CONNTRACK
275 select NF_CONNTRACK_MARK
Harald Welte2e4e6a12006-01-12 13:30:04 -0800276 help
277 This option adds a `CONNMARK' target, which allows one to manipulate
278 the connection mark value. Similar to the MARK target, but
279 affects the connection mark value rather than the packet mark value.
280
281 If you want to compile it as a module, say M here and read
282 <file:Documentation/modules.txt>. The module will be called
283 ipt_CONNMARK.o. If unsure, say `N'.
284
Yasuyuki Kozakaia4687012006-08-22 00:30:26 -0700285config NETFILTER_XT_TARGET_DSCP
286 tristate '"DSCP" target support'
287 depends on NETFILTER_XTABLES
288 depends on IP_NF_MANGLE || IP6_NF_MANGLE
289 help
290 This option adds a `DSCP' target, which allows you to manipulate
291 the IPv4/IPv6 header DSCP field (differentiated services codepoint).
292
293 The DSCP field can have any value between 0x0 and 0x3f inclusive.
294
295 To compile it as a module, choose M here. If unsure, say N.
296
Harald Welte2e4e6a12006-01-12 13:30:04 -0800297config NETFILTER_XT_TARGET_MARK
298 tristate '"MARK" target support'
299 depends on NETFILTER_XTABLES
300 help
301 This option adds a `MARK' target, which allows you to create rules
302 in the `mangle' table which alter the netfilter mark (nfmark) field
303 associated with the packet prior to routing. This can change
304 the routing method (see `Use netfilter MARK value as routing
305 key') and can also be used by other subsystems to change their
306 behavior.
307
308 To compile it as a module, choose M here. If unsure, say N.
309
310config NETFILTER_XT_TARGET_NFQUEUE
311 tristate '"NFQUEUE" target Support'
312 depends on NETFILTER_XTABLES
313 help
Thomas Vögtle50b521a2006-03-22 13:53:48 -0800314 This target replaced the old obsolete QUEUE target.
Harald Welte2e4e6a12006-01-12 13:30:04 -0800315
316 As opposed to QUEUE, it supports 65535 different queues,
317 not just one.
318
319 To compile it as a module, choose M here. If unsure, say N.
320
Patrick McHardybaf7b1e2006-11-29 02:35:38 +0100321config NETFILTER_XT_TARGET_NFLOG
322 tristate '"NFLOG" target support'
323 depends on NETFILTER_XTABLES
324 help
325 This option enables the NFLOG target, which allows to LOG
326 messages through the netfilter logging API, which can use
327 either the old LOG target, the old ULOG target or nfnetlink_log
328 as backend.
329
330 To compile it as a module, choose M here. If unsure, say N.
331
Harald Welte2e4e6a12006-01-12 13:30:04 -0800332config NETFILTER_XT_TARGET_NOTRACK
333 tristate '"NOTRACK" target support'
334 depends on NETFILTER_XTABLES
335 depends on IP_NF_RAW || IP6_NF_RAW
Patrick McHardy587aa642007-03-14 16:37:25 -0700336 depends on NF_CONNTRACK
Harald Welte2e4e6a12006-01-12 13:30:04 -0800337 help
338 The NOTRACK target allows a select rule to specify
339 which packets *not* to enter the conntrack/NAT
340 subsystem with all the consequences (no ICMP error tracking,
341 no protocol helpers for the selected packets).
342
343 If you want to compile it as a module, say M here and read
344 <file:Documentation/modules.txt>. If unsure, say `N'.
345
James Morris5e6874cd2006-06-09 00:30:57 -0700346config NETFILTER_XT_TARGET_SECMARK
347 tristate '"SECMARK" target support'
348 depends on NETFILTER_XTABLES && NETWORK_SECMARK
349 help
350 The SECMARK target allows security marking of network
351 packets, for use with security subsystems.
352
353 To compile it as a module, choose M here. If unsure, say N.
354
James Morris100468e2006-06-09 00:32:39 -0700355config NETFILTER_XT_TARGET_CONNSECMARK
356 tristate '"CONNSECMARK" target support'
Patrick McHardy587aa642007-03-14 16:37:25 -0700357 depends on NETFILTER_XTABLES && NF_CONNTRACK && NF_CONNTRACK_SECMARK
James Morris100468e2006-06-09 00:32:39 -0700358 help
359 The CONNSECMARK target copies security markings from packets
360 to connections, and restores security markings from connections
361 to packets (if the packets are not already marked). This would
362 normally be used in conjunction with the SECMARK target.
363
364 To compile it as a module, choose M here. If unsure, say N.
365
Patrick McHardycdd289a2007-02-07 15:09:46 -0800366config NETFILTER_XT_TARGET_TCPMSS
367 tristate '"TCPMSS" target support'
368 depends on NETFILTER_XTABLES && (IPV6 || IPV6=n)
369 ---help---
370 This option adds a `TCPMSS' target, which allows you to alter the
371 MSS value of TCP SYN packets, to control the maximum size for that
372 connection (usually limiting it to your outgoing interface's MTU
373 minus 40).
374
375 This is used to overcome criminally braindead ISPs or servers which
376 block ICMP Fragmentation Needed packets. The symptoms of this
377 problem are that everything works fine from your Linux
378 firewall/router, but machines behind it can never exchange large
379 packets:
380 1) Web browsers connect, then hang with no data received.
381 2) Small mail works fine, but large emails hang.
382 3) ssh works fine, but scp hangs after initial handshaking.
383
384 Workaround: activate this option and add a rule to your firewall
385 configuration like:
386
387 iptables -A FORWARD -p tcp --tcp-flags SYN,RST SYN \
388 -j TCPMSS --clamp-mss-to-pmtu
389
390 To compile it as a module, choose M here. If unsure, say N.
391
Harald Welte2e4e6a12006-01-12 13:30:04 -0800392config NETFILTER_XT_MATCH_COMMENT
393 tristate '"comment" match support'
394 depends on NETFILTER_XTABLES
395 help
396 This option adds a `comment' dummy-match, which allows you to put
397 comments in your iptables ruleset.
398
399 If you want to compile it as a module, say M here and read
400 <file:Documentation/modules.txt>. If unsure, say `N'.
401
402config NETFILTER_XT_MATCH_CONNBYTES
403 tristate '"connbytes" per-connection counter match support'
404 depends on NETFILTER_XTABLES
Patrick McHardy587aa642007-03-14 16:37:25 -0700405 depends on NF_CONNTRACK
406 select NF_CT_ACCT
Harald Welte2e4e6a12006-01-12 13:30:04 -0800407 help
408 This option adds a `connbytes' match, which allows you to match the
409 number of bytes and/or packets for each direction within a connection.
410
411 If you want to compile it as a module, say M here and read
412 <file:Documentation/modules.txt>. If unsure, say `N'.
413
414config NETFILTER_XT_MATCH_CONNMARK
415 tristate '"connmark" connection mark match support'
416 depends on NETFILTER_XTABLES
Patrick McHardy587aa642007-03-14 16:37:25 -0700417 depends on NF_CONNTRACK
418 select NF_CONNTRACK_MARK
Harald Welte2e4e6a12006-01-12 13:30:04 -0800419 help
420 This option adds a `connmark' match, which allows you to match the
421 connection mark value previously set for the session by `CONNMARK'.
422
423 If you want to compile it as a module, say M here and read
424 <file:Documentation/modules.txt>. The module will be called
425 ipt_connmark.o. If unsure, say `N'.
426
427config NETFILTER_XT_MATCH_CONNTRACK
428 tristate '"conntrack" connection tracking match support'
429 depends on NETFILTER_XTABLES
Patrick McHardy587aa642007-03-14 16:37:25 -0700430 depends on NF_CONNTRACK
Harald Welte2e4e6a12006-01-12 13:30:04 -0800431 help
432 This is a general conntrack match module, a superset of the state match.
433
434 It allows matching on additional conntrack information, which is
435 useful in complex configurations, such as NAT gateways with multiple
436 internet links or tunnels.
437
438 To compile it as a module, choose M here. If unsure, say N.
439
440config NETFILTER_XT_MATCH_DCCP
441 tristate '"DCCP" protocol match support'
442 depends on NETFILTER_XTABLES
443 help
444 With this option enabled, you will be able to use the iptables
445 `dccp' match in order to match on DCCP source/destination ports
446 and DCCP flags.
447
448 If you want to compile it as a module, say M here and read
449 <file:Documentation/modules.txt>. If unsure, say `N'.
450
Yasuyuki Kozakai9ba16272006-08-22 00:29:37 -0700451config NETFILTER_XT_MATCH_DSCP
452 tristate '"DSCP" match support'
453 depends on NETFILTER_XTABLES
454 help
455 This option adds a `DSCP' match, which allows you to match against
456 the IPv4/IPv6 header DSCP field (differentiated services codepoint).
457
458 The DSCP field can have any value between 0x0 and 0x3f inclusive.
459
460 To compile it as a module, choose M here. If unsure, say N.
461
Yasuyuki Kozakaidc5ab2f2006-04-01 02:22:30 -0800462config NETFILTER_XT_MATCH_ESP
463 tristate '"ESP" match support'
464 depends on NETFILTER_XTABLES
465 help
466 This match extension allows you to match a range of SPIs
467 inside ESP header of IPSec packets.
468
469 To compile it as a module, choose M here. If unsure, say N.
470
Harald Welte2e4e6a12006-01-12 13:30:04 -0800471config NETFILTER_XT_MATCH_HELPER
472 tristate '"helper" match support'
473 depends on NETFILTER_XTABLES
Patrick McHardy587aa642007-03-14 16:37:25 -0700474 depends on NF_CONNTRACK
Harald Welte2e4e6a12006-01-12 13:30:04 -0800475 help
476 Helper matching allows you to match packets in dynamic connections
477 tracked by a conntrack-helper, ie. ip_conntrack_ftp
478
479 To compile it as a module, choose M here. If unsure, say Y.
480
481config NETFILTER_XT_MATCH_LENGTH
482 tristate '"length" match support'
483 depends on NETFILTER_XTABLES
484 help
485 This option allows you to match the length of a packet against a
486 specific value or range of values.
487
488 To compile it as a module, choose M here. If unsure, say N.
489
490config NETFILTER_XT_MATCH_LIMIT
491 tristate '"limit" match support'
492 depends on NETFILTER_XTABLES
493 help
494 limit matching allows you to control the rate at which a rule can be
495 matched: mainly useful in combination with the LOG target ("LOG
496 target support", below) and to avoid some Denial of Service attacks.
497
498 To compile it as a module, choose M here. If unsure, say N.
499
500config NETFILTER_XT_MATCH_MAC
501 tristate '"mac" address match support'
502 depends on NETFILTER_XTABLES
503 help
504 MAC matching allows you to match packets based on the source
505 Ethernet address of the packet.
506
507 To compile it as a module, choose M here. If unsure, say N.
508
509config NETFILTER_XT_MATCH_MARK
510 tristate '"mark" match support'
511 depends on NETFILTER_XTABLES
512 help
513 Netfilter mark matching allows you to match packets based on the
514 `nfmark' value in the packet. This can be set by the MARK target
515 (see below).
516
517 To compile it as a module, choose M here. If unsure, say N.
518
Patrick McHardyc4b88512006-03-20 18:03:40 -0800519config NETFILTER_XT_MATCH_POLICY
520 tristate 'IPsec "policy" match support'
521 depends on NETFILTER_XTABLES && XFRM
522 help
523 Policy matching allows you to match packets based on the
524 IPsec policy that was used during decapsulation/will
525 be used during encapsulation.
526
527 To compile it as a module, choose M here. If unsure, say N.
528
Yasuyuki Kozakaia89ecb62006-04-01 02:22:54 -0800529config NETFILTER_XT_MATCH_MULTIPORT
530 tristate "Multiple port match support"
531 depends on NETFILTER_XTABLES
532 help
533 Multiport matching allows you to match TCP or UDP packets based on
534 a series of source or destination ports: normally a rule can only
535 match a single range of ports.
536
537 To compile it as a module, choose M here. If unsure, say N.
538
Harald Welte2e4e6a12006-01-12 13:30:04 -0800539config NETFILTER_XT_MATCH_PHYSDEV
540 tristate '"physdev" match support'
Patrick McHardyf1da7062006-10-02 16:10:47 -0700541 depends on NETFILTER_XTABLES && BRIDGE && BRIDGE_NETFILTER
Harald Welte2e4e6a12006-01-12 13:30:04 -0800542 help
543 Physdev packet matching matches against the physical bridge ports
544 the IP packet arrived on or will leave by.
545
546 To compile it as a module, choose M here. If unsure, say N.
547
548config NETFILTER_XT_MATCH_PKTTYPE
549 tristate '"pkttype" packet type match support'
550 depends on NETFILTER_XTABLES
551 help
552 Packet type matching allows you to match a packet by
553 its "class", eg. BROADCAST, MULTICAST, ...
554
555 Typical usage:
556 iptables -A INPUT -m pkttype --pkt-type broadcast -j LOG
557
558 To compile it as a module, choose M here. If unsure, say N.
559
Patrick McHardy62b77432006-05-29 18:20:32 -0700560config NETFILTER_XT_MATCH_QUOTA
561 tristate '"quota" match support'
562 depends on NETFILTER_XTABLES
563 help
564 This option adds a `quota' match, which allows to match on a
565 byte counter.
566
567 If you want to compile it as a module, say M here and read
568 <file:Documentation/modules.txt>. If unsure, say `N'.
569
Harald Welte2e4e6a12006-01-12 13:30:04 -0800570config NETFILTER_XT_MATCH_REALM
571 tristate '"realm" match support'
572 depends on NETFILTER_XTABLES
573 select NET_CLS_ROUTE
574 help
575 This option adds a `realm' match, which allows you to use the realm
576 key from the routing subsystem inside iptables.
577
578 This match pretty much resembles the CONFIG_NET_CLS_ROUTE4 option
579 in tc world.
580
581 If you want to compile it as a module, say M here and read
582 <file:Documentation/modules.txt>. If unsure, say `N'.
583
584config NETFILTER_XT_MATCH_SCTP
Patrick McHardyd5af9812006-07-24 22:55:29 -0700585 tristate '"sctp" protocol match support (EXPERIMENTAL)'
586 depends on NETFILTER_XTABLES && EXPERIMENTAL
Harald Welte2e4e6a12006-01-12 13:30:04 -0800587 help
588 With this option enabled, you will be able to use the
589 `sctp' match in order to match on SCTP source/destination ports
590 and SCTP chunk types.
591
592 If you want to compile it as a module, say M here and read
593 <file:Documentation/modules.txt>. If unsure, say `N'.
594
595config NETFILTER_XT_MATCH_STATE
596 tristate '"state" match support'
597 depends on NETFILTER_XTABLES
Patrick McHardy587aa642007-03-14 16:37:25 -0700598 depends on NF_CONNTRACK
Harald Welte2e4e6a12006-01-12 13:30:04 -0800599 help
600 Connection state matching allows you to match packets based on their
601 relationship to a tracked connection (ie. previous packets). This
602 is a powerful tool for packet classification.
603
604 To compile it as a module, choose M here. If unsure, say N.
605
Patrick McHardyf3389802006-05-29 18:21:00 -0700606config NETFILTER_XT_MATCH_STATISTIC
607 tristate '"statistic" match support'
608 depends on NETFILTER_XTABLES
609 help
Patrick McHardy68c16922006-06-27 03:02:14 -0700610 This option adds a `statistic' match, which allows you to match
611 on packets periodically or randomly with a given percentage.
612
613 To compile it as a module, choose M here. If unsure, say N.
Patrick McHardyf3389802006-05-29 18:21:00 -0700614
Harald Welte2e4e6a12006-01-12 13:30:04 -0800615config NETFILTER_XT_MATCH_STRING
616 tristate '"string" match support'
617 depends on NETFILTER_XTABLES
618 select TEXTSEARCH
619 select TEXTSEARCH_KMP
620 select TEXTSEARCH_BM
621 select TEXTSEARCH_FSM
622 help
623 This option adds a `string' match, which allows you to look for
624 pattern matchings in packets.
625
626 To compile it as a module, choose M here. If unsure, say N.
627
628config NETFILTER_XT_MATCH_TCPMSS
629 tristate '"tcpmss" match support'
630 depends on NETFILTER_XTABLES
631 help
632 This option adds a `tcpmss' match, which allows you to examine the
633 MSS value of TCP SYN packets, which control the maximum packet size
634 for that connection.
635
636 To compile it as a module, choose M here. If unsure, say N.
637
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100638config NETFILTER_XT_MATCH_HASHLIMIT
639 tristate '"hashlimit" match support'
Patrick McHardy2e553022007-01-30 21:36:09 -0800640 depends on NETFILTER_XTABLES && (IP6_NF_IPTABLES || IP6_NF_IPTABLES=n)
Patrick McHardy39b46fc2006-11-29 02:35:36 +0100641 help
642 This option adds a `hashlimit' match.
643
644 As opposed to `limit', this match dynamically creates a hash table
645 of limit buckets, based on your selection of source/destination
646 addresses and/or ports.
647
648 It enables you to express policies like `10kpps for any given
649 destination address' or `500pps from any given source address'
650 with a single rule.
651
Harald Weltea6c1cd572006-02-13 15:42:48 -0800652endmenu
653