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

freewrt_2_0
Last change on this file since b07a1b5 was 9d1b103, checked in by Waldemar Brodkorb <wbx@…>, 19 years ago

add ipt_LOG to description

git-svn-id: svn://www.freewrt.org/branches/freewrt_1_0@2550 afb5a338-a214-0410-bd46-81f09a774fd1

  • Property mode set to 100644
File size: 4.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_IPTABLES_MOD_CONNTRACK
19 prompt "iptables-mod-conntrack.......... Iptables extensions for connection tracking"
20 tristate
21 default n
22 depends FWRT_PACKAGE_IPTABLES
23 select FWRT_PACKAGE_KMOD_IPT_CONNTRACK
24 help
25 Iptables (IPv4) extensions for connection tracking
26
27 Includes:
28 * libipt_conntrack
29 * libipt_helper
30 * libipt_connmark/CONNMARK
31
32config FWRT_PACKAGE_IPTABLES_MOD_FILTER
33 prompt "iptables-mod-filter............. Iptables extension for packet content inspection"
34 tristate
35 default n
36 depends FWRT_PACKAGE_IPTABLES
37 select FWRT_PACKAGE_KMOD_IPT_FILTER
38 help
39 Iptables (IPv4) extension for packet content inspection
40
41 Includes:
42 * libipt_ipp2p
43 * libipt_layer7
44
45config FWRT_PACKAGE_IPTABLES_MOD_IMQ
46 prompt "iptables-mod-imq................ Iptables extensions for Intermediate Queuing Device QoS-support"
47 tristate
48 default n
49 depends FWRT_PACKAGE_IPTABLES
50 select FWRT_PACKAGE_KMOD_IMQ
51 help
52 Iptables (IPv4) extensions for Intermediate Queuing Device QoS-support
53
54 Includes:
55 * libipt_IMQ
56
57config FWRT_PACKAGE_IPTABLES_MOD_IPOPT
58 prompt "iptables-mod-ipopt.............. Iptables extensions for matching/changing IP packet options"
59 tristate
60 default n
61 depends FWRT_PACKAGE_IPTABLES
62 select FWRT_PACKAGE_KMOD_IPT_IPOPT
63 help
64 Extra Iptables (IPv4) extensions for matching/changing IP packet options
65
66 Includes:
67 * libipt_CLASSIFY
68 * libipt_dscp/DSCP
69 * libipt_ecn/ECN
70 * libipt_length
71 * libipt_mac
72 * libipt_NETMAP
73 * libipt_tcpmms
74 * libipt_time
75 * libipt_tos/TOS
76 * libipt_ttl/TTL
77 * libipt_unclean
78
79config FWRT_PACKAGE_IPTABLES_MOD_IPSEC
80 prompt "iptables-mod-ipsec.............. Iptables extensions for matching special IPsec packets"
81 tristate
82 default n
83 depends FWRT_PACKAGE_IPTABLES
84 select FWRT_PACKAGE_KMOD_IPT_IPSEC
85 help
86 Iptables (IPv4) extensions for matching special IPsec packets
87
88 Includes:
89 * libipt_ah
90 * libipt_esp
91
92config FWRT_PACKAGE_IPTABLES_MOD_NAT
93 prompt "iptables-mod-nat................ Iptables extensions for different NAT targets"
94 tristate
95 default n
96 depends FWRT_PACKAGE_IPTABLES
97 select FWRT_PACKAGE_KMOD_IPT_NAT
98 help
99 Iptables (IPv4) extensions for different NAT targets
100
101 Includes:
102 * libipt_REDIRECT
103
104config FWRT_PACKAGE_IPTABLES_MOD_ULOG
105 prompt "iptables-mod-ulog............... Iptables extensions for user-space packet logging"
106 tristate
107 default n
108 depends FWRT_PACKAGE_IPTABLES
109 select FWRT_PACKAGE_KMOD_IPT_ULOG
110 help
111 Iptables (IPv4) extensions for user-space packet logging
112
113 Includes:
114 * libipt_ULOG
115
116config FWRT_PACKAGE_IPTABLES_MOD_EXTRA
117 prompt "iptables-mod-extra.............. Other extra Iptables extensions"
118 tristate
119 default n
120 depends FWRT_PACKAGE_IPTABLES
121 select FWRT_PACKAGE_KMOD_IPT_EXTRA
122 help
123 Other extra Iptables (IPv4) extensions
124
125 Includes:
126 * libipt_limit
127 * libipt_owner
128 * libipt_physdev
129 * libipt_pkttype
130 * libipt_recent
131 * libipt_LOG
132
133config FWRT_PACKAGE_IPTABLES_UTILS
134 prompt "iptables-utils.................. Save and restore utilities"
135 tristate
136 default n
137 depends FWRT_PACKAGE_IPTABLES
138 help
139 iptables-save and iptables-restore for Iptables (IPv4)
140
141 http://www.iptables.org/
142
143config FWRT_PACKAGE_IPTABLES_FIREWALL_SCRIPT
144 prompt "iptables-fw-script.............. FreeWRT's firewall script"
145 tristate
146 default y
147 depends FWRT_PACKAGE_IPTABLES
148 help
149 FreeWRT's default firewall script
150
151config FWRT_PACKAGE_IP6TABLES
152 prompt "ip6tables......................... IPv6 firewall administration tool"
153 tristate
154 default n
155 select FWRT_COMPILE_IPTABLES
156 select FWRT_PACKAGE_KMOD_IPV6
157 help
158 IPv6 firewall, NAT, and packet mangling tools.
159
160 http://www.iptables.org/
Note: See TracBrowser for help on using the repository browser.