Write an FTP server (1)--Requirements analysis

Source: Internet
Author: User
Tags ftp commands ftp file file transfer protocol ftp file transfer ftp file transfer protocol

An FTP server to have what function, take vsftpd for example, VSFTPD in addition to implement basic FTP command, also support control connection, parameter can be configured, breakpoint continued transmission and so on.

Most of the configuration and features of VSFTPD can be seen in its configuration file under Linux performing man 5 vsftpd.conf.

If you implement an FTP server, the following functions are implemented:

1. Standard FTP commands

Basic FTP File Transfer Protocol, you can refer to the RFC

A simplified Chinese version is included here:Https://github.com/zilandy/zFTP doc

2. Parameter configuration

Change the execution parameters by configuration file similar to vsftpd.conf

3. Idle Disconnect

The client is unresponsive, idle time is disconnected, and the resource is left to other users

such as: idle_session_timeout=600

4. Limit of connections

Total number of connections max_clients=50

Number of individual IP connections max_per_ip=5

5. Speed limit

Limitations of upload download speed

Local_max_rate=100 (KB)

6. Continuation of the breakpoint

The client also needs to configure the breakpoint to continue

Write an FTP server (1)--Requirements analysis

Related Article

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.