How To Setup ProFTPd FTP Service On Linux Mint 19.3 Tricia / Ubuntu 20.04 LTS
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
ProFTPd is a powerful FTP server program. It is very easy to configure as well.
Offcial Website -http://www.proftpd.org/
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Linux Mint 19.3 Tricia Hostname - www.example.com , ip Address - 192.168.1.30
Ubuntu 20.04 LTS Hostname - www.yourdomain.com , ip Address - 192.168.1.10
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
apt update ; apt install proftpd gedit build-essential net-tools curl git software-properties-common -y
sudo gedit /etc/proftpd/proftpd.conf &>/dev/null
UseIPv6 off
ServerName "www.example.com"
DefaultRoot ~
sudo gedit /etc/ftpusers &>/dev/null
# add users you prohibit FTP connection
test
systemctl restart proftpd ; systemctl status proftpd
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
No comments:
Post a Comment