summaryrefslogtreecommitdiffstats
path: root/rules/iptables.in
blob: bcd96a2346e7145135e745e4dcbad327c5118cf4 (plain)
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
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
## SECTION=networking
# FIXME: audit which extensions are still there

menuconfig IPTABLES
	tristate
	prompt "iptables                      "
	help
	  Iptables  is used to set up, maintain, and inspect the
	  tables of IP packet filter rules in the Linux kernel.
	  Several different tables may be defined.  Each table
	  contains a number of built-in chains and may also
	  contain user-defined chains.

if IPTABLES

config IPTABLES_INSTALL_IP6TABLES
	bool
	prompt "install ip6tables"
	help
	  install the IPv6 Version of iptables

config IPTABLES_INSTALL_IPTABLES
	bool
	prompt "install iptables"
	help
	  install the IPv4 Version of iptables

config IPTABLES_INSTALL_IPTABLES_RESTORE
	bool
	prompt "install iptables-restore"
	help
	  The iptables-restore command is used to restore
	  the iptables rule-set that was saved with the
	  iptables-save command.

config IPTABLES_INSTALL_IPTABLES_SAVE
	bool
	prompt "install iptables-save"
	help
	  The iptables-save command is a tool to save
	  the current rule-set into a file that
	  iptables-restore can use.

comment "----------------------------------"

config IPTABLES_INSTALL_libipt_addrtype
	bool
	prompt "install libipt_addrtype.so"
	depends on IPTABLES_INSTALL_IPTABLES
	help
	  FIXME: This item needs to be documented

config IPTABLES_INSTALL_libipt_ah
	bool
	prompt "install libipt_ah.so"
	depends on IPTABLES_INSTALL_IPTABLES
	help
	  FIXME: This item needs to be documented

config IPTABLES_INSTALL_libipt_CLUSTERIP
	bool
	depends on BROKEN
	prompt "install libipt_CLUSTERIP.so"
	depends on IPTABLES_INSTALL_IPTABLES
	help
	  FIXME: This item needs to be documented

config IPTABLES_INSTALL_libipt_connbytes
	bool
	depends on BROKEN
	prompt "install libipt_connbytes.so"
	depends on IPTABLES_INSTALL_IPTABLES
	help
	  FIXME: This item needs to be documented

config IPTABLES_INSTALL_libipt_dccp
	bool
	depends on BROKEN
	prompt "install libipt_dccp.so"
	depends on IPTABLES_INSTALL_IPTABLES
	help
	  FIXME: This item needs to be documented

config IPTABLES_INSTALL_libipt_DF
	bool
	depends on BROKEN
	prompt "install libipt_DF.so"
	depends on IPTABLES_INSTALL_IPTABLES
	help
	  FIXME: This item needs to be documented

config IPTABLES_INSTALL_libipt_DNAT
	bool
	prompt "install libipt_DNAT.so"
	depends on IPTABLES_INSTALL_IPTABLES
	help
	  FIXME: This item needs to be documented

config IPTABLES_INSTALL_libipt_ecn
	bool
	prompt "install libipt_ecn.so"
	depends on IPTABLES_INSTALL_IPTABLES
	help
	  FIXME: This item needs to be documented

config IPTABLES_INSTALL_libipt_ECN
	bool
	prompt "install libipt_ECN.so"
	depends on IPTABLES_INSTALL_IPTABLES
	help
	  FIXME: This item needs to be documented

config IPTABLES_INSTALL_libipt_icmp
	bool
	prompt "install libipt_icmp.so"
	depends on IPTABLES_INSTALL_IPTABLES
	help
	  FIXME: This item needs to be documented

config IPTABLES_INSTALL_libipt_LOG
	bool
	prompt "install libipt_LOG.so"
	depends on IPTABLES_INSTALL_IPTABLES
	help
	  FIXME: This item needs to be documented

config IPTABLES_INSTALL_libipt_MASQUERADE
	bool
	prompt "install libipt_MASQUERADE.so"
	depends on IPTABLES_INSTALL_IPTABLES
	help
	  FIXME: This item needs to be documented

config IPTABLES_INSTALL_libipt_MIRROR
	bool
	prompt "install libipt_MIRROR.so"
	depends on IPTABLES_INSTALL_IPTABLES
	help
	  FIXME: This item needs to be documented

config IPTABLES_INSTALL_libipt_NETMAP
	bool
	prompt "install libipt_NETMAP.so"
	depends on IPTABLES_INSTALL_IPTABLES
	help
	  FIXME: This item needs to be documented

config IPTABLES_INSTALL_libipt_NFLOG
	bool
	depends on BROKEN
	prompt "install libipt_NFLOG.so"
	depends on IPTABLES_INSTALL_IPTABLES
	help
	  FIXME: This item needs to be documented

config IPTABLES_INSTALL_libipt_policy
	bool
	prompt "install libipt_policy.so"
	depends on IPTABLES_INSTALL_IPTABLES
	help
	  FIXME: This item needs to be documented

config IPTABLES_INSTALL_libipt_quota
	bool
	depends on BROKEN
	prompt "install libipt_quota.so"
	depends on IPTABLES_INSTALL_IPTABLES
	help
	  FIXME: This item needs to be documented

config IPTABLES_INSTALL_libipt_realm
	bool
	prompt "install libipt_realm.so"
	depends on IPTABLES_INSTALL_IPTABLES
	help
	  FIXME: This item needs to be documented

config IPTABLES_INSTALL_libipt_recent
	bool
	depends on BROKEN
	prompt "install libipt_recent.so"
	depends on IPTABLES_INSTALL_IPTABLES
	help
	  FIXME: This item needs to be documented

config IPTABLES_INSTALL_libipt_REDIRECT
	bool
	prompt "install libipt_REDIRECT.so"
	depends on IPTABLES_INSTALL_IPTABLES
	help
	  FIXME: This item needs to be documented

config IPTABLES_INSTALL_libipt_REJECT
	bool
	prompt "install libipt_REJECT.so"
	depends on IPTABLES_INSTALL_IPTABLES
	help
	  FIXME: This item needs to be documented

config IPTABLES_INSTALL_libipt_SAME
	bool
	prompt "install libipt_SAME.so"
	depends on IPTABLES_INSTALL_IPTABLES
	help
	  FIXME: This item needs to be documented

config IPTABLES_INSTALL_libipt_SNAT
	bool
	prompt "install libipt_SNAT.so"
	depends on IPTABLES_INSTALL_IPTABLES
	help
	  FIXME: This item needs to be documented

config IPTABLES_INSTALL_libipt_statistics
	bool
	prompt "install libipt_statistics.so"
	depends on IPTABLES_INSTALL_IPTABLES
	help
	  FIXME: This item needs to be documented

config IPTABLES_INSTALL_libipt_string
	bool
	depends on BROKEN
	prompt "install libipt_string.so"
	depends on IPTABLES_INSTALL_IPTABLES
	help
	  FIXME: This item needs to be documented

config IPTABLES_INSTALL_libipt_ttl
	bool
	prompt "install libipt_ttl.so"
	depends on IPTABLES_INSTALL_IPTABLES
	help
	  FIXME: This item needs to be documented

config IPTABLES_INSTALL_libipt_TTL
	bool
	prompt "install libipt_TTL.so"
	depends on IPTABLES_INSTALL_IPTABLES
	help
	  FIXME: This item needs to be documented

config IPTABLES_INSTALL_libipt_ULOG
	bool
	prompt "install libipt_ULOG.so"
	depends on IPTABLES_INSTALL_IPTABLES
	help
	  FIXME: This item needs to be documented

config IPTABLES_INSTALL_libipt_unclean
	bool
	prompt "install libipt_unclean.so"
	depends on IPTABLES_INSTALL_IPTABLES
	help
	  FIXME: This item needs to be documented

comment "----------------------------------"

config IPTABLES_INSTALL_libip6t_ah
	bool
	depends on BROKEN
	prompt "install libip6t_ah.so"
	depends on IPTABLES_INSTALL_IP6TABLES
	help
	  FIXME: This item needs to be documented

config IPTABLES_INSTALL_libip6t_esp
	bool
	depends on BROKEN
	prompt "install libip6t_esp.so"
	depends on IPTABLES_INSTALL_IP6TABLES
	help
	  FIXME: This item needs to be documented

config IPTABLES_INSTALL_libip6t_eui64
	bool
	prompt "install libip6t_eui64.so"
	depends on IPTABLES_INSTALL_IP6TABLES
	help
	  FIXME: This item needs to be documented

config IPTABLES_INSTALL_libip6t_frag
	bool
	depends on BROKEN
	prompt "install libip6t_frag.so"
	depends on IPTABLES_INSTALL_IP6TABLES
	help
	  FIXME: This item needs to be documented

config IPTABLES_INSTALL_libip6t_hashlimit
	bool
	depends on BROKEN
	prompt "install libip6t_hashlimit.so"
	depends on IPTABLES_INSTALL_IP6TABLES
	help
	  FIXME: This item needs to be documented

config IPTABLES_INSTALL_libip6t_hl
	bool
	prompt "install libip6t_hl.so"
	depends on IPTABLES_INSTALL_IP6TABLES
	help
	  FIXME: This item needs to be documented

config IPTABLES_INSTALL_libip6t_HL
	bool
	prompt "install libip6t_HL.so"
	depends on IPTABLES_INSTALL_IP6TABLES
	help
	  FIXME: This item needs to be documented

config IPTABLES_INSTALL_libip6t_icmp6
	bool
	prompt "install libip6t_icmp6.so"
	depends on IPTABLES_INSTALL_IP6TABLES
	help
	  FIXME: This item needs to be documented

config IPTABLES_INSTALL_libip6t_ipv6header
	bool
	depends on BROKEN
	prompt "install libip6t_ipv6header.so"
	depends on IPTABLES_INSTALL_IP6TABLES
	help
	  FIXME: This item needs to be documented

config IPTABLES_INSTALL_libip6t_LOG
	bool
	prompt "install libip6t_LOG.so"
	depends on IPTABLES_INSTALL_IP6TABLES
	help
	  FIXME: This item needs to be documented

config IPTABLES_INSTALL_libip6t_mh
	bool
	depends on BROKEN
	prompt "install libip6t_mh.so"
	depends on IPTABLES_INSTALL_IP6TABLES
	help
	  FIXME: This item needs to be documented

config IPTABLES_INSTALL_libip6t_NFLOG
	bool
	depends on BROKEN
	prompt "install libip6t_NFLOG.so"
	depends on IPTABLES_INSTALL_IP6TABLES
	help
	  FIXME: This item needs to be documented

config IPTABLES_INSTALL_libip6t_policy
	bool
	prompt "install libip6t_policy.so"
	depends on IPTABLES_INSTALL_IP6TABLES
	help
	  FIXME: This item needs to be documented

config IPTABLES_INSTALL_libip6t_REJECT
	bool
	depends on BROKEN
	prompt "install libip6t_REJECT.so"
	depends on IPTABLES_INSTALL_IP6TABLES
	help
	  FIXME: This item needs to be documented

config IPTABLES_INSTALL_libip6t_rt
	bool
	depends on BROKEN
	prompt "install libip6t_rt.so"
	depends on IPTABLES_INSTALL_IP6TABLES
	help
	  FIXME: This item needs to be documented

config IPTABLES_INSTALL_libip6t_sctp
	bool
	depends on BROKEN
	prompt "install libip6t_sctp.so"
	depends on IPTABLES_INSTALL_IP6TABLES
	help
	  FIXME: This item needs to be documented

endif