From owner-freebsd-hackers@FreeBSD.ORG Sun Apr 17 16:26:23 2005 Return-Path: Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4C2AD16A4D2 for ; Sun, 17 Apr 2005 16:26:23 +0000 (GMT) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.197]) by mx1.FreeBSD.org (Postfix) with ESMTP id C39E243D1F for ; Sun, 17 Apr 2005 16:26:22 +0000 (GMT) (envelope-from franklinchef@gmail.com) Received: by wproxy.gmail.com with SMTP id 49so875601wri for ; Sun, 17 Apr 2005 09:26:22 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:user-agent:x-accept-language:mime-version:to:cc:subject:references:in-reply-to:content-type:content-transfer-encoding:from; b=WIVxvPdtpGmEo5sZnn6jJzLsanWAFeX6m21jGPxVOY76Ouex3X8+jFWmiXdnkgEKzcdrZ45gPzQ1X8Pnb8JWTjETsnZOXoue9ypx2uGbthfTfmXktvFBWdrPB6F1WUfXBAqLpyfHa4iRw21ZsSkE/4VhYihb99hyX46PDlVt8vk= Received: by 10.54.20.75 with SMTP id 75mr613006wrt; Sun, 17 Apr 2005 09:26:22 -0700 (PDT) Received: from ?192.168.5.140? ([24.37.150.112]) by mx.gmail.com with ESMTP id 10sm1411447wrl.2005.04.17.09.26.21; Sun, 17 Apr 2005 09:26:22 -0700 (PDT) Message-ID: <42628E25.8010008@gmail.com> Date: Sun, 17 Apr 2005 12:26:13 -0400 User-Agent: Mozilla Thunderbird 1.0.2 (X11/20050317) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Matt References: <42628196.4070608@comcast.net> In-Reply-To: <42628196.4070608@comcast.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit From: "Franklin Chef(news)" X-Mailman-Approved-At: Mon, 18 Apr 2005 11:59:03 +0000 cc: freebsd-hackers@FreeBSD.ORG Subject: Re: Making multiple jails X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Apr 2005 16:26:23 -0000 Matt wrote: > I'd like to create five jails on one machine. Is it possible to make > them all at the same time? I'm only familiary with creating them > individually (DESTDIR=/foo/bar). Thanks much. > _______________________________________________ > freebsd-hackers@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-hackers > To unsubscribe, send any mail to > "freebsd-hackers-unsubscribe@freebsd.org" > No problem, you can run multiple jail at the same time. All you have to do is to create different jail directories and edit rc.conf like this: jail_enable="YES" jail_list="jail1 jail2 jail3" jail_jail1_hostname="jail1.jail.org" jail_jail1_ip="192.168.4.100" ... jail_jail2_hostname="jail2.jail.org" jail_jail2_ip="192.168.4.101" ... jail_jail3_hostname="jail3.jail.org" jail_jail3_ip="192.168.4.102" ...