|
到ftp(proftpd1.2.6)下载大于10M的文件到99%就半天不走???
我在局域网上别的电脑上下载4M的文件没有问题,直接用IP下,一会儿就下了,但是下一个10M的文件有如下问题,开始很快,400K以上,但是到了99%时就不走了,电脑(win2000server)明显感觉 到反应变慢,停3分左右就能下完,我又试了一个70M的文件,用网络蚂蚁下的。平均就400K左右,同样到了99%就不走了,但是蚂蚁的5个进程都显示传输完成,没有佘下的块。电脑明显变慢,打开 一个网页半天没反映,同样停5分钟后蚂蚁就接着显示传输完成。这是怎么回事,系统是红旗多功能服务器3.0,请大家帮忙看看。谢谢!
# This is a basic ProFTPD configuration file (rename it to
# 'proftpd.conf' for actual use. It establishes a single server
# and a single anonymous login. It assumes that you have a user/group
# "nobody" and "ftp" for normal operation and anon.
ServerName"测试ftp服务器"
ServerTypestandalone
DefaultServeron
# Port 21 is the standard FTP port.
Port21
# Umask 022 is a good standard umask to prevent new dirs and files
# from being group and world writable.
Umask022
AccessGrantMsg "Hello %u, welcome to visit my FTP SITE!"
# To prevent DoS attacks, set the maximum number of child processes
# to 30. If you need to allow more than 30 concurrent connections
# at once, simply increase this value. Note that this ONLY works
# in standalone mode, in inetd mode you should use an inetd server
# that allows you to limit maximum number of processes per service
# (such as xinetd).
MaxInstances30
RequireValidShell off
ServerIdent off
# Set the user and group under which the server will run.
Usernobody
Groupnobody
# Normally, we want files to be overwriteable.
<Directory />
AllowOverwriteon
</Directory>
# A basic anonymous configuration, no upload directories.
<Anonymous /www/Ftp>
Userftp
Groupftp
# We want clients to be able to login with "anonymous" as well as "ftp"
UserAliasanonymous ftp
# Limit the maximum number of anonymous logins
# MaxClients10 "下载用户过多,请稍候再试"
MaxHostsPerUser 5 " 下载用户过多,请稍候再试 "
MaxClientsPerHost 2 "对不起,同一个ip只允许有%m个连接!"
# We want 'welcome.msg' displayed at login, and '.message' displayed
# in each newly chdired directory.
DisplayLoginwelcome.msg
DisplayFirstChdir.message
# Limit WRITE everywhere in the anonymous chroot
<Limit WRITE>
DenyAll
</Limit>
</Anonymous>
我试着用了proftpd1.2.7/rc1/rc2/,结果都是一样,还有个问题,假如说在/www/Ftp/uploads目录下,我想把它设置成署名用户有所有权限,在proftpd.conf配置文件我得怎么设置,请大家帮忙看 看,小弟感激不尽,谢谢!
-------------------- |
|