The FreeBSD Diary |
(TM) | Providing practical examples since 1998If you buy from Amazon USA, please support us by using this link. |
Jails under FreeBSD 6
8 March 2007
|
This article shows you how I created a jail for under FreeBSD 6. This article is based on a previous article. I have written previously about jails on FreeBSD 4 and on FreeBSD 5 . The goal of this jail is the creation of a test environment for updating the Bacula ports that I maintain |
Lift and separate
|
Jails can be used to separate different processes and keep them apart from each other so they cannot interfere. For example, you could run Apache in a jail and keep it away from everything else on the machine. Should an exploit be found in Apache and used to compromise your system, the intruders can only do what the jail allows them to do. A jail can consist of a full operating system, or a single executable. From within a jail, they are chroot'd and cannot see anything outside of the jail. At the same time, it appears to them as if they are running on their own machine with their own operating system. As far as they know, they have their own computer and nobody else is on the system. Running a virtual system within a jail is a good solution if you want to provide someone with resources, but don't want them to have complete control over your system. A jail can help you deal with issues of security, access, and increase utilization of existing resources, all at the same time. |
Jail documentation
|
The main document for creating a jail is
man jail.
I followed the instructions listed under Setting up a Jail Directory
Tree. I used those instructions to create the jail. You will need the full
source tree for the system you going to create. I used the
One step from man jail that I did not follow:
I put my jail at
|
Terminology: host versus jail
|
The host environment is the main system and is where you first install FreeBSD on the computer. It is in the host environment that you create a jail. The Bacula project will do their testing in the jail. They have access to the jail and only the jail. They will not have access to the host environment at all. This concept of host environment and jail environment will be used later in this article. It is important that you understand what each one is. In this example, the host environment will be at IP address 192.168.0.100 and the jail will be at 192.168.0.155. |
Modifying other daemons
|
Most daemons will listen to whatever IP addresses are available to them. After starting your jail, if you try to ssh to it, you will not get into it. You'll be in the host environment instead. To get into the jail environment via ssh, you need to:
Host environment syslogd
This entry in
That allows Host environment inetd
This entry in
You should note that the first part of the above flags is from
Host environment sshdTo alter the host environment sshd so it listens only to host environment IP addresses, modify/etc/ssh/sshd_config and set the IP address for the Listen directive:
Then restart the main sshd process:
Use telnet to verify that the host environment is not listening on the jail address:
If you don't get a connection, the host environment is not listening. This assumes that you have not yet
started sshd in the jail environment.
Jail environment sshd
To start sshd in the jail environment, add the following line to
To get DNS working, add something like this to /etc/resolv.conf: search example.org nameserver 10.0.0.67 nameserver 10.0.0.98 Jail environment syslogd
In addition, I also swapped console output to
|
Configuring the Jail
|
Next, you'll want to read the part of the man page titled
|
Starting the jail for the first time
|
From man jail, to start a jail, issue this command:
That prompt (#) indicates you are now in the jail environment. Now you can run the start up processes:
For the most part, this looks exactly like a normal startup. While you have it running, you might want to add a user, set the root password, etc. I had some problems with ps:
This usually indicate a kernel that is not in sync with world. To fix this problem, I repeated some of the steps under man 8 jail.
In hindsight, I think I missed the |
Starting and stopping the jail automagically
|
With 6.2 comes /etc/rc.d/jail, a startup script for jails. With a bit of fishing in /etc/defaults/rc.conf and some trial and error, I figured out how to use this script. Here are my entries from /etc/rc.conf: jail_enable="YES" # Defaults for all jails: jail_interface="fxp0" # Interface to create the IP alias on jail_devfs_enable="YES" # mount devfs in the jail jail_procfs_enable="YES" # mount procfs in jail # list of jails on this machine jail_list="ducky" # values for each jail listed above jail_ducky_rootdir="/usr/home/jails/ducky" # Jail's root directory jail_ducky_hostname="ducky.example.org" # Jail's hostname jail_ducky_ip="192.168.0.155" # Jail's IP number I could have used jail_ducky_interface, jail_ducky_devfs_enable, and jail_ducky_procfs_enable, but all jail variables, except rootdir, hostname and ip, can be defined without the jail name. Thus, you can set defaults, and then specify only the exception. A fine FreeBSD tradition. |
Additional resources
|
Just after this article appeared on ONLamp, Anthony Nguyen wrote in with these great
resources:
He also mentioned:
Paul Dekkers also wrote in with:
|
Jails run well
|
Jails run virtual machines very well. They look very much like a real system. You must look pretty close to be able to tell you're in a jail. My jail allows the Bacula developers to have a machine of their own. It also allows me to keep their work totally separate from my own. A jail can be used to deal with security issues and to increase the utilization of an existing machine while giving everyone their own virtual machine. There's no reason why you couldn't run many different jails on the same computer. Enjoy. |