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,
[john124 (8-25 13:31, Long long ago)]
[ 传统版 |
sForum ][登录后回复]1楼
you need to set the parameters correctly in proftpd.confsome 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>[SmellsLikeTeenSpirit (8-25 18:46, Long long ago)]
[ 传统版 |
sForum ][登录后回复]2楼