Debian 11 Bullseye
Sponsored Link

FTP : Install Pure-FTPd2021/09/14

 
Install Pure-FTPd to configure FTP server to transfer files.
[1] Install and Configure Pure-FTPd.
root@www:~#
apt -y install pure-ftpd
# run as a daemon

root@www:~#
echo "yes" > /etc/pure-ftpd/conf/Daemonize
# prohibit Anonymous

root@www:~#
echo "yes" > /etc/pure-ftpd/conf/NoAnonymous
# enable chroot

root@www:~#
echo "yes" > /etc/pure-ftpd/conf/ChrootEveryone
# only IPV4 if not need IPv6

root@www:~#
echo "yes" > /etc/pure-ftpd/conf/IPV4Only
root@www:~#
systemctl restart pure-ftpd

Matched Content