Passwordless Authentication and Anonymous login

Hi,

I am in the process FTPing some of my report files from my production server to another FTP server through batch/Shell Script.
This is working fine with the password less authentication.

Once i place all my report files in the ftp server the end users need to download files from ther which is prompting for the user name/password of the FTP Server.

Can anyone please help me how to enable the anonymous loging in the ftp server for a particular directory. I am not sure but found something like by changing the ProFTPD.conf file it is possible to enable the anonymous login.

Any help/code/supported links in this regard is deeply appreciated.

Thanks

If it is ProFTP you are using, there is a sample configuration for anonymous access here: http://www.proftpd.org/docs/configs/anonymous.conf

Hi,

Thanks for the Help, But i am not sure which part i need to comment for enabling the password less access.

Thanks Again.

It is this part

# set the base directory, in this case the user ftp's home directory:
<Anonymous ~ftp>

  # Allow logins if they are disabled above.
  <Limit LOGIN>
    AllowAll
  </Limit>

  # Maximum clients with message
  MaxClients            5 "Sorry, max %m users -- try again later"

  User                ftp
  Group                ftp
  # We want clients to be able to login with "anonymous" as well as "ftp"
  UserAlias            anonymous ftp

  # Limit WRITE everywhere in the anonymous chroot
  <Limit WRITE>
    DenyAll
  </Limit>

  # An upload directory that allows storing files but not retrieving
  # or creating directories.
  <Directory uploads/*>
    <Limit READ>
      DenyAll
    </Limit>

    <Limit STOR>
      AllowAll
    </Limit>
  </Directory>
</Anonymous>

Does that help?