Introduction: Can be achieved through instruction DefaultRoot. For example, if users want to ftpusers group limits in their own home directory, you need to first create the group: ...
ProFtpd Quick Guide
At this time by the following command to test proftpd is running:
The following quote of content:
C: WINDOWS> ftp192.168.2.33
Connectedto192.168.2.33.
220ProFTPD1.2.0rc3Server (ProFTPDDefaultInstallation) [ftpd.test.com.cn]
User (192.168.2.33: (none)): ideal
Password:
230Useridealloggedin.
ftp>
Then now you have a secure ftp server.
3, FAQ
1) I installed proftpd after had a problem, how do I debug?
Through the command! / Usr/local/sbin/proftpd-d9-n start proftpd to debug, then proftpd will be printed to the debugging information for debugging on the consle use.
2) Why is my proftpf start after the anonymous user can not log in?
View proftp configuration file / usr / local / etc / proftpd.conf, modify <Anonymous~ftp> for <Anonymous/home/ftp> (here / home / ftp can be any hope of anonymous user after logging in the root directory of the current, but to ensure that To make the directory allows users to access ftp), and if <Anonymous/home/ftp> part of the User directive specifies the user as ftp user, you will need in the configuration file, add the following command instructions: RequireValidShelloff
3) How do I achieve a normal user after logging in to their limited access to a directory under the?
Can be achieved through instruction DefaultRoot. For example, if users want to ftpusers group limits in their own home directory, you need to first create the group:
/ usr / sbin / groupaddftpusers
Then the user added to the ideal group: usrmod-Gftpusersideal
Finally, in the proftpd.conf file, add the following: DefaultRoot ~ ftpusers
Can also restrict users log on only after the access their home directory a subdirectory: Default! Root ~ / anoftpftpusers
Of course, users can be restricted under other directories, rather than their own home directory: DefaultRoot / tmpftpusers
Can also be limited to a user group is limited to certain users, while others no restrictions are imposed: DefaultRoot ~ ftpusers,! Empolyee
This directive is only limited direct ftpusers group empolyee group of users are not restricted.



