This article introducesFTPServerProftpd, Very easy to use, I have my experience below.
I,Install and configure Proftpd
Code:
Emerge proftpd
Configure proftpd now. Here is my/etc/proftpd. conf. You can refer to the modification. The following items are mainly configured:
Code:
ServerName "Microweb FTP Site"
ServerType standalone // if it is started by xinetd, change it to inetd.
Port 21
// Configure an anonymous logon service
// The main directory for anonymous logon is located at/var/ftproot (you need to create a directory first). The default directory is/home/ftp.
AllowAll
MaxClients 5 "Sorry, max % m users -- try again later"
User ftp
Group ftp
UserAlias anonymous ftp
DenyAll
Ii. Start proftpd
Code:
/Etc/init. d/proftpd start
Rc-update add proftpd default // add proftpd to the startup level
Use your ftp client (such as ncftp, ftp, and gftp) to log on to localhost or your ServerName!
You can use the ftptop command to view the running status of your ftp server.
Through the introduction of the article, we are sure that everyone knows the Proftpd installation configuration and startup! Hope it will be useful to you!