Distro slackware 10.0
Using ProFTPd v1.2.10
I have a couple of users I need to keep from roaming around my entire system once they log into my FTP server. There are 3 users that belong to the same group. here is the directory structure.
/home/group/user1
/home/group/user2
/home/group/user3
I want each user to have access to the group directory but not go any farther than than that. I want them jailed to /home/group. I have added these lines to my /etc/proftpd.conf file.
Code:
DefaultRoot /home/group user1
DefaultRoot /home/group user2
DefaultRoot /home/group user3
I've also tried this.
Code:
DefaultChdir /home/group group
This does drop everyone in the group group into /home/group when the log in but doesn't keep them here.
After making those changes and restarting the server each user can still leave the group folder and go up to /home and even / which I DONOT like. Any help would be appreciated.