Commit 6ceff155 authored by Michael Rommel's avatar Michael Rommel Committed by Peter Korsgaard
Browse files

knock: new package



A port knocking implementation with daemon and user application.

[Peter: drop trailing newline in Config.in]
Signed-off-by: default avatarMichael Rommel <rommel@layer-7.net>
Acked-by: default avatarThomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent 7dbc737d
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -789,6 +789,7 @@ source "package/ipset/Config.in"
source "package/iptables/Config.in"
source "package/iw/Config.in"
source "package/kismet/Config.in"
source "package/knock/Config.in"
source "package/lighttpd/Config.in"
source "package/linknx/Config.in"
source "package/links/Config.in"
+12 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_KNOCK
	bool "knock"
	select BR2_PACKAGE_LIBPCAP
	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

package/knock/knock.mk

0 → 100644
+14 −0
Original line number Diff line number Diff line
################################################################################
#
# knock
#
################################################################################

KNOCK_VERSION = 7666f2e86e
KNOCK_SITE = https://github.com/jvinet/knock/tarball/master
KNOCK_LICENSE = GPLv2+
KNOCK_LICENSE_FILES = COPYING
KNOCK_AUTORECONF = YES
KNOCK_DEPENDENCIES = libpcap

$(eval $(autotools-package))