Ubuntu 22.04
Sponsored Link

FTP : Install ProFTPD2022/05/16

 
Install ProFTPD to configure FTP Server.
[1] Install and Configure ProFTPD.
root@www:~#
apt -y install proftpd-basic
root@www:~#
vi /etc/proftpd/proftpd.conf
# line 11 : turn to [off] if not need

UseIPv6
off
# line 17 : change to your hostname

ServerName
"www.srv.world"
# line 39 : 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