Tutorial on setting up an FTP server using VSFTP in Ubuntu

Source: Internet
Author: User
Enter sudoapt-getinstallvsftpd on the terminal. After installation, an ftp directory is created under home. You can see an ftp space with blank content. 1. Install vsftpd
Terminal input sudo apt-get install vsftpd
After installation, an ftp directory is created under/home/. You can see an ftp space with blank content.
By default, anonymous users are not allowed to log on.

2. Set the vsftpd. conf file
Back up this file before modification: sudo cp/etc/vsftpd. conf/etc/vsftpd. conf. old
Parameter meaning:
Anonymous_enable = yes (anonymous login allowed)
Dirmessage_enable = yes (The. message content under the directory is displayed when the directory is switched)
Local_umask = 022 (local file permission on FTP, default: 077)
Connect_form_port_20 = yes (enable data connection on the FTP data port )*
Xferlog_enable = yes (enable upload and download logs)
Xferlog_std_format = yes (use the standard log format)
Ftpd_banner = XXXXX (welcome information)
Pam_service_name = vsftpd (Verification Method )*
Listen = yes (independent VSFTPD server )*
Function: You can only connect to the FTP server, but cannot upload or download files.
Note: All links related to log welcome information are optional. Any account with an asterisk must be added, which is the basic FTP option.
Enable Anonymous FTP Server Upload permission:
Anon_upload_enable = yes (the upload permission is open to anonymous accounts)
Anon_mkdir_write_enable = yes (an anonymous account can create a directory and upload files to it)
Write_enable = yes (grant write permission to local users)
Anon_other_write_enable = yes (anonymous accounts can have the permission to delete)
Anon_world_readable_only = no (enable the permission to upload data to an anonymous server)
Configuration of FTP server connection (independent server) for normal users:
Local_enble = yes (the local account can log on)
Write_enable = no (You are not authorized to delete or modify files after logging on to the local account)
Function: You can use a local account to log on to the vsftpd server and have the permission to download and upload files.
Note: The anonymous server can log on but cannot upload or download the information that disables Anonymous logon.
User Login is restricted to other directories, but only to its main directory:
Set all local users to execute chroot
Chroot_local_user = yes (all local accounts can only be in their own directories)
Set the specified user to execute chroot
Chroot_list_enable = yes (the list in the file can be called)
Chroot_list_file =/any specified path/vsftpd. chroot_list
Note: vsftpd. chroot_list is not created and needs to be added by yourself. To control the account, add the account directly in the file.
Restrict access to FTP by local users:
Userlist_enable = yes (use userlistlai to restrict user access)
Userlist_deny = no (users in the list are not allowed to access)
Userlist_file =/Specify the path where the file is stored/(the path where the file is stored)
Note: Enable userlist_enable = yes. You cannot log on to an anonymous account.
Security Options
Idle_session_timeout = 600 (seconds) (10 minutes after the user's session is idle)
Data_connection_timeout = 120 (seconds) (idle 2 minutes)
Accept_timeout = 60 (seconds) (disconnect the client one minute later)
Connect_timeout = 60 (seconds) (disconnect again after 1 minute)
Local_max_rate = 50000 (bite) (Local User transfer rate: 50 K)
Anon_max_rate = 30000 (bite) (anonymous user transfer rate: 30 K)
Pasv_min_port = 50000 (change the client's data connection port
Pasv_max_port = 60000 between and)
Max_clients = 200 (maximum number of FTP connections)
Max_per_ip = 4 (maximum number of connections per IP)
Listen_port = 5555 (data connection from port 5555)
Check who logged on to FTP and killed the FTP process.
Ps-xf | grep ftp
Kill process number

3. Configure the FTP address accessed by the Local Group
First, create the main directory of the user group test and FTP
Groupadd test
Mkdir/tmp/test
Then create a user
Useradd-G test-d/tmp/test-M usr1
Note: G: User Group
D: Specifies the location of the user's own directory.
M: do not create a default home directory, that is, there is no home directory.
Useradd-G test-d/tmp/test-M usr2
Then, change the owner and permissions of the folder.
Chown usr1.test/tmp/test ---- This indicates that the owner of/tmp/test is set to usr1
Chmod 750/tmp/test ---- 7 indicates wrx 5 indicates rx 0 indicates no Permissions
The purpose of this experiment is that usr1 has the upload, deletion, and download permissions, while usr2 only has the download permission and does not have the upload and deletion permissions.
In the main configuration file vsftpd. conf, make sure that local_enable = yes, write_enable = yes, And chroot_local_usr = yes!

4. Configure non-port standard mode for independent FTP servers for Data Connection
Add Listen_port = 33333 in VSFTPD_CONF

5. configure a separate virtual FTP, use a virtual FTP user, and grant different permissions to the created four accounts.
(Two permissions are available for reading directories, one for browsing, uploading, and downloading, and the other for browsing, downloading, deleting, and modifying file names)
1> Configure the NIC
The first NIC address is 10.2.3.4 and the mask is 255.255.0.0.
Ifconfig eth0: 1 211.131.4.253 netmask 255.255.255.0 up
2> write to/etc/sysconfig (the IP address will not be lost after restarting)
Cd/etc/sysconfig/network-scripts
Cp ifcfg-eth0 ifcfg-eth0: 1
Vi ifcfg-eth0: 1 where the changes are as follows
DEVICE = eth0: 1
BROADCAST = 211.131.4.255
HWADDR = MAC address of the NIC
IPADDR = 211.131.4.253
NETMASK = 255.255.255.0
NETWORK = 211.131.4.0
ONBOOT = yes
TYPE = Ethernet
Wq exit
3> enter the cp vsftpd. conf folder where vsftpd. conf is located.
Modify vsftpd. conf and add the following information:
Listen_address = 10.2.3.4
Modify vsftpd2.conf and add the following information:
Listen_address = 211.131.4.253
Ftpd_banner = this is a virtual ftp test
The virtual FTP server has been established.
4> Create logins.txt
Vi/tmp/logins.txt
Add the following information:
Longlei ------------ User Name
Longlei ------------ Password
Zhangweibo
Zhangweibo
Jinhui
Jinhui
Lxp
Lxp
Format: one user name and one password
5> Create a password library file for the visitor and modify its permissions.
Db_load-T-t hash-f/tmp/logins.txt/etc/vsftpd_login.db
6> Create in/etc/pam. d/
Add the following information in
Auth required/lib/security/pam_userdb.so db =/etc/vsftpd_login
Account required/lib/security/pam_userdb.so db =/etc/vsftpd_login
7> create a directory in/var/ftp/and change its attributes and its owner
Useradd-d/var/ftp/test qiang
Chmod 700/var/ftp/test
Add the test_file test file to the directory.
8> enter vsftpd2.conf to modify the information (which can be yes)
Listen_yes
Anonymous_enable = no
Local_enable = yes
Write_enable = no
Anon_upload_enable = no
Anon_mkdir_write_enable = no
Anon_other_write_enable = no
Chroot_local_user = yes
Guest_enable = yes ---------- starting with a virtual user
Guest_username = qiang ------ map virtual users to local users
Listen_port= 5555
Max_client = 10
Max_per_ip = 1
Ftpd_banner = this is a virtual server and users
Pam_service_name = ftp. vu
Note: The lower the permissions given in the master configuration file, the larger the space for user permission Division during subsequent user management, because the highest limit of the master configuration file is that the service first reads the master configuration file and then reads the user configuration file
Run the/etc/init. d/vsftpd restart command to restart the ftp server.
Now the virtual USER is created.
9> Create the virtaul file directory in the directory where VSFTPD_CONF is located, and create a configuration file named after your username in the file directory.
Longlei zhangweibo o jinhui lxp
Add the following to longlei:
Anon_world_readable_only = no
Add in lxp
Anon_world_readable_only = no
In this way, the two users have permission to browse the directory.
Add in jinhui
Anon_world_readable_only = no
Write_enable = yes
Anon_upload_enable = yes
This user has the permission to upload, download, and browse
Add
Anon_world_readable_only = no
Write_enable = yes
Anon_upload_enable = yes
Anon_other_write_enable = yes
This user has the permission to upload, download, delete file directories, modify file names, and browse
10> modify vsftpd2.conf
Add user_config_dir =/vsftpd. conf to the directory/virtual
Restart the server.
All configuration information in VSFTPD_CONF
Anonymous_enable = yes (anonymous login allowed)
Dirmessage_enable = yes (The. message content under the directory is displayed when the directory is switched)
Local_umask = 022 (local file permission on FTP, default: 077)
Connect_form_port_20 = yes (enable data connection on the FTP data port )*
Xferlog_enable = yes (enable upload and download logs)
Xferlog_std_format = yes (use the standard log format)
Ftpd_banner = XXXXX (welcome information)
Pam_service_name = vsftpd (Verification Method )*
Listen = yes (independent VSFTPD server )*
Anon_upload_enable = yes (Open upload permission)
Anon_mkdir_write_enable = yes (you can create a directory and upload files to it)
Write_enable = yes (grant write permission to local users)
Anon_other_write_enable = yes (anonymous accounts can have the permission to delete)
Anon_world_readable_only = no (open anonymous user browsing permission)
Ascii_upload_enable = yes (enable the upload ASCII transfer mode)
Ascii_download_enable = yes (enable the ASCII transmission mode for download)
Banner_file =/var/vsftpd_banner_file)
Idle_session_timeout = 600 (seconds) (10 minutes after the user's session is idle)
Data_connection_timeout = 120 (seconds) (idle 2 minutes)
Accept_timeout = 60 (seconds) (disconnect the client one minute later)
Connect_timeout = 60 (seconds) (disconnect again after 1 minute)
Local_max_rate = 50000 (bite) (Local User transfer rate: 50 K)
Anon_max_rate = 30000 (bite) (anonymous user transfer rate: 30 K)
Pasv_min_port = 50000 (change the client's data connection port
Pasv_max_port = 60000 between and)
Max_clients = 200 (maximum number of FTP connections)
Max_per_ip = 4 (maximum number of connections per IP)
Listen_port = 5555 (data connection from port 5555)
Local_enble = yes (the local account can log on)
Write_enable = no (You are not authorized to delete or modify files after logging on to the local account)
This is a group
Chroot_local_user = yes (all local accounts can only be in their own directories)
Chroot_list_enable = yes (the list in the file can be called)
Chroot_list_file =/any specified path/vsftpd. chroot_list (prerequisite: chroot_local_user = no)
This is another group
Userlist_enable = yes (users in the specified file cannot access it)
Userlist_deny = yes
Userlist_file =/specified path/vsftpd. user_list
I started the ticket again.
Banner_fail =/path/file name (the file content is displayed when the connection fails)
Ls_recurse_enable = no
Async_abor_enable = yes
One_process_model = yes
Listen_address = 10.2.2.2 (bind the virtual service to a port)
Guest_enable = yes (Virtual users can log on)
Guest_username = User Name (ing virtual users to local users)
User_config_dir =/any specified path/folder created by the user policy (specify the path of different virtual user configuration files)
Another group
Chown_uploads = yes (change the owner of the uploaded file to root)
Chown_username = root
Another group
Deny_email_enable = yes (whether anonymous users are allowed to use certain email addresses)
Banned_email_file = // any specified path/xx/
Yes
Pasv_enable = yes (server uses passive mode)
User_config_dir =/any specified path // any file directory (specify the path where the virtual user stores the configuration file)
To use a local user to log in and close the Guest user, you must set the following: Command:
Anonymous_enable = no
Guest_enable = no
Local_enable = yes
Write_enable = yes
Local_umask = 022
Chroot_list_enable = yes
Chroot_list_file =/etc/vsftpd. chroot_list (if not, create it by yourself) (fill in the local user name to be logged in etc/vsftpd. chroot_list)

6. Solve vsftpd Chinese garbled characters
Install the vsfpd in the source, configure all the functions, and then solve the Chinese Garbled text problem.
After you delete the source vsftpd, ITS/init. d/vsftpd and/vsftpd. conf will not be deleted. You can lay a good foundation for us, or you will find it helpless! If you compile and install the SDK directly, the attachment will show my init. d/vsftpd and vsftpd. conf files. overwrite them to/etc!

Start compilation preparation and prepare the library packages required by the compiling environment.
Sudo apt-get build-dep vsftpd
Here, we use vsftpd in the source to be installed first, and then uninstall it.
Sudo apt-get install vsftpd
Apt-get remove vsftpd
Download the attachment and decompress the package
Tar-zxvf vsftpd-2.0.6
Cd vsftpd-2.0.6
Sudo su: Use the root user to start Compilation
Make # compile the command. If no error occurs, the command is successful.
Make install # install
If the directory cannot be found during installation, create the missing directory.
Basically, the system prompts that the/man8 and/man5 directories are missing. After the directories are created, make install again.
Next we will test the effect of modifying the configuration file, add
Charset_filter_enable = YES # enable character filtering
Charset_client = GB2312 # Set the client character to simplified Chinese
Now let's test the service.
Sudo/etc/init. d/vsftpd restart
Upload a Chinese file under win to see the effect. Then, close the characters in the configuration file and restart the service.
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.