blob: 9529cd5cca838732eeb13cf0f1e6a07701facf6e (
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
|
menu "iptables.......................... IPv4 / IPv6 firewall administration"
config BR2_COMPILE_IPTABLES
bool
default n
depends BR2_PACKAGE_IPTABLES || BR2_PACKAGE_IP6TABLES
config BR2_PACKAGE_IPTABLES
prompt "iptables.......................... IPv4 firewall administration tool"
tristate
default y
select BR2_COMPILE_IPTABLES
help
IPv4 firewall, NAT, and packet mangling tools.
http://www.iptables.org/
config BR2_PACKAGE_IPTABLES_UTILS
prompt "iptables-utils.................. Save and restore utilities"
tristate
default m if CONFIG_DEVEL
depends BR2_PACKAGE_IPTABLES
help
iptables-save and iptables-restore
http://www.iptables.org/
config BR2_PACKAGE_IPTABLES_EXTRA
prompt "iptables-extra.................. Extra modules not found elsewhere"
tristate
default m if CONFIG_DEVEL
depends BR2_PACKAGE_IPTABLES
help
Extra modules for iptables (kernel and user space)
http://www.iptables.org/
config BR2_PACKAGE_IP6TABLES
prompt "ip6tables......................... IPv6 firewall administration tool"
tristate
default m if CONFIG_DEVEL
select BR2_COMPILE_IPTABLES
select BR2_PACKAGE_KMOD_IPV6
help
IPv6 firewall, NAT, and packet mangling tools.
http://www.iptables.org/
endmenu
|