proftpd默认设置下载可以断线续传,如何设置上传可以续传呢
更改proftpd.conf的相关配置,加上类似于下面的字符串。
<Directory /*>
AllowOverwrite on
AllowRetrieveRestart on
AllowStoreRestart on
</Directory>
或者
在ftpaccess中设置:
host-limit class count time message
其中class是定义的某类用户比如real,guest,count是允许此类用户的同时连接数,time是连接时间,可以设置为Any,message是超过连接数以后的提示信息文件。