<!--adsense-->ProFTPD is a proven, high-performance, scalable FTP server written from scratch, with a focus toward simplicity, security, and ease of configuration. Naturally, ProFTPD powers some of the largest sites on the Internet. It features a very Apache-like configuration syntax, modules, and a highly customizable server infrastructure, including support for multiple ‘virtual’ FTP servers, anonymous FTP, and permission-based directory visibility.
Install Proftpd Server in Ubuntu
If you want to install proftpd in ubuntu use the following command
sudo apt-get install proftpd
This will start the installation this time it will ask one question you want to run proftp server from inetd or standalone here select standalone and press enter after this installation will be completed.
Configuring ProFTPD Server
By default proftp configuration file is located under /etc i.e /etc/proftpd.conf
If you want to check the default proftpd.conf file check here
We are going to change the basic configuration for proftp server this includes security configuration also.
Now you need to edit the /etc/proftpd.conf file using vi or any other editor and you need to change the following Directives or add the following directives for proftp server configuration these are only some of basic directives if you want to know available directives check here
sudo vi /etc/proftpd.conf
Change the following directives
ServerName — Configure the name displayed to connecting users
ServerName “proftp server”
ServerIdent — Set the message displayed on connect
ServerIdent on “Welcome to proftp server”
UseReverseDNS — Toggle rDNS lookups
UseReverseDNS off
IdentLookups — Toggle ident lookups
IdentLookups off
DefaultRoot — Sets default chroot directory
DefaultRoot ~
RequireValidShell — Allow connections based on /etc/shells
RequireValidShell off
MaxClients — Limits the number of users that can connect
DenyFilter — Regular expression of command arguments to be blocked
DenyFilter \*.*/
Maxclients 30
MaxClientsPerHost — Limits the connections per client machine
MaxClientsPerHost 50
After adding these directives you need to restrat your proftpd server to take these changes effect.
sudo /etc/init.d/proftpd restart
Now your Basic server configuration is ready To perform a syntax check of your proftpd.conf file use the following command
sudo proftpd -td5
Proftp Client Installation
If you want to use commnd line ftp client in debian you need to install the ftp package using the following command
sudo apt-get install ftp
By default users can FTP in to their own home directories only
<!--adsense#banner-->
Tags: configuring proftpd ubuntu, ftp client ubuntu, ftp server ubuntu, General, install ftp client ubuntu, install proftpd ubuntu, proftpd ubuntu, Server, setup ftp server ubuntuconfiguring proftpd ubuntu, ftp client ubuntu, ftp server ubuntu, General, install ftp client ubuntu, install proftpd ubuntu, proftpd ubuntu, Server, setup ftp server ubuntu
<!-- KonaBody -->