How to setup vsFTP
System: Fedora Core 5, with all updates. vsFTP version: 2.0.4, but at the time of writing this, the latest version is 2.0.5 Scenario: Config to allow BOTH real account and anonymous account come in. Concept: My through is: if we allow both real and anonymous account come in, first anonymouse_enable=YES and local_enable=YES, write_enable=YES also. For security reason, chroot_list shoule be YES and add a chroot_list file also. For the same reason, user_list should be YES and add a user_list file also. Here comes to the hard part: - Assume that the default ftp folder is /var/ftp, inside this folder there is a folder call pub - Assume also that there is another folder called /home/myFTP, which is a home folder for user: myFTP. BY DEFAULT, /home/myFTP can only be accessed by myFTP only. i.e. file user and group are both: myFTP If I want to access /home/myFTP through FTP, first mount the folder: mount --bind /home/myFTP /var/ftp/pub The above command means: when I accessd /var/ftp/pub,...