Apesar de seu nome, ele suporta FTP. O nome VSFTPD significa "Very Secure File Transport Protocol Daemon".
resumo
The FTP (File Transfer Protocol) is used as one of the most common means of copying files between computers over the Internet. Most web based download sites use the built in FTP capabilities of web browsers and therefore most server oriented operating systems usually include an FTP server application as part of the software suite. Linux is no exception. With this page I will show how to convert a DebianGNU/Linux box into an FTP server using the vsftpd (Very Secure FTP Daemon) package which is included with the standard Debian distribution i.e. no need to compile anything ourselves which saves time and makes things work even for the inexperienced users.
Fonte: link
Existem muitos tutoriais, como este intitulado: Como configurar o vsftpd para usar SSL / TLS em um Ubuntu VPS que mostra como configurar o serviço FTP regular usando o vsftpd. A primeira seção descreve as etapas.
Depois de editar o arquivo de configuração: sudo nano /etc/vsftpd.conf
:
anonymous_enable=NO
local_enable=YES
write_enable=YES
chroot_local_user=YES
Em seguida, adicione um usuário de ftp:
$ sudo adduser ftpuser
Em seguida, crie seu diretório inicial:
$ sudo chown root:root /home/ftpuser
E crie diretórios para que eles façam upload / download para:
$ sudo mkdir /home/ftpuser/files
$ sudo chown ftpuser:ftpuser /home/ftpuser/files
Usando o Filezilla
Quando você usa filezilla
, certifique-se de ter selecionado a porta e o tipo de protocolo apropriados na caixa de diálogo do gerenciador de sites.
Referências
Como configurar vsftpd usar SSL / TLS em um Ubuntu VPS