Comments on How to Install a Secure FTP Server with vsftpd on Debian 12

vSFTPd or Very Secure FTP Daemon is a free and open-source FTP server software. In this tutorial, you will learn how to set up and create a secure FTP server with vsftpd on a Debian 12 server. In this guide you will also learn how to secure your FTP server installation via UFW (Uncomplicated Firewall) and how to connect to the FTP server using the FTP client FileZilla.

1 Comment(s)

Add comment

Please register in our forum first to comment.

Comments

By: vaios

Thank you for this awesome guide! It was really straightforward and helped me achive my goal, although i am complete beginer when it comes to linux.

From the commands given i only encountered a problem (permission denied) with these : 

sudo echo "/bin/ftponly" >> /etc/shells

echo "bob" >> /etc/vsftpd.userlist

With a bit of googling i changed them like so:

echo "/bin/ftponly" | sudo tee -a /etc/shells

echo "bob" | sudo tee -a /etc/vsftpd.userlist

Not sure if what i changed made a difference or it would work anyway. But the ftp server works as expected.

Cheers.