source: freewrt/package/iptables/Config.in@ df9a3e9

freewrt_2_0
Last change on this file since df9a3e9 was 36e3a1c, checked in by Waldemar Brodkorb <wbx@…>, 3 months ago

iptables: rework and simplify

  • Property mode set to 100644
File size: 2.3 KB
Line 
1
2config FWRT_COMPILE_IPTABLES
3 bool
4 default n
5 depends FWRT_PACKAGE_IPTABLES || FWRT_PACKAGE_IP6TABLES
6
7config FWRT_PACKAGE_IPTABLES
8 prompt "iptables.......................... IPv4 firewall administration tool"
9 tristate
10 default n
11 select FWRT_COMPILE_IPTABLES
12 select FWRT_PACKAGE_KMOD_IPTABLES
13 help
14 IPv4 firewall, NAT, and packet mangling tools.
15
16 http://www.iptables.org/
17
18config FWRT_PACKAGE_IP6TABLES
19 prompt "ip6tables......................... IPv6 firewall administration tool"
20 tristate
21 default n
22 select FWRT_COMPILE_IPTABLES
23 select FWRT_PACKAGE_KMOD_IPV6
24 help
25 IPv6 firewall, NAT, and packet mangling tools.
26
27 http://www.iptables.org/
28
29config FWRT_PACKAGE_IPTABLES_FIREWALL_SCRIPT
30 prompt "iptables-fw-script.............. FreeWRT's firewall script"
31 tristate
32 default y
33 depends FWRT_PACKAGE_IPTABLES
34 help
35 FreeWRT's default firewall script
36
37config FWRT_PACKAGE_IPTABLES_MOD_CONNTRACK
38 prompt "iptables-mod-conntrack.......... Iptables extensions for connection tracking"
39 tristate
40 default n
41 depends FWRT_PACKAGE_IPTABLES
42 help
43 Iptables extensions for connection tracking
44
45config FWRT_PACKAGE_IPTABLES_MOD_NAT
46 prompt "iptables-mod-nat................ Iptables extensions for network address translation"
47 tristate
48 default n
49 depends FWRT_PACKAGE_IPTABLES
50 help
51 Iptables extensions for network address translation
52
53config FWRT_PACKAGE_IPTABLES_MOD_MASQUERADE
54 prompt "iptables-mod-masquerade......... Iptables extensions for masquerading"
55 tristate
56 default n
57 depends FWRT_PACKAGE_IPTABLES
58 select FWRT_PACKAGE_IPTABLES_MOD_NAT
59 help
60 Iptables extensions for masquerading
61
62config FWRT_PACKAGE_IPTABLES_MOD_REJECT
63 prompt "iptables-mod-reject............. Iptables extensions for REJECT target"
64 tristate
65 default n
66 depends FWRT_PACKAGE_IPTABLES
67 help
68 Iptables extensions for REJECT target
69
70config FWRT_PACKAGE_IPTABLES_MOD_TCPMSS
71 prompt "iptables-mod-tcpmss............. Iptables extensions for TCP MSS"
72 tristate
73 default n
74 depends FWRT_PACKAGE_IPTABLES
75 help
76 Iptables extensions for TCP MSS target
77
78
79config FWRT_PACKAGE_IPTABLES_UTILS
80 prompt "iptables-utils.................. Save and restore utilities"
81 tristate
82 default n
83 depends FWRT_PACKAGE_IPTABLES
84 help
85 iptables-save and iptables-restore for Iptables (IPv4)
86
87 http://www.iptables.org/
88
Note: See TracBrowser for help on using the repository browser.