proftpd problem?Hi, all:
Just compiled and installed proftpd 1.2.10 in my FreeBSD 5.3 smoothly.
But the anonymous login is always unsuccessful, with the error: 530-Unable to set anonymous previleges.
I have added user "ftp" and group "ftp" into the system ("pw groupadd ftp" and "pw useradd ftp -g ftp"). But neither "anonymous" nor "ftp" can log into the server. :(
any help?
thanks,
you need to set the parameters correctly in proftpd.conf
some similar to this. Do check out the doc
<Directory /*>
AllowOverwrite on
</Directory>
<Anonymous ~ftp>
User ftp
Group ftp
UserAlias anonymous ftp
<Limit WRITE>
AllowAll
</Limit>
<Directory *>
<Limit READ WRITE>
AllowAll
</Limit>
</Directory>
</Anonymous>
<Directory /*>
AllowOverwrite on
</Directory>
<Anonymous ~ftp>
User ftp
Group ftp
UserAlias anonymous ftp
<Limit WRITE>
AllowAll
</Limit>
<Directory *>
<Limit READ WRITE>
AllowAll
</Limit>
</Directory>
</Anonymous>
Freedom is slavery.
Ignorance is strength.