|
|
我设置proftpd.conf文件以用来匿名访问,但是ftp 219.242.89.170 后输入用户名ftp 然后输入密码 ftp 后总是提示登陆不正确. 不知道问题出在哪里?
我在ftp方面是新手,请大家帮我一把.谢谢.
bash-2.05b# ftp 219.242.89.170
Connected to 219.242.89.170.
220 spray.slackware.org FTP server ready
Name (219.242.89.170:root): ftp
331 Anonymous login ok, send your complete email address as your password.
Password:
530 Login incorrect.
Login failed.
Remote system type is UNIX.
Using binary mode to transfer files.
ftp> user
(username) ftp
331 Anonymous login ok, send your complete email address as your password.
Password:
530 Login incorrect.
Login failed.
下面是我的proftpd.conf文件
ServerName " roFTPD Default Installation"
ServerType inetd
DefaultServer on
Port 21
Umask 022
User nobody
Group nobody
MaxInstances 30
TimeoutStalled 10
MaxClients 10
MaxClientsPerHost 1 # only one connetction allowed
AllowStoreRestart on
DisplayLogin welcome.msg
ServerISystemLog /var/log/proftpd.log
TransferLog /var/log/xferlog
<Anonymous ~ftp>
<Limit LOGIN>
AllowAll
</Limit>
MaxClients 5
User ftp
Group ftp
UserAlias anonymous ftp
DisplayLogin welcome.msg
DisplayFirstChdir .message
<Limit WRITE>
DenyAll
</Limit> <Directory uploads/*>
<Limit READ>
DenyAll
</Limit>
<Limit STOR>
AllowAll
</Limit>
</Directory>
</Anonymous> |
|