Can't make chroot work with sshd. after i put the correct password the window is closed

this is what i have in auth.log

Feb 20 14:24:44 host-37 sshd[7113]: pam_unix(sshd:session): session opened for user test by (uid=0)
Feb 20 14:24:45 host-37 sshd[7113]: pam_unix(sshd:session): session closed for user test

/etc/sshd_config

Match User test
    ChrootDirectory /var/www/users/test
#    AllowTCPForwarding no
#    X11Forwarding no

this didn't work

# groupadd users
# usermod -d /test -G users test
# chown root:users /var/www/users
# chmod 750 /var/www/users; chmod g+s /var/www/users
# chown -R root:test /var/www/users/test
# chmod -R 770 /var/www/users/test; chmod g+s /var/www/users/test
vi /etc/ssh/sshd_config and change the path of ChrootDirectory for test to /var/www/users
# service sshd restart (or reload, whichever)
link|improve this question

74% accept rate
eliminate 1 possibility for errors when shell scripting, change test to something unique and not in the system already as a command, testr? Good luck. – shellter Feb 20 at 19:29
feedback

1 Answer

The proper way to do it would be to set the ChrootDirectory to /var/www/users, and then set the home directory of the test user to /test in /etc/passwd. Chroot means the root becomes /var/www/users/test, so sshd will try to put you in /var/www/users/test/$HOME the way you did it, which is probably not what you want.

Also make sure the HOME folder has the right permissions for the user to access it (should be 770 at least), and the test user needs to be able to read+execute the ChrootDirectory, so create a common group for users, chgrp that directory with it, and set the permissions to at least 750 (rwxr-x---).

This means test will be able to go up until /var/www/users (which will be / for him), and then will be able to get into his home (/test). Optionally, setgid the directories /var/www/users and /var/www/users/test, so that any files created there by root will be visible to the users.

So to recap:

# groupadd users
# usermod -d /test -G users test
# chown root:users /var/www/users
# chmod 750 /var/www/users; chmod g+s /var/www/users
# chown -R root:test /var/www/users/test
# chmod -R 770 /var/www/users/test; chmod g+s /var/www/users/test
vi /etc/ssh/sshd_config and change the path of ChrootDirectory for test to /var/www/users
# service sshd restart (or reload, whichever)
link|improve this answer
Still the same(. permissions are fine, if they don't you get "fatal: bad ownership or modes for chroot directory component " – Crazy_Bash Feb 20 at 13:07
I've updated my answer... try again with my steps. And I've set this up on Red Hat before, you won't always get the error you mentioned if the permissions are wrong, trust me. It will just do what it does for you too. (Did for me) – Yanick Girouard Feb 20 at 13:07
:( did every step and still getting session closed for user – Crazy_Bash Feb 20 at 13:30
Any chance you can post your whole sshd_config file? – Yanick Girouard Feb 20 at 18:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.