Chroot FTP users to Home Directory with VSFTP on Linux

In this guide, you will learn how to chroot FTP users to the home directory with VSFTP on Linux.

Problem Definition:

In some situations, we have to give FTP access to users, but we do not want to access the whole server using the FTP protocol.

For such scenarios, we configure chroot jail for FTP users to their home directories. But sometimes, we are required to restrict them to another directory while keeping their home directories intact for SSH access.
In this article, we will show you how to install the vsftpd (Very Secure FTP) service and configure Chroot Jail for the FTP users to limit their FTP sessions to their respective /home/[username] directories.

Environment Specification:

We are using a minimal Red Hat Enterprise Linux 8 virtual machine with following specifications.

  • CPU – 3.4 Ghz (2 cores)
  • Memory – 2 GB
  • Storage – 40 GB
  • Operating System – RHEL 8.3
  • Hostname – ftp.server
  • IP Address – 0.0.0.0 /24

Create Users in Linux Operating System:

Connect with ftp.server as root user by using a ssh client.

You are required to create users for accessing your FTP server.

Therefore, execute following commands at Linux bash prompt to create users and set their respective passwords.# useradd user1 # echo “linuxpassword” | passwd –stdin user1 Changing password for user user1. passwd: all authentication tokens updated successfully. # useradd user2 # echo “linuxpassword” | passwd –stdin user2 Changing password for user user2. passwd: all authentication tokens updated successfully.

Hint: If you want to disable the SSH access for these users then you can set their login shell to /sbin/nologin.

Install VSFTPD Software on RHEL 8:

VSFTPD is the default and preferred FTP server software in famous Linux distros including RHEL 8.

You can install the software package from standard yum repositories, if you have configured a valid Red Hat subscription.

# dnf install -y vsftpd

…Installed: vsftpd-3.0.3-32.el8.x86_64 Complete!

Create Self Signed SSL Certificate for FTP Service:

Create a self signed SSL certificate for our FTP server. It is necessary, otherwise you won’t be able to login as a FTP user.

You can execute following openssl command to generate a self signed SSL certificate and a private key.

# openssl req -x509 -nodes -keyout /etc/vsftpd/vsftpd.key -out /etc/vsftpd/vsftpd.pem -days 365 -newkey rsa:2048

Generating a RSA private key ………+++++ ……+++++

writing new private key to ‘/etc/vsftpd/vsftpd.key’ —– You are about to be asked to enter information that will be incorporated into your certificate request. What you are about to enter is what is called a Distinguished Name or a DN. There are quite a few fields but you can leave some blank For some fields there will be a default value, If you enter ‘.’, the field will be left blank.

—–

Country Name (2 letter code) [XX]:IN

State or Province Name (full name) []:Name

Locality Name (eg, city) [Default City]:CIty

Organization Name (eg, company) [Default Company Ltd]:Company Name

Unit Name (eg, section) []:IT

Common Name (eg, your name or your server’s hostname) []:Centos

Email Address []:Email Address

Configure VSFTPD Service for SSL and Chroot FTP:

Add your users in vsftpd user_list file. You can use vim text editor to edit user_list file.

# vi /etc/vsftpd/user_list

Add the users in this file.

# vsftpd userlist

# If userlist_deny=NO, only allow users in this file

# If userlist_deny=YES (default), never allow users in this file, and

# do not even prompt for a password.

# Note that the default vsftpd pam config also checks /etc/vsftpd/ftpusers

# for users that are denied.

root

bin

daemon

adm

lp

sync

shutdown

halt

mail

news

uucp

operator

games

nobody

newuser1

newuser2

Take a backup of vsftpd.conf file and then edit it in vim text editor.

# cp /etc/vsftpd/vsftpd.conf /etc/vsftpd/vsftpd.conf.org

# vi /etc/vsftpd/vsftpd.conf

Locate and set following directives in this file. These settings are related to chroot FTP and SSL configurations.

userlist_enable=YES

userlist_deny=NO

ssl_enable=YES

ssl_sslv2=NO

ssl_sslv3=NO

ssl_tlsv1_2=YES

rsa_cert_file=/etc/vsftpd/vsftpd.

pem rsa_private_key_file=/etc/vsftpd/vsftpd.key

allow_anon_ssl=NO

orce_local_data_ssl=YES

force_local_logins_ssl=YES

require_ssl_reuse=NO

ssl_ciphers=HIGH

pasv_min_port=30000

pasv_max_port=31000

debug_ssl=YES

chroot_local_user=YES

local_root=/home/$USER

user_sub_token=$USER

allow_writeable_chroot=YES

Start FTP Service:

Enable and start FTP Service.

# systemctl enable –now vsftpd.service

Created symlink /etc/systemd/system/multi-user.target.wants/vsftpd.service â /usr/lib/systemd/system/vsftpd.service.

Check the status of FTP service.

# systemctl status vsftpd

â vsftpd.service – Vsftpd ftp daemon

Loaded: loaded (/usr/lib/systemd/system/vsftpd.service; enabled; vendor pres>

Active: active (running) since Sun 2021-03-21 09:37:18 EDT; 41s ago Process: 1643 ExecStart=/usr/sbin/vsftpd /etc/vsftpd/vsftpd.conf (code=exited>

Main PID: 1644 (vsftpd)

Tasks: 1 (limit: 5815)

Memory: 868.0K

CGroup: /system.slice/vsftpd.service

1644 /usr/sbin/vsftpd /etc/vsftpd/vsftpd.conf

Mar 21 09:37:18 apache-01.centlinux.com systemd[1]: Starting Vsftpd ftp daemon.>

Mar 21 09:37:18 apache-01.centlinux.com systemd[1]: Started Vsftpd ftp daemon.

Configure Linux Firewall:

Allow the FTP service ports in Linux firewall.

# firewall-cmd –permanent –add-service=ftp success

# firewall-cmd –reload success

Configure SELinux:

Set the following SELinux boolean to disable SELinux MAC (Mandatory Linux Control) for FTP users.

It is necessary because the SELinux file context for /var/www/html directory is httpd_sys_content_t. Therefore, the FTP users may face permission issues.

# setsebool -P ftpd_full_access 1

Create Chroot FTP Directories:

Create chroot FTP directories for your users.# mkdir /var/www/html/user{1..2}

Set the ownership of chroot jail directories.

# chown -R user1:apache /home/user1

# chown -R user2:apache /home/user2

Create an empty file in each directory. So you can distinguish the chroot jail directory after login by using a FTP client.

# touch /home/user1/user1_files

# touch /homeuser2/user2_files

Access the FTP Server from client:

You need a FTP client to access your FTP server. The default FTP client in RHEL 8 is lftp. You can install it from standard yum repositories.

# dnf install -y lftp

You can now use lftp command to access your FTP server.

# lftp user1@localhost Password:

lftp user1@localhost:~> ls

ls: Fatal error: Certificate verification: Not trusted (31:98:F7:05:AB:E2:0B:46:BB:39:BE:93:1F:5B:A8:BD:34:E2:71:63)

The certification warning is due to the self signed certificate. You can suppress this warning in lftp by executing following command at Linux bash prompt.

#echo “set ssl:verify-certificate no” >> /etc/lftp.conf

Now, execute lftp command again.

# lftp user1@localhost

Password:

lftp user1@localhost:~> ls -rw-r–r– 1 0 0 0 Mar 21 13:59 user1_files

You can see that the user1 is login to his own chroot FTP jail i.e. /home/user1.

Similarly, login as user2 FTP user.

# lftp user2@localhost

Password:

lftp user2@localhost:~> ls -rw-r–r– 1 0 0 0 Mar 21 13:59 user2_files

Just like user1user2 is login to his own chroot FTP jail i.e. /home/user2.


Comments are closed.