Debian 10 Buster
Sponsored Link

FTP : Install ProFTPD2019/07/30

 
Install ProFTPD to configure FTP server to transfer files.
[1] Install ProFTPD.
root@www:~#
apt -y install proftpd
root@www:~#
vi /etc/proftpd/proftpd.conf
# line 11: turn off if not need IPv6

UseIPv6
off
# line 15: change to your hostname

ServerName
"www.srv.world"
# line 36: uncomment ( specify root directory for chroot )

DefaultRoot ~
root@www:~#
vi /etc/ftpusers
# add users you prohibit FTP connection

test
root@www:~#
systemctl restart proftpd

Matched Content