2022-12-13 11:10:43 +01:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
|
|
#
|
|
|
|
|
|
|
|
config SYSTEM_IPTABLES
|
|
|
|
tristate "'iptables' command"
|
|
|
|
default n
|
2024-04-17 12:09:29 +02:00
|
|
|
depends on NET_IPTABLES && NET_IPv4
|
2022-12-13 11:10:43 +01:00
|
|
|
select NETUTILS_NETLIB
|
|
|
|
---help---
|
|
|
|
Enable support for the 'iptables' command.
|
|
|
|
|
2024-04-17 12:09:29 +02:00
|
|
|
config SYSTEM_IP6TABLES
|
|
|
|
tristate "'ip6tables' command"
|
|
|
|
default n
|
|
|
|
depends on NET_IPTABLES && NET_IPv6
|
|
|
|
select NETUTILS_NETLIB
|
2022-12-13 11:10:43 +01:00
|
|
|
---help---
|
2024-04-17 12:09:29 +02:00
|
|
|
Enable support for the 'ip6tables' command.
|
|
|
|
|
|
|
|
if SYSTEM_IPTABLES || SYSTEM_IP6TABLES
|
2022-12-13 11:10:43 +01:00
|
|
|
|
|
|
|
config SYSTEM_IPTABLES_PRIORITY
|
2024-04-17 12:09:29 +02:00
|
|
|
int "iptables & ip6tables task priority"
|
2022-12-13 11:10:43 +01:00
|
|
|
default 100
|
|
|
|
|
|
|
|
config SYSTEM_IPTABLES_STACKSIZE
|
2024-04-17 12:09:29 +02:00
|
|
|
int "iptables & ip6tables stack size"
|
2022-12-13 11:10:43 +01:00
|
|
|
default DEFAULT_TASK_STACKSIZE
|
|
|
|
|
|
|
|
endif
|