Some advanced settings when using linux's Proftpd to create an FTP server (the resumable upload and download functions are enabled)

Source: Internet
Author: User
Some advanced settings when using linux's Proftpd to create an FTP server (the resumable upload and download functions are enabled)
Pm
Author: Author
From: a library of Linux knowledge
Current: http://www.douzhe.com/linuxtips/1455.html
Address: Unknown

(1)
In the initial settings of Proftpd, the user cannot perform the "continuous download" function. That is to say, once the complete file is not downloaded

If the download is interrupted, the download must start from 0. Inconvenient. To solve this problem, we need to use AllowRetrieveRestart

.

(2)
Upload is the same. In the initial settings, if half of the uploaded files are suddenly interrupted, they must be re-uploaded from 0. To

To solve this problem, we use AllowOverwrite and AllowStoreRestart. Because resume is allowed at the same time

Overwrite.

Note that HiddenStor and AllowStoreRestart conflict with each other and only one of them can be used. Why? Please

Consider it yourself.

(3)
Specific Method:

Edit/etc/proftpd. conf

Command: vim/etc/proftpd. conf

<Directory/home/ftp>
AllowOverwrite on
AllowRetrieveRestart on
AllowStoreRestart on
</Directory>

Or expand the scope:

<Directory/*>
AllowOverwrite on
AllowRetrieveRestart on
AllowStoreRestart on
</Directory>

The preceding steps are completed. Follow up if you have any questions. --- By ouki

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.