I need to periodically give temporary and limited access to various directories on a CentOS linux server that has vsftp installed.
I've created a user using useradd [user_name] and given them a password using passwd [password].
I've created a directory in /var/ftp and then I bind this to the directory that I wish to limit access to.
What else do I need to specifically do to ensure that when this user logs into FTP, they only have access to this directory please?
chroot_list_enableand created/etc/vsftpd/chroot_list. I just didn't know what to do next. – zigojacko Oct 09 '13 at 13:09usermod -d /var/ftp/blah/ username– zigojacko Oct 09 '13 at 13:21