Setting Up an FTP Site (CentOS 7.2)
Scenarios
This section guides you through the setup of an FTP site on a Linux ECS using vsftpd. vsftpd is an FTP server software that is widely used in Linux releases. The CentOS 7.2 64bit OS is used as an example in this section.
Solution Architecture

Advantages
- A website with a simple networking architecture can be quickly set up.
- The website is secure and easy to use.
Resource Planning
Resource |
Description |
Cost |
---|---|---|
VPC |
VPC CIDR block: 192.168.0.0/16 |
Free |
VPC subnet |
|
Free |
Security group |
Inbound rule (active mode):
Inbound rule (passive mode):
|
Free |
ECS |
|
The following resources generate costs:
For billing details, see Billing Modes. |
vsftpd |
A free, open-source FTP software. |
Free |
Process
Procedure
- Install vsftpd.
- Log in to the ECS.
- Run the following command to install vsftpd:
yum install -y vsftpd
If information similar to the following is displayed, vsftpd has been installed.
- Run the following command to configure enable FTP to start automatically upon ECS startup:
systemctl enable vsftpd.service
- Run the following command to start FTP:
systemctl start vsftpd.service
- Run the following command to obtain the port running FTP:
netstat -antup | grep ftp
Information similar to the following is displayed.
- Configure vsftpd.
After vsftpd is installed, anonymous FTP is enabled by default, allowing you to log in to the FTP server without requiring the login username and password. However, you are not allowed to modify or upload files. If you attempt to log in to the FTP server using the Linux OS account, your request will be rejected by vsftpd, but you are allowed to configure the username and password in vsftpd for logging in to the FTP server. To do so, perform the following operations:
- Create a user.
For example, to create user ftpadmin, run the following command:
useradd ftpadmin
- Run the following command to configure the password of user ftpadmin:
passwd ftpadmin
- Run the following command to create a file directory for the FTP server, /var/ftp/work01 is used as an example:
mkdir /var/ftp/work01
- Run the following command to change the owner of the created file directory to the local user for logging in to the FTP server:
chown -R ftpadmin:ftpadmin /var/ftp/work01
- Modify the vsftpd.conf configuration file.
- Run the following command to open the file:
vi /etc/vsftpd/vsftpd.conf
- Press i to enter insert mode.
- Modify the vsftpd.conf file.
Set FTP to active or passive mode based on site requirements. If other Huawei Cloud ECSs need to use EIPs to access the FTP server that is set up on a Huawei Cloud ECS, set FTP to passive mode.
- Parameters for configuring the active FTP mode:
#No anonymous login to the FTP server is allowed. Local users are allowed to log in to the FTP server with their local file directories specified. anonymous_enable=NO #No anonymous login to the FTP server is allowed. local_enable=YES #Local users are allowed to log in to the FTP server. local_root=/var/ftp/work01 #Specifies the file directory used by a local FTP user. #The following parameter allows login users to visit their own home directories: chroot_local_user=YES #The directory access rule applies to all users. chroot_list_enable=YES #The directory access rule does not apply to exclusive users. chroot_list_file=/etc/vsftpd/chroot_list #Specifies exclusive users. allow_writeable_chroot=YES
- The passive FTP mode requires not only all the parameters configured for the active FTP mode, but also include the following parameter settings:
#The public IP address of the FTP server and the range of accessible ports must also be configured. listen=YES listen_ipv6=NO pasv_address=xx.xx.xx.xx #Public IP address of the FTP server pasv_min_port=3000 #Minimum port number in passive FTP mode pasv_max_port=3100 #Maximum port number in passive FTP mode
- Parameters for configuring the active FTP mode:
- Press Esc to exit insert mode. Then, enter :wq to save the settings and exit.
- Create the chroot_list file in /etc/vsftpd/.
touch chroot_list
The chroot_list file contains exclusive users to whom the home directory access rules do not apply. To allow a user to access non-home directories, add the username to this file. If there is no exclusive user, the chroot_list file can be left blank, but the file must be available.
- Run the following command to open the file:
- Run the following command to restart vsftpd to apply the setting:
systemctl restart vsftpd.service
- Create a user.
- Configure a security group.
After setting up the FTP site, add an inbound rule to the security group to allow packets to pass through the FTP port. For details, see Adding a Security Group Rule.
Table 2 Security group rules Priority
Action
Type
Protocol & Port
Source
1
Allow
IPv4
Protocols/TCP (Custom): 20-21
0.0.0.0/0
1
Allow
IPv4
Protocols/TCP (Custom): 1024-65535 (for example, 5000-6000)
0.0.0.0/0
- Verify the configuration on the client.
On the computer with the client installed, enter ftp://<server-IP-address>:<FTP-port-number> in the address bar. If you do not specify the port number, port 21 is used by default. If a dialog box is displayed for you to enter the username and password, the configuration is correct. After entering the username and password, you can perform operations on the FTP folder with assigned permissions.
- If active FTP mode is selected, use this method to configure the Internet Explorer browser. Otherwise, the FTP folder will be inaccessible. To configure the Internet Explorer browser, choose Tools > Internet Options > Advanced, select Enable FTP folder view, and deselect Use Passive FTP.
- If an error occurs when you use a browser to access the FTP server, clear the browser caches and try again.
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot