June 2016
Beginner
456 pages
9h 31m
English
In this recipe, we will learn how to install the File Transfer Protocol (FTP) server and configure it to use SSL encryption.
You will need access to a root account or an account with sudo privileges.
Follow these steps to install the secure FTP server:
vsftpd with the following command:$ sudo apt-get update $ sudo apt-get install vsftpd
vsftpd by editing /etc/vsftpd.conf.
sudo openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout /etc/ssl/private/vsftpd.pem -out /etc/ssl/private/vsftpd.pem
vsftpd.conf:anonymous_enable=no local_enable=yes ...
Read now
Unlock full access