/crypto/heimdal/appl/ftp/ftpd/ftpusers.5

https://bitbucket.org/freebsd/freebsd-head/ · Unknown · 37 lines · 37 code · 0 blank · 0 comment · 0 complexity · de9bc5f00ae7e711abe9edce806154fa MD5 · raw file

  1. .\" $Id$
  2. .\"
  3. .Dd May 7, 1997
  4. .Dt FTPUSERS 5
  5. .Os KTH-KRB
  6. .Sh NAME
  7. .Pa /etc/ftpusers
  8. .Nd FTP access list file
  9. .Sh DESCRIPTION
  10. .Pa /etc/ftpusers
  11. contains a list of users that should be allowed or denied FTP
  12. access. Each line contains a user, optionally followed by
  13. .Dq allow
  14. (anything but
  15. .Dq allow
  16. is ignored). The semi-user
  17. .Dq *
  18. matches any user. Users that has an explicit
  19. .Dq allow ,
  20. or that does not match any line, are allowed access. Anyone else is
  21. denied access.
  22. .Pp
  23. Note that this is compatible with the old format, where this file
  24. contained a list of users that should be denied access.
  25. .Sh EXAMPLES
  26. This will deny anyone but
  27. .Dq foo
  28. and
  29. .Dq bar
  30. to use FTP:
  31. .Bd -literal
  32. foo allow
  33. bar allow
  34. *
  35. .Ed
  36. .Sh SEE ALSO
  37. .Xr ftpd 8