|
vsftp jail and mounted files systems
I have a ftp server setup for our organization. I wanted to jail users in their home directory so they can not download any sensitive files.
Added this line to the vsftpd.conf file:
chroot_local_user=YES
Which did the trick just fine.
BUt, We have a CIFS mounted share that some people need access to. It is mounted as follows:
//Server/Share /Sharename
So it is mounted in the root directory. I then had symbolic links pointing to the folders inside this share in the users home directory to allow them to get to these files (read only via fstab).
Now when I jail them the symbolic links show up but they are unable to follow them since they are jailed.
Any ideas for a workaround?
|