Ubuntu 16.04
Sponsored Link

Configure FTP Server : Pure-FTPd2016/05/18

 
Install Pure-FTPd to configure FTP server to transfer files.
[1] Install Pure-FTPd.
root@www:~#
apt-get -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

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

Matched Content