10

I'd like to setup an ftp such that my users (and some software I write) can upload documents, and have those documents saved on the server but I don't want to allow users to see the contents of the ftp folder - essentially the ftp looks empty at all times to the user.

Steven Evers
  • 653
  • 5
  • 9
  • 23

5 Answers5

16

Sure, for example with ProFTPD you could use the following configuration:

<Directory /path/to/ftp>
    <Limit ALL>
      DenyAll
    </Limit>

    <Limit CDUP CWD XCWD XCUP>
      AllowAll
    </Limit>

    <Limit STOR STOU>
       AllowAll
    </Limit>
 </Directory>

With vsftpd you can set:

download_enable=NO
dirlist_enable=NO
rkthkr
  • 8,503
  • 26
  • 38
4

Depending on your FTP server it us usually as easy as giving someone write but not read permissions on the directory. This article discusses it briefly

trent
  • 3,094
  • 18
  • 17
3

We've had a client using the scheduled sweep method for years without issues. I'd only see it potentially being a problem on a heavily used server with multiple people intentionally dropping files with the same name.

Regardless, here's an excellent step by step procedure for setting up a blind drop ftp site on Windows 2003 using IIS: http://www.iisanswers.com/Blind_drop_ftp.htm

tselliott
  • 101
  • 2
2

As mentioned, it's easily possible. Your best bet is to do a Google search for "(FTP server type) write permission only" and you should get plenty of responses. Without more information on exactly what FTP server you're using, you're not going to get much more help than that here.

Oesor
  • 300
  • 1
  • 2
  • 16
1

Yes. You simply give your FTP users write only access. Lots of support sites do this for log files and the like.

Laura Thomas
  • 2,825
  • 1
  • 26
  • 24