|
|
现在的情况是连接的时候很慢,但是传送文件的时候速度正常!不知道为什么?
proftpd.conf如下:
############################################################
ServerName "YanQian's FTP Server"
ServerType standalone
DefaultServer on
Port 21
AllowRetrieveRestart on
AllowStoreRestart on
AllowForeignAddress on
AllowOverwrite on
Umask 022
DirFakeUser On FTP
DirFakeGroup On FTP
User nobody
Group nogroup
MaxInstances 15
MaxClients 10
MaxClientsPerHost 1
TimeoutStalled 15
DisplayLogin welcome.msg
DisplayFirstChdir .message
RootLogin off
ServerIdent off
RequireValidShell off
DefaultRoot ~
TransferRate RETR 1024 user ftp
TransferRate STOR 1024 user ftp
<Anonymous ~ftp>
<Limit LOGIN>
AllowAll
</Limit>
MaxClients 5 "Sorry, max %m users -- try again later"
User ftp
Group ftp
UserAlias anonymous ftp
AnonRequirePassword off
<Limit WRITE>
DenyAll
</Limit>
# An upload directory that allows storing files but not retrieving or creating directories.
<Directory uploads/*>
<Limit READ>
DenyAll
</Limit>
<Limit STOR>
AllowAll
</Limit>
</Directory>
</Anonymous>
#################################################### |
|