kumquat-buildroot/package/knock/Config.in
Fabrice Fontaine 98728c893d package/knock: add knockd option
Add knockd option to make libpcap and MMU optional and enable it by
default for backward compatibility

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2021-10-18 22:02:56 +02:00

24 lines
564 B
Plaintext

config BR2_PACKAGE_KNOCK
bool "knock"
help
A port knocking implementation.
Provides a daemon and a user application. Port knocking can be
used to run an arbitrary application, once the daemon detects
a predefined sequence of incoming TCP/UDP packets on a network
interface. This can be used, e.g. to open up ports in a
firewall.
http://www.zeroflux.org/projects/knock
if BR2_PACKAGE_KNOCK
config BR2_PACKAGE_KNOCK_KNOCKD
bool "knockd"
default y
depends on BR2_USE_MMU # fork()
select BR2_PACKAGE_LIBPCAP
help
Enable knockd
endif