diff options
author | sheldonh <sheldonh@FreeBSD.org> | 1999-07-16 15:41:14 +0000 |
---|---|---|
committer | sheldonh <sheldonh@FreeBSD.org> | 1999-07-16 15:41:14 +0000 |
commit | b311ebd0a02fc55bec2fbb454cef884ec85d5de2 (patch) | |
tree | 37992f4c5d3c1b6c8829fb7dc9087cf7f2d1b9e1 /etc | |
parent | 62771172f4e1b703f46fbece196e1c900c35dd79 (diff) | |
download | FreeBSD-src-b311ebd0a02fc55bec2fbb454cef884ec85d5de2.zip FreeBSD-src-b311ebd0a02fc55bec2fbb454cef884ec85d5de2.tar.gz |
Document the new {auth,ident,tap} service and provide examples in the
configuration file.
Requested by: green
Diffstat (limited to 'etc')
-rw-r--r-- | etc/inetd.conf | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/etc/inetd.conf b/etc/inetd.conf index 44fe31e..0311584 100644 --- a/etc/inetd.conf +++ b/etc/inetd.conf @@ -1,4 +1,4 @@ -# $Id: inetd.conf,v 1.34 1999/07/15 01:06:13 ache Exp $ +# $Id: inetd.conf,v 1.35 1999/07/15 01:33:56 green Exp $ # # Internet server configuration database # @@ -63,14 +63,21 @@ ntalk dgram udp wait tty:tty /usr/libexec/ntalkd ntalkd # #imap4 stream tcp nowait root /usr/local/libexec/imapd imapd # -# Compiled with -DREAL_IDENT, this is a fully functional ident service. -# By default, this is an ident service which returns error on any request. +# Return error for all "ident" requests # -#ident stream tcp nowait root internal +#auth stream tcp nowait root internal # -# example entry for the optional ident server +# Provide a real ident service internally # -#ident stream tcp wait root /usr/local/sbin/identd identd -w -t120 +#auth stream tcp nowait root internal auth -r +# +# As above, but enable ~/.fakeid support as well +# +#auth stream tcp nowait root internal auth -r -f +# +# Example entry for an external ident server +# +#auth stream tcp wait kmem:kmem /usr/local/sbin/identd identd -w -t120 # # example entry for the optional qmail MTA # |