diff options
author | wosch <wosch@FreeBSD.org> | 1998-09-30 16:12:40 +0000 |
---|---|---|
committer | wosch <wosch@FreeBSD.org> | 1998-09-30 16:12:40 +0000 |
commit | 31d07cd03177039c140d3763d5a2fc98292e71de (patch) | |
tree | 78bda69db8b16a0d7fe1a8ca2febd9ce9b6a7dc7 /etc | |
parent | 5461367ad83bcf206749773d71c2cdf4ebe1c3ad (diff) | |
download | FreeBSD-src-31d07cd03177039c140d3763d5a2fc98292e71de.zip FreeBSD-src-31d07cd03177039c140d3763d5a2fc98292e71de.tar.gz |
Limit the fingerd daemon to:
runs only 3 simultaneous fingerd processes and
limit the connections-per-ip-per-minute to 10.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/inetd.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/inetd.conf b/etc/inetd.conf index 804611c..1583762 100644 --- a/etc/inetd.conf +++ b/etc/inetd.conf @@ -1,4 +1,4 @@ -# $Id:$ +# $Id: inetd.conf,v 1.29 1998/09/02 01:34:56 brian Exp $ # # Internet server configuration database # @@ -8,7 +8,7 @@ ftp stream tcp nowait root /usr/libexec/ftpd ftpd -l telnet stream tcp nowait root /usr/libexec/telnetd telnetd shell stream tcp nowait root /usr/libexec/rshd rshd login stream tcp nowait root /usr/libexec/rlogind rlogind -finger stream tcp nowait nobody /usr/libexec/fingerd fingerd -s +finger stream tcp nowait/3/10 nobody /usr/libexec/fingerd fingerd -s #exec stream tcp nowait root /usr/libexec/rexecd rexecd #uucpd stream tcp nowait root /usr/libexec/uucpd uucpd #nntp stream tcp nowait usenet /usr/libexec/nntpd nntpd |