hc
2024-03-26 e0728245c89800c2038c23308f2d88969d5b41c8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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