*** empty log message ***

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@1594 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Johan Danielsson
1997-04-19 22:07:25 +00:00
parent 8f06ba85e7
commit 0aec44fad0
2 changed files with 37 additions and 3 deletions

View File

@@ -33,7 +33,7 @@
.\"
.\" @(#)ftpd.8 8.2 (Berkeley) 4/19/94
.\"
.Dd April 25, 1996
.Dd April 19, 1997
.Dt FTPD 8
.Os BSD 4.2
.Sh NAME
@@ -429,7 +429,7 @@ alpha-numeric characters or any of the following:
.Sh FILES
.Bl -tag -width /etc/ftpwelcome -compact
.It Pa /etc/ftpusers
List of unwelcome/restricted users.
Access list for users.
.It Pa /etc/ftpchroot
List of normal users who should be chroot'd.
.It Pa /etc/ftpwelcome
@@ -445,6 +445,7 @@ Login access for Kerberos.
.Xr ftp 1 ,
.Xr otp 1 ,
.Xr getusershell 3 ,
.Xr ftpusers 5 ,
.Xr syslogd 8 ,
.Sh STANDARDS
.Bl -tag -compact -width "RFC 1938"
@@ -452,7 +453,7 @@ Login access for Kerberos.
FTP PROTOCOL SPECIFICATION
.It Cm RFC 1938
OTP Specification
.It Cm draft-ietf-cat-ftpsec-08
.It Cm draft-ietf-cat-ftpsec-09
FTP Security Extensions. This is work in progress and might change in
the future.
.Sh BUGS

33
appl/ftp/ftpd/ftpusers.5 Normal file
View File

@@ -0,0 +1,33 @@
.\" $Id$
.\"
.Dd April 19, 1997
.Dt FTPUSERS 5
.Os KTH-KRB
.Sh NAME
.Pa /etc/ftpusers
.Nd
FTP access list file.
.Sh DESCRIPTION
.Pa /etc/ftpusers
contains a list of users that should be allowed or denied FTP
access. It contains a list of users, one on each line, followed by
either
.Dq allow
or
.Dq deny .
Any string that isn't
.Dq allow
is taken as
.Dq deny .
If a user is not mentioned in the file, he is allowed access, unless
the semi-user
.Dq *
is denied, or the file doesn't exist at all.
.Sh EXAMPLES
This will allow anyone but ``foo'' to use FTP:
.Bd -literal
foo deny
* allow
.Ed
.Sh SEE ALSO
.Xr ftpd 8