hc
2024-08-16 62c46c9150c4afde7e5b25436263fddf79d66f0b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
# SPDX-License-Identifier: GPL-2.0-only
#
# IP netfilter configuration
#
 
menu "IP: Netfilter Configuration"
   depends on INET && NETFILTER
 
config NF_DEFRAG_IPV4
   tristate
   default n
 
config NF_SOCKET_IPV4
   tristate "IPv4 socket lookup support"
   help
     This option enables the IPv4 socket lookup infrastructure. This is
     is required by the {ip,nf}tables socket match.
 
config NF_TPROXY_IPV4
   tristate "IPv4 tproxy support"
 
if NF_TABLES
 
config NF_TABLES_IPV4
   bool "IPv4 nf_tables support"
   help
     This option enables the IPv4 support for nf_tables.
 
if NF_TABLES_IPV4
 
config NFT_REJECT_IPV4
   select NF_REJECT_IPV4
   default NFT_REJECT
   tristate
 
config NFT_DUP_IPV4
   tristate "IPv4 nf_tables packet duplication support"
   depends on !NF_CONNTRACK || NF_CONNTRACK
   select NF_DUP_IPV4
   help
     This module enables IPv4 packet duplication support for nf_tables.
 
config NFT_FIB_IPV4
   select NFT_FIB
   tristate "nf_tables fib / ip route lookup support"
   help
     This module enables IPv4 FIB lookups, e.g. for reverse path filtering.
     It also allows query of the FIB for the route type, e.g. local, unicast,
     multicast or blackhole.
 
endif # NF_TABLES_IPV4
 
config NF_TABLES_ARP
   bool "ARP nf_tables support"
   select NETFILTER_FAMILY_ARP
   help
     This option enables the ARP support for nf_tables.
 
endif # NF_TABLES
 
config NF_FLOW_TABLE_IPV4
   tristate "Netfilter flow table IPv4 module"
   depends on NF_FLOW_TABLE
   help
     This option adds the flow table IPv4 support.
 
     To compile it as a module, choose M here.
 
config NF_DUP_IPV4
   tristate "Netfilter IPv4 packet duplication to alternate destination"
   depends on !NF_CONNTRACK || NF_CONNTRACK
   help
     This option enables the nf_dup_ipv4 core, which duplicates an IPv4
     packet to be rerouted to another destination.
 
config NF_LOG_ARP
   tristate "ARP packet logging"
   default m if NETFILTER_ADVANCED=n
   select NF_LOG_COMMON
 
config NF_LOG_IPV4
   tristate "IPv4 packet logging"
   default m if NETFILTER_ADVANCED=n
   select NF_LOG_COMMON
 
config NF_REJECT_IPV4
   tristate "IPv4 packet rejection"
   default m if NETFILTER_ADVANCED=n
 
if NF_NAT
config NF_NAT_SNMP_BASIC
   tristate "Basic SNMP-ALG support"
   depends on NF_CONNTRACK_SNMP
   depends on NETFILTER_ADVANCED
   default NF_NAT && NF_CONNTRACK_SNMP
   select ASN1
   help
 
     This module implements an Application Layer Gateway (ALG) for
     SNMP payloads.  In conjunction with NAT, it allows a network
     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.
 
config NF_NAT_PPTP
   tristate
   depends on NF_CONNTRACK
   default NF_CONNTRACK_PPTP
 
config NF_NAT_H323
   tristate
   depends on NF_CONNTRACK
   default NF_CONNTRACK_H323
 
endif # NF_NAT
 
config IP_NF_IPTABLES
   tristate "IP tables support (required for filtering/masq/NAT)"
   default m if NETFILTER_ADVANCED=n
   select NETFILTER_XTABLES
   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.
 
if IP_NF_IPTABLES
 
# The matches.
config IP_NF_MATCH_AH
   tristate '"ah" match support'
   depends on NETFILTER_ADVANCED
   help
     This match extension allows you to match a range of SPIs
     inside AH header of IPSec packets.
 
     To compile it as a module, choose M here.  If unsure, say N.
 
config IP_NF_MATCH_ECN
   tristate '"ecn" match support'
   depends on NETFILTER_ADVANCED
   select NETFILTER_XT_MATCH_ECN
   help
   This is a backwards-compat option for the user's convenience
   (e.g. when running oldconfig). It selects
   CONFIG_NETFILTER_XT_MATCH_ECN.
 
config IP_NF_MATCH_RPFILTER
   tristate '"rpfilter" reverse path filter match support'
   depends on NETFILTER_ADVANCED
   depends on IP_NF_MANGLE || IP_NF_RAW
   help
     This option allows you to match packets whose replies would
     go out via the interface the packet came in.
 
     To compile it as a module, choose M here.  If unsure, say N.
     The module will be called ipt_rpfilter.
 
config IP_NF_MATCH_TTL
   tristate '"ttl" match support'
   depends on NETFILTER_ADVANCED
   select NETFILTER_XT_MATCH_HL
   help
   This is a backwards-compat option for the user's convenience
   (e.g. when running oldconfig). It selects
   CONFIG_NETFILTER_XT_MATCH_HL.
 
# `filter', generic and specific targets
config IP_NF_FILTER
   tristate "Packet filtering"
   default m if NETFILTER_ADVANCED=n
   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
   select NF_REJECT_IPV4
   default m if NETFILTER_ADVANCED=n
   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_SYNPROXY
   tristate "SYNPROXY target support"
   depends on NF_CONNTRACK && NETFILTER_ADVANCED
   select NETFILTER_SYNPROXY
   select SYN_COOKIES
   help
     The SYNPROXY target allows you to intercept TCP connections and
     establish them using syncookies before they are passed on to the
     server. This allows to avoid conntrack and server resource usage
     during SYN-flood attacks.
 
     To compile it as a module, choose M here. If unsure, say N.
 
# NAT + specific targets: nf_conntrack
config IP_NF_NAT
   tristate "iptables NAT support"
   depends on NF_CONNTRACK
   default m if NETFILTER_ADVANCED=n
   select NF_NAT
   select NETFILTER_XT_NAT
   help
     This enables the `nat' table in iptables. This allows masquerading,
     port forwarding and other forms of full Network Address Port
     Translation.
 
     To compile it as a module, choose M here.  If unsure, say N.
 
if IP_NF_NAT
 
config IP_NF_TARGET_MASQUERADE
   tristate "MASQUERADE target support"
   select NETFILTER_XT_TARGET_MASQUERADE
   help
     This is a backwards-compat option for the user's convenience
     (e.g. when running oldconfig). It selects NETFILTER_XT_TARGET_MASQUERADE.
 
config IP_NF_TARGET_NETMAP
   tristate "NETMAP target support"
   depends on NETFILTER_ADVANCED
   select NETFILTER_XT_TARGET_NETMAP
   help
   This is a backwards-compat option for the user's convenience
   (e.g. when running oldconfig). It selects
   CONFIG_NETFILTER_XT_TARGET_NETMAP.
 
config IP_NF_TARGET_REDIRECT
   tristate "REDIRECT target support"
   depends on NETFILTER_ADVANCED
   select NETFILTER_XT_TARGET_REDIRECT
   help
   This is a backwards-compat option for the user's convenience
   (e.g. when running oldconfig). It selects
   CONFIG_NETFILTER_XT_TARGET_REDIRECT.
 
endif # IP_NF_NAT
 
# mangle + specific targets
config IP_NF_MANGLE
   tristate "Packet mangling"
   default m if NETFILTER_ADVANCED=n
   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.
 
config IP_NF_TARGET_CLUSTERIP
   tristate "CLUSTERIP target support"
   depends on IP_NF_MANGLE
   depends on NF_CONNTRACK
   depends on NETFILTER_ADVANCED
   select NF_CONNTRACK_MARK
   select NETFILTER_FAMILY_ARP
   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.
 
config IP_NF_TARGET_ECN
   tristate "ECN target support"
   depends on IP_NF_MANGLE
   depends on NETFILTER_ADVANCED
   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.
 
config IP_NF_TARGET_TTL
   tristate '"TTL" target support'
   depends on NETFILTER_ADVANCED && IP_NF_MANGLE
   select NETFILTER_XT_TARGET_HL
   help
   This is a backwards-compatible option for the user's convenience
   (e.g. when running oldconfig). It selects
   CONFIG_NETFILTER_XT_TARGET_HL.
 
# raw + specific targets
config IP_NF_RAW
   tristate  'raw table support (required for NOTRACK/TRACE)'
   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
     <file:Documentation/kbuild/modules.rst>.  If unsure, say `N'.
 
# security table for MAC policy
config IP_NF_SECURITY
   tristate "Security table"
   depends on SECURITY
   depends on NETFILTER_ADVANCED
   help
     This option adds a `security' table to iptables, for use
     with Mandatory Access Control (MAC) policy.
 
     If unsure, say N.
 
endif # IP_NF_IPTABLES
 
# ARP tables
config IP_NF_ARPTABLES
   tristate "ARP tables support"
   select NETFILTER_XTABLES
   select NETFILTER_FAMILY_ARP
   depends on NETFILTER_ADVANCED
   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.
 
if IP_NF_ARPTABLES
 
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.
 
endif # IP_NF_ARPTABLES
 
endmenu