summaryrefslogtreecommitdiffstats
path: root/rules/tcpwrapper.in
blob: db09af15af7a05d77f644a8964abe353362a8a48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
## SECTION=networking

menuconfig TCPWRAPPER
	tristate
	prompt "tcpwrapper                    "
	help
	  With this package you can monitor and filter incoming requests for the
	  SYSTAT, FINGER, FTP, TELNET, RLOGIN, RSH, EXEC, TFTP, TALK, and other
	  network services.

	  The package provides tiny daemon wrapper programs that can be installed
	  without any changes to existing software or to existing configuration
	  files.  The wrappers report the name of the client host and of the
	  requested service; the wrappers do not exchange information with the
	  client or server applications, and impose no overhead on the actual
	  conversation between the client and server applications.

if TCPWRAPPER

config	TCPWRAPPER_INSTALL_TCPD
	bool
	prompt "Install /usr/sbin/tcpd"
	help
	  The tcpd program can be set up to monitor incoming requests for telnet,
	  finger, ftp, exec, rsh, rlogin, tftp, talk, comsat and other services
	  that have a one-to-one mapping onto executable files.

config	TCPWRAPPER_INSTALL_HOSTS_ACCESS_CONFIGS
	bool
	select TCPWRAPPER_INSTALL_TCPD
	prompt "Install /etc/hosts.{allow|deny}"
	help
	  Install the hosts.allow and hosts.deny configs from either
	  projectroot or from ptxdist/projectroot.

endif