home *** CD-ROM | disk | FTP | other *** search
/ Hacker Chronicles 2 / HACKER2.BIN / 472.FTPUSERS < prev    next >
Text File  |  1988-12-14  |  3KB  |  62 lines

  1. # F T P U S E R S 
  2. #
  3. # Note: NET.EXE ignores all lines which start with a pound sign (#).
  4. #
  5. #
  6. # The FTPUSERS file provides access control over the users of
  7. # your host computer. It consists of 4 elements:
  8. #        username    password    \path     permissions
  9. #
  10. # where
  11. #      username is the users's login name for ftp
  12. #       password is the password they are required to
  13. #                use. A password of '*' allows anything 
  14. #                typed to be accepted.
  15. #       \path is the allowable prefix on accessible files. 
  16. #                Think of this as the root of the directory 
  17. #                subtree this user is allowed to access.
  18. #       permissions is a decimal number granting permission 
  19. #                for read, create, and write operations.
  20. #                Bit 0x1 is read, bit 0x2 is create if not 
  21. #                overwriting, bit 0x4 allows overwriting an 
  22. #                existing file, and deleting files.
  23. #                For example: a user with read AND create 
  24. #                would have a permission of 3 (1+2). A user 
  25. #                with full read/write/overwrite would have a 
  26. #                permission of 7 (1+2+4). Until such time as 
  27. #                an encryption system for passwords is 
  28. #                incorporated into TCP/IP caution should be
  29. #                used in authorizing full access to your 
  30. #                system.
  31. #
  32. #----------------------------------------------
  33. #
  34. # This first entry is used to define a user "anonymous", who has read-only
  35. # access to a directory which you have set up and arbitrarily named 'public',
  36. # and all subdirectories of 'public'. In effect this is his root directory 
  37. # on your system.  This is the default entry everyone should have, so that 
  38. # new users who don't have a specific entry in this file can still get in 
  39. # and look at what's available, download a few things, etc.  When logging in
  40. # to a machine using this entry, use your callsign or something else unique
  41. # as the password, to identify yourself. Any password will work since there 
  42. # is a "*" in the password field.
  43. #
  44. anonymous * \public 1
  45. #
  46. # The following entry for john with a password of wd0fhg has full 
  47. # access to your root directory and full read/write/overwrite/delete 
  48. # functions. You'll want to think twice before giving this access to
  49. # others :-) .
  50. #john wd0fhg \ 7
  51. #
  52. # The following entry for andy with a password of n0ccz has read and
  53. # write access to \public and all its subdirectores.
  54. # This is a good entry for someone
  55. # you trust to upload files to your system, but who you don't want deleting
  56. # things that are already there.
  57. #
  58. #andy n0ccz \public 3
  59. #
  60. # THE END
  61.