Anonymous FTP Setup!

Setting up an anonymous FTP server with proFTPD is simplicity itself - all you need to do is use the special ... block, which contains configuration parameters for the operation of your FTP server.

In order to enable anonymous FTP, pop open your "proftpd.conf" file and add the following code block to it:
# set root directory for anonymous users to /home/ftp

# set the user and group for the server process
User ftp
Group ftp
# alias "anonymous" login to "ftp"
UserAlias anonymous ftp
# restrict "anonymous" users from writing data


DenyAll


LINKS FOR THIS WORK
http://www.devshed.com/c/a/Administration/Professional-File-Transfer-with-proFTPD/
http://www.aerospacesoftware.com/proftpd.html


COUNTER