Kconfig 11.3 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7
#
# IP netfilter configuration
#

menu "IP: Netfilter Configuration"
	depends on INET && NETFILTER

8 9 10 11
config NF_DEFRAG_IPV4
	tristate
	default n

12
config NF_CONNTRACK_IPV4
13 14
	tristate "IPv4 connection tracking support (required for NAT)"
	depends on NF_CONNTRACK
15
	default m if NETFILTER_ADVANCED=n
16
	select NF_DEFRAG_IPV4
17 18 19 20 21 22 23 24 25 26 27
	---help---
	  Connection tracking keeps a record of what packets have passed
	  through your machine, in order to figure out how they are related
	  into connections.

	  This is IPv4 support on Layer 3 independent connection tracking.
	  Layer 3 independent connection tracking is experimental scheme
	  which generalize ip_conntrack to support other layer 3 protocols.

	  To compile it as a module, choose M here.  If unsure, say N.

28 29
config NF_CONNTRACK_PROC_COMPAT
	bool "proc/sysctl compatibility with old connection tracking"
30
	depends on NF_CONNTRACK_IPV4
31 32 33 34 35 36 37 38
	default y
	help
	  This option enables /proc and sysctl compatibility with the old
	  layer 3 dependant connection tracking. This is needed to keep
	  old programs that have not been adapted to the new names working.

	  If unsure, say Y.

L
Linus Torvalds 已提交
39
config IP_NF_QUEUE
40
	tristate "IP Userspace queueing via NETLINK (OBSOLETE)"
41
	depends on NETFILTER_ADVANCED
L
Linus Torvalds 已提交
42 43 44 45
	help
	  Netfilter has the ability to queue packets to user space: the
	  netlink device can be used to access them using this driver.

46 47 48 49
	  This option enables the old IPv4-only "ip_queue" implementation
	  which has been obsoleted by the new "nfnetlink_queue" code (see
	  CONFIG_NETFILTER_NETLINK_QUEUE).

L
Linus Torvalds 已提交
50 51 52 53
	  To compile it as a module, choose M here.  If unsure, say N.

config IP_NF_IPTABLES
	tristate "IP tables support (required for filtering/masq/NAT)"
54
	default m if NETFILTER_ADVANCED=n
55
	select NETFILTER_XTABLES
L
Linus Torvalds 已提交
56 57 58 59 60 61 62 63
	help
	  iptables is a general, extensible packet identification framework.
	  The packet filtering and full NAT (masquerading, port forwarding,
	  etc) subsystems now use this: say `Y' or `M' here if you want to use
	  either of those.

	  To compile it as a module, choose M here.  If unsure, say N.

64 65
if IP_NF_IPTABLES

L
Linus Torvalds 已提交
66
# The matches.
67 68
config IP_NF_MATCH_ADDRTYPE
	tristate '"addrtype" address type match support'
69
	depends on NETFILTER_ADVANCED
L
Linus Torvalds 已提交
70
	help
71 72
	  This option allows you to match what routing thinks of an address,
	  eg. UNICAST, LOCAL, BROADCAST, ...
L
Linus Torvalds 已提交
73

74 75
	  If you want to compile it as a module, say M here and read
	  <file:Documentation/kbuild/modules.txt>.  If unsure, say `N'.
L
Linus Torvalds 已提交
76

77
config IP_NF_MATCH_AH
78
	tristate '"ah" match support'
79
	depends on NETFILTER_ADVANCED
L
Linus Torvalds 已提交
80
	help
81 82
	  This match extension allows you to match a range of SPIs
	  inside AH header of IPSec packets.
L
Linus Torvalds 已提交
83 84 85

	  To compile it as a module, choose M here.  If unsure, say N.

86 87
config IP_NF_MATCH_ECN
	tristate '"ecn" match support'
88
	depends on NETFILTER_ADVANCED
L
Linus Torvalds 已提交
89
	help
90 91
	  This option adds a `ECN' match, which allows you to match against
	  the IPv4 and TCP header ECN fields.
L
Linus Torvalds 已提交
92 93 94 95 96 97

	  To compile it as a module, choose M here.  If unsure, say N.

# `filter', generic and specific targets
config IP_NF_FILTER
	tristate "Packet filtering"
98
	default m if NETFILTER_ADVANCED=n
L
Linus Torvalds 已提交
99 100 101 102 103 104 105 106 107 108
	help
	  Packet filtering defines a table `filter', which has a series of
	  rules for simple packet filtering at local input, forwarding and
	  local output.  See the man page for iptables(8).

	  To compile it as a module, choose M here.  If unsure, say N.

config IP_NF_TARGET_REJECT
	tristate "REJECT target support"
	depends on IP_NF_FILTER
109
	default m if NETFILTER_ADVANCED=n
L
Linus Torvalds 已提交
110 111 112 113 114 115 116 117 118
	help
	  The REJECT target allows a filtering rule to specify that an ICMP
	  error should be issued in response to an incoming packet, rather
	  than silently being dropped.

	  To compile it as a module, choose M here.  If unsure, say N.

config IP_NF_TARGET_LOG
	tristate "LOG target support"
119
	default m if NETFILTER_ADVANCED=n
L
Linus Torvalds 已提交
120 121 122 123 124 125 126
	help
	  This option adds a `LOG' target, which allows you to create rules in
	  any iptables table which records the packet header to the syslog.

	  To compile it as a module, choose M here.  If unsure, say N.

config IP_NF_TARGET_ULOG
127
	tristate "ULOG target support"
128
	default m if NETFILTER_ADVANCED=n
L
Linus Torvalds 已提交
129
	---help---
130 131 132 133 134

	  This option enables the old IPv4-only "ipt_ULOG" implementation
	  which has been obsoleted by the new "nfnetlink_log" code (see
	  CONFIG_NETFILTER_NETLINK_LOG).

L
Linus Torvalds 已提交
135 136 137 138 139
	  This option adds a `ULOG' target, which allows you to create rules in
	  any iptables table. The packet is passed to a userspace logging
	  daemon using netlink multicast sockets; unlike the LOG target
	  which can only be viewed through syslog.

M
Matt LaPlante 已提交
140
	  The appropriate userspace logging daemon (ulogd) may be obtained from
L
Linus Torvalds 已提交
141 142 143 144
	  <http://www.gnumonks.org/projects/ulogd/>

	  To compile it as a module, choose M here.  If unsure, say N.

145 146 147
# NAT + specific targets: nf_conntrack
config NF_NAT
	tristate "Full NAT"
148
	depends on NF_CONNTRACK_IPV4
149
	default m if NETFILTER_ADVANCED=n
150 151 152 153 154 155 156 157 158 159
	help
	  The Full NAT option allows masquerading, port forwarding and other
	  forms of full Network Address Port Translation.  It is controlled by
	  the `nat' table in iptables: see the man page for iptables(8).

	  To compile it as a module, choose M here.  If unsure, say N.

config NF_NAT_NEEDED
	bool
	depends on NF_NAT
L
Linus Torvalds 已提交
160 161 162 163
	default y

config IP_NF_TARGET_MASQUERADE
	tristate "MASQUERADE target support"
164
	depends on NF_NAT
165
	default m if NETFILTER_ADVANCED=n
L
Linus Torvalds 已提交
166 167 168 169 170 171 172 173 174
	help
	  Masquerading is a special case of NAT: all outgoing connections are
	  changed to seem to come from a particular interface's address, and
	  if the interface goes down, those connections are lost.  This is
	  only useful for dialup accounts with dynamic IP address (ie. your IP
	  address will be different on next dialup).

	  To compile it as a module, choose M here.  If unsure, say N.

175 176
config IP_NF_TARGET_NETMAP
	tristate "NETMAP target support"
177
	depends on NF_NAT
178
	depends on NETFILTER_ADVANCED
L
Linus Torvalds 已提交
179
	help
180 181 182
	  NETMAP is an implementation of static 1:1 NAT mapping of network
	  addresses. It maps the network address part, while keeping the host
	  address part intact.
L
Linus Torvalds 已提交
183 184 185

	  To compile it as a module, choose M here.  If unsure, say N.

186 187
config IP_NF_TARGET_REDIRECT
	tristate "REDIRECT target support"
188
	depends on NF_NAT
189
	depends on NETFILTER_ADVANCED
L
Linus Torvalds 已提交
190
	help
191 192 193 194
	  REDIRECT is a special case of NAT: all incoming connections are
	  mapped onto the incoming interface's address, causing the packets to
	  come to the local machine instead of passing through.  This is
	  useful for transparent proxies.
L
Linus Torvalds 已提交
195 196 197

	  To compile it as a module, choose M here.  If unsure, say N.

198
config NF_NAT_SNMP_BASIC
199 200
	tristate "Basic SNMP-ALG support"
	depends on NF_NAT
201
	depends on NETFILTER_ADVANCED
202 203 204 205
	---help---

	  This module implements an Application Layer Gateway (ALG) for
	  SNMP payloads.  In conjunction with NAT, it allows a network
L
Linus Torvalds 已提交
206 207 208 209 210 211 212 213
	  management system to access multiple private networks with
	  conflicting addresses.  It works by modifying IP addresses
	  inside SNMP payloads to match IP-layer NAT mapping.

	  This is the "basic" form of SNMP-ALG, as described in RFC 2962

	  To compile it as a module, choose M here.  If unsure, say N.

214 215 216 217 218 219 220
# If they want FTP, set to $CONFIG_IP_NF_NAT (m or y),
# or $CONFIG_IP_NF_FTP (m or y), whichever is weaker.
# From kconfig-language.txt:
#
#           <expr> '&&' <expr>                   (6)
#
# (6) Returns the result of min(/expr/, /expr/).
221 222 223 224 225
config NF_NAT_PROTO_DCCP
	tristate
	depends on NF_NAT && NF_CT_PROTO_DCCP
	default NF_NAT && NF_CT_PROTO_DCCP

226 227 228 229
config NF_NAT_PROTO_GRE
	tristate
	depends on NF_NAT && NF_CT_PROTO_GRE

230 231 232 233 234
config NF_NAT_PROTO_UDPLITE
	tristate
	depends on NF_NAT && NF_CT_PROTO_UDPLITE
	default NF_NAT && NF_CT_PROTO_UDPLITE

235 236 237 238
config NF_NAT_PROTO_SCTP
	tristate
	default NF_NAT && NF_CT_PROTO_SCTP
	depends on NF_NAT && NF_CT_PROTO_SCTP
P
Patrick McHardy 已提交
239
	select LIBCRC32C
240

241 242
config NF_NAT_FTP
	tristate
243
	depends on NF_CONNTRACK && NF_NAT
244 245
	default NF_NAT && NF_CONNTRACK_FTP

246 247
config NF_NAT_IRC
	tristate
248
	depends on NF_CONNTRACK && NF_NAT
249 250
	default NF_NAT && NF_CONNTRACK_IRC

251 252
config NF_NAT_TFTP
	tristate
253
	depends on NF_CONNTRACK && NF_NAT
254 255
	default NF_NAT && NF_CONNTRACK_TFTP

256 257
config NF_NAT_AMANDA
	tristate
258
	depends on NF_CONNTRACK && NF_NAT
259 260
	default NF_NAT && NF_CONNTRACK_AMANDA

261 262
config NF_NAT_PPTP
	tristate
263
	depends on NF_CONNTRACK && NF_NAT
264 265 266
	default NF_NAT && NF_CONNTRACK_PPTP
	select NF_NAT_PROTO_GRE

267 268
config NF_NAT_H323
	tristate
269
	depends on NF_CONNTRACK && NF_NAT
270 271
	default NF_NAT && NF_CONNTRACK_H323

272 273
config NF_NAT_SIP
	tristate
274
	depends on NF_CONNTRACK && NF_NAT
275 276
	default NF_NAT && NF_CONNTRACK_SIP

L
Linus Torvalds 已提交
277 278 279
# mangle + specific targets
config IP_NF_MANGLE
	tristate "Packet mangling"
280
	default m if NETFILTER_ADVANCED=n
L
Linus Torvalds 已提交
281 282 283 284 285 286 287
	help
	  This option adds a `mangle' table to iptables: see the man page for
	  iptables(8).  This table is used for various packet alterations
	  which can effect how the packet is routed.

	  To compile it as a module, choose M here.  If unsure, say N.

288 289 290 291 292 293 294 295 296 297 298 299 300
config IP_NF_TARGET_CLUSTERIP
	tristate "CLUSTERIP target support (EXPERIMENTAL)"
	depends on IP_NF_MANGLE && EXPERIMENTAL
	depends on NF_CONNTRACK_IPV4
	depends on NETFILTER_ADVANCED
	select NF_CONNTRACK_MARK
	help
	  The CLUSTERIP target allows you to build load-balancing clusters of
	  network servers without having a dedicated load-balancing
	  router/server/switch.
	
	  To compile it as a module, choose M here.  If unsure, say N.

L
Linus Torvalds 已提交
301 302 303
config IP_NF_TARGET_ECN
	tristate "ECN target support"
	depends on IP_NF_MANGLE
304
	depends on NETFILTER_ADVANCED
L
Linus Torvalds 已提交
305 306 307 308 309 310 311 312 313 314 315 316 317 318
	---help---
	  This option adds a `ECN' target, which can be used in the iptables mangle
	  table.  

	  You can use this target to remove the ECN bits from the IPv4 header of
	  an IP packet.  This is particularly useful, if you need to work around
	  existing ECN blackholes on the internet, but don't want to disable
	  ECN support in general.

	  To compile it as a module, choose M here.  If unsure, say N.

# raw + specific targets
config IP_NF_RAW
	tristate  'raw table support (required for NOTRACK/TRACE)'
319
	depends on NETFILTER_ADVANCED
L
Linus Torvalds 已提交
320 321 322 323 324 325
	help
	  This option adds a `raw' table to iptables. This table is the very
	  first in the netfilter framework and hooks in at the PREROUTING
	  and OUTPUT chains.
	
	  If you want to compile it as a module, say M here and read
326
	  <file:Documentation/kbuild/modules.txt>.  If unsure, say `N'.
327 328 329 330 331

# security table for MAC policy
config IP_NF_SECURITY
	tristate "Security table"
	depends on SECURITY
332
	depends on NETFILTER_ADVANCED
333 334 335 336 337
	help
	  This option adds a `security' table to iptables, for use
	  with Mandatory Access Control (MAC) policy.
	 
	  If unsure, say N.
L
Linus Torvalds 已提交
338

339 340
endif # IP_NF_IPTABLES

L
Linus Torvalds 已提交
341 342 343
# ARP tables
config IP_NF_ARPTABLES
	tristate "ARP tables support"
344
	select NETFILTER_XTABLES
345
	depends on NETFILTER_ADVANCED
L
Linus Torvalds 已提交
346 347 348 349 350 351 352
	help
	  arptables is a general, extensible packet identification framework.
	  The ARP packet filtering and mangling (manipulation)subsystems
	  use this: say Y or M here if you want to use either of those.

	  To compile it as a module, choose M here.  If unsure, say N.

353 354
if IP_NF_ARPTABLES

L
Linus Torvalds 已提交
355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370
config IP_NF_ARPFILTER
	tristate "ARP packet filtering"
	help
	  ARP packet filtering defines a table `filter', which has a series of
	  rules for simple ARP packet filtering at local input and
	  local output.  On a bridge, you can also specify filtering rules
	  for forwarded ARP packets. See the man page for arptables(8).

	  To compile it as a module, choose M here.  If unsure, say N.

config IP_NF_ARP_MANGLE
	tristate "ARP payload mangling"
	help
	  Allows altering the ARP packet payload: source and destination
	  hardware and network addresses.

371 372
endif # IP_NF_ARPTABLES

L
Linus Torvalds 已提交
373 374
endmenu