ProFtpd help

so i have just compiled, and installed Proftpd on a personal slackware box, i am trying to have it setup for anonymous only ftp access... when i try to connect, i get this msg:
[R]
[R] Connecting to xx.xx.xx.xx -> DNS=xx.xx.xx.xx IP=xxx.xx.xx.xx PORT=21
[R] Connected to xx.xx.xx.xx
[R] 220 ProFTPD 1.2.10 Server (AnonFTP) [xx.xx.xx.xx]
[R] USER anonymous
[R] 331 Anonymous login ok, send your complete email address as your password.
[R] PASS (hidden)
[R] 530 Login incorrect.
[R] Connection failed
[R] Delaying for 120 seconds before reconnect attempt #1
and my proftpd.conf looks like this:

ServerName "AnonFTP"
ServerType standalone
DefaultServer on
Port 21
Umask 022
MaxInstances 30
User nobody
Group nogroup
RequireValidShell off
UseFtpUsers off
DefaultRoot /usr/local/apache2/htdocs/uploads/
AllowOverwrite on
<Limit SITE_CHMOD>
DenyAll
</Limit>
<Anonymous ~ftp>
User ftp
Group ftp
UserAlias anonymous ftp
MaxClients 30
<Limit WRITE>
AllowAll
</Limit>
</Anonymous>
I want it to be able to connect to the anonymous ftp, and be able to have full 777 access to the dir in /usr/local/apache2/htdocs/uploads.

What am i doing wrong? any suggestions?

 

 

 

 

Top