Chrooted SSH/SFTP Tutorial (Debian Etch)
Chrooted SSH/SFTP Tutorial (Debian Etch)Version 1.0 This tutorial describes two ways how to give users chrooted SSH access. With this setup, you can give your users shell access without having to fear that they can see your whole system. Your users will be jailed in a specific directory which they will not be able to break out of. The users will also be able to use SFTP in their chroot jails. This document comes without warranty of any kind! I want to say that this is not the only way of setting up such a system. There are many ways of achieving this goal but this is the way I take. I do not issue any guarantee that this will work for you!
1 Preliminary NoteThis setup is based on a Debian Etch (Debian 4.0) system. The first way to set up chrooted SSH is by hand and very similar to the method shown in this tutorial for Debian Sarge: http://www.howtoforge.com/chrooted_ssh_howto_debian. The chrooted SSH will be installed in such a way that it will still use the configuration files of the standard OpenSSH Debian package which are in /etc/ssh/, and you will be able to use the standard OpenSSH Debian init script /etc/init.d/ssh. Therefore you do not have to create your own init script and configuration file. The second way is to use the make_chroot_jail.sh script from http://www.fuschlberger.net/programs/ssh-scp-sftp-chroot-jail/. This setup is different from the first one in that we don't need to recompile OpenSSH. Instead of /bin/sh or /bin/bash, the chrooted users use /bin/chroot-shell which uses the sudo and chroot commands to chroot the users. This method is also different in that the users don't have a dot in their homedirs in /etc/passwd (therefore it cannot be used by control panels such as ISPConfig, which is no problem with the first method). Please take a look at http://www.fuschlberger.net/programs/ssh-scp-sftp-chroot-jail/ to see what this script can do for you and what not. You should decide for one way - please don't use both ways at the same time!
2 First Method (By Hand)2.1 Install The Chrooted OpenSSHFirst we install some prerequisites: cd /tmp Then we download the patched OpenSSH sources, and we configure them with /usr as directory for the SSH executable files, with /etc/ssh as the directory where the chrooted SSH will look for configuration files, and we also allow PAM authentication: wget http://chrootssh.sourceforge.net/download/openssh-4.5p1-chroot.tar.bz2
2.2 Create The Chroot EnvironmentNext I create a chroot environment under /home/chroot. This is the directory that all chrooted SSH users will get jailed in, i.e. they will not be able to see any files/directories outside /home/chroot. I have to create some directories in /home/chroot, and I have to copy a few binaries like /bin/bash, /bin/ls, etc. as well as the libraries on which these binaries depend into the chroot environment so that they are available to any chrooted user. mkdir -p /home/chroot/home/ chmod 666 dev/null Now that we have created the necessary directories, we are going to copy some binaries and all the libraries on which they depend into the chroot environment. This is an excerpt of a script that I found on http://mail.incredimail.com/howto/openssh/create_chroot_env that does this. I've modified it a little bit: vi /usr/local/sbin/create_chroot_env
(If you want to make more programs available to your chrooted users, just add these programs to the APPS line.) Now we make the script executable and run it: chmod 700 /usr/local/sbin/create_chroot_env Next we have to copy a few additional files and libraries to the chroot jail: cp /lib/libnss_compat.so.2 /lib/libnsl.so.1 /lib/libnss_files.so.2 /lib/ld-linux.so.2 /lib/libcap.so.1 /lib/libnss_dns.so.2 ./lib/ cp /etc/hosts etc/ cp /usr/lib/libgssapi_krb5.so.2 usr/lib/ Then we do this: echo '#!/bin/bash' > usr/bin/groups You should also copy the line of the group in which you will create new users from /etc/group to /home/chroot/etc/group. In this tutorial we will create users in the group users, so we do this: grep /etc/group -e "^root" -e "^users" > etc/group and restart OpenSSH: /etc/init.d/ssh restart
2.3 Create A Chrooted UserEven with the chrooted SSH that we have just installed you can log in without being chrooted (which makes sense if you log in as root, for example). Now, how does the chrooted SSH decide whom to chroot and whom not? That's easy: the chrooted SSH looks up the user who is trying to log in in /etc/passwd. If the user's home directory in /etc/passwd has a . (dot) in it, then the user is going to be chrooted. Example (from /etc/passwd): user_a:x:2002:100:User A:/home/user_a:/bin/bash This user will not be chrooted. user_b:x:2003:100:User B:/home/chroot/./home/user_b:/bin/bash This user will be chrooted. Now we create the user testuser with the home directory /home/chroot/./home/testuser and the group users (which is the default group for users on Debian so you do not have to specify it explicitly): useradd -s /bin/bash -m -d /home/chroot/./home/testuser -c "testuser" -g users testuser Then we give testuser a password: passwd testuser Finally, we have to copy the line for testuser in /etc/passwd to /home/chroot/etc/passwd: grep /etc/passwd -e "^testuser" >> /home/chroot/etc/passwd We have already copied the users group line from /etc/group to /home/chroot/etc/group so we do not have to do this here again. If you create a chrooted user in another group than users, add this group to /home/chroot/etc/group: grep /etc/group -e "^othergroup" >> /home/chroot/etc/group Now try to log in to SSH or SFTP as testuser. You should be chrooted and not be able to browse files/directories outside /home/chroot.
|
Join the discussion.
www.seamlessenterprise.com
IP Convergence
Integrate your wireless and wireline networks.
Learn how from the experts at Sprint.
www.seamlessenterprise.com
Wireless & Wireline Integration
Thoughts, strategies and solutions: join the discussion
www.seamlessenterprise.com
Unified Communications 2009
Join the Discussion. Now.
www.seamlessenterprise.com





print: 
Recent comments
3 hours 57 min ago
5 hours 26 min ago
9 hours 26 sec ago
11 hours 53 min ago
14 hours 51 min ago
15 hours 32 min ago
15 hours 47 min ago
16 hours 46 min ago
17 hours 51 min ago
18 hours 25 min ago