From owner-freebsd-virtualization@FreeBSD.ORG Mon Dec 1 09:45:09 2008 Return-Path: Delivered-To: freebsd-virtualization@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1CA831065670; Mon, 1 Dec 2008 09:45:09 +0000 (UTC) (envelope-from bzeeb-lists@lists.zabbadoz.net) Received: from mail.cksoft.de (mail.cksoft.de [62.111.66.27]) by mx1.freebsd.org (Postfix) with ESMTP id 8BCAA8FC08; Mon, 1 Dec 2008 09:45:08 +0000 (UTC) (envelope-from bzeeb-lists@lists.zabbadoz.net) Received: from localhost (amavis.str.cksoft.de [192.168.74.71]) by mail.cksoft.de (Postfix) with ESMTP id 9EFB141C65F; Mon, 1 Dec 2008 10:45:06 +0100 (CET) X-Virus-Scanned: amavisd-new at cksoft.de Received: from mail.cksoft.de ([62.111.66.27]) by localhost (amavis.str.cksoft.de [192.168.74.71]) (amavisd-new, port 10024) with ESMTP id o4NBjlNclj60; Mon, 1 Dec 2008 10:45:06 +0100 (CET) Received: by mail.cksoft.de (Postfix, from userid 66) id 01C8141C65E; Mon, 1 Dec 2008 10:45:06 +0100 (CET) Received: from maildrop.int.zabbadoz.net (maildrop.int.zabbadoz.net [10.111.66.10]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.int.zabbadoz.net (Postfix) with ESMTP id C75A54448D5; Mon, 1 Dec 2008 09:41:47 +0000 (UTC) Date: Mon, 1 Dec 2008 09:41:46 +0000 (UTC) From: "Bjoern A. Zeeb" X-X-Sender: bz@maildrop.int.zabbadoz.net To: freebsd-jail@freebsd.org Message-ID: <20081201085229.D80401@maildrop.int.zabbadoz.net> X-OpenPGP-Key: 0x14003F198FEFA3E77207EE8D2B58B8F83CCF1842 MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-current@freebsd.org, FreeBSD virtualization mailing list Subject: HEADS UP: r185435 multi-IPv4/v6/no-IP jails in HEAD X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-jail@freebsd.org List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Dec 2008 09:45:09 -0000 Hi, as you may have already noticed multi-IPv4/v6/no-IP jails have hit HEAD. See commit message attached. The bad news first: expect an update on the rc script to make the more obscure rc features like configuring IPs on interfaces when starting jails and giving a possible netmask work with multiple IPs and IPv6. The good news: In case you do not use those features or still only use one IP per jail everything should just work fine and there are no changes needed. More news: In case you want to use multiple IPs or a mix of v4 and v6 addresses you just give them as a comma separated list on both the command line or in rc.conf like: jail / example 192.0.2.250,2001:db8::75,2001:db8::99,2001:db8::55,2001:db8::14,192.0.2.254 /bin/sh or: jail_example_ip="192.0.2.2,2001:db8::2,2001:db8::1,2001:db8::4,2001:db8::13,192.0.2.3" In case you do want to start a jail without any IP, give an empty argument on command line: jail / noip.example.net "" /bin/sh Additionally you can give a jail a name now using the -n option: jail -n "bz's private noip jail" / noip.example.net "" /bin/sh You may not want to use special characters or whitespace but it is just a string, so you can. There are no restrictions and even 10 jails could have the same name. The jail (inside) cannot change the name. It's set upon jail creation and unchangeable from then on. What else is new: the -h option to jail makes it resolve the hostname to IP addresses and will merge those to the jail IPs. Note: that this can give you unexpected results on the primary jail IP. See jail(8) for more information. jls tries to be as backward compatible as possible. That means it will only show one IPv4 if called as `jls`; obviously this won't work well for no-IP or IPv6-only jails. This was done to try to not confuse scripts people have in their classic setups. jls -v will give you the full information, including: - state: usually ACTIVE. - in case you also give '-a' you will also see jails in other states, for example jails hanging around waiting for a socket to timeout but with no processes left after it was stopped; it will say DYING. - Every jail gets its own cpuset inherited from the process that started the jail. You can list, etc the mask by jail id: cpuset -g -j 8 or by set id: cpuset -g -s 5 Or even change it if you want. Threads within jails should be able to further restrict themselves even within the jail but nothing outside their scope. See the cpuset manpages for further information. The IPs will be listed in the following order: the primary IP per AF which is the first IP of that AF given to the jail command and then they should be sorted in ascending order. jexec now takes the optional jail name to attach to a jail but will refuse to do anything if the jail cannot be uniquely identifed. In case you use the jail name you have to give an empty argument for the jail id like: jexec -n "bz's private noip jail" "" /bin/sh You can also give both jail name and jail ID and both will have to match, else it will complain. Obviously only giving the jail id still works. The -h hostname option is gone again. You should use the jail name for management purposes now. A sample full jls output (admittedly a bit ugly this way): sun$ jls -av JID Hostname Path Name State CPUSetID IP Address(es) 21 sun / hangtest DYING 6 192.0.2.99 8 noip.example.net / bz's private noip jail ALIVE 5 3 j3.sunny.example.net /local/jails/j1 ALIVE 4 2001:db8::5 2 j2.sunny.example.net /local/jails/j1 ALIVE 3 192.0.2.1 1 j1.sunny.example.net /local/jails/j1 ALIVE 2 192.0.2.2 192.0.2.3 2001:db8::2 2001:db8::1 2001:db8::4 2001:db8::13 In case you have more questions the man pages do not address, or problem, etc. please follow-up to freebsd-jail@ . Regards, Bjoern PS: the MFC question was answered in the commit message so do not ask. -- Bjoern A. Zeeb Stop bit received. Insert coin for new game. ---------- Forwarded message ---------- Date: Sat, 29 Nov 2008 14:32:14 +0000 (UTC) Subject: svn commit: r185435 - in head: lib/libc/sys lib/libkvm share/man/man4 sys/compat/freebsd32 sys/kern sys/net sys/netinet sys/netinet6 sys/security/mac_bsdextended sys/sys usr.bin/cpuset usr.sbin/jai... Author: bz Date: Sat Nov 29 14:32:14 2008 New Revision: 185435 URL: http://svn.freebsd.org/changeset/base/185435 Log: MFp4: Bring in updated jail support from bz_jail branch. This enhances the current jail implementation to permit multiple addresses per jail. In addtion to IPv4, IPv6 is supported as well. Due to updated checks it is even possible to have jails without an IP address at all, which basically gives one a chroot with restricted process view, no networking,.. SCTP support was updated and supports IPv6 in jails as well. Cpuset support permits jails to be bound to specific processor sets after creation. Jails can have an unrestricted (no duplicate protection, etc.) name in addition to the hostname. The jail name cannot be changed from within a jail and is considered to be used for management purposes or as audit-token in the future. DDB 'show jails' command was added to aid debugging. Proper compat support permits 32bit jail binaries to be used on 64bit systems to manage jails. Also backward compatibility was preserved where possible: for jail v1 syscalls, as well as with user space management utilities. Both jail as well as prison version were updated for the new features. A gap was intentionally left as the intermediate versions had been used by various patches floating around the last years. Bump __FreeBSD_version for the afore mentioned and in kernel changes. Special thanks to: - Pawel Jakub Dawidek (pjd) for his multi-IPv4 patches and Olivier Houchard (cognet) for initial single-IPv6 patches. - Jeff Roberson (jeff) and Randall Stewart (rrs) for their help, ideas and review on cpuset and SCTP support. - Robert Watson (rwatson) for lots and lots of help, discussions, suggestions and review of most of the patch at various stages. - John Baldwin (jhb) for his help. - Simon L. Nielsen (simon) as early adopter testing changes on cluster machines as well as all the testers and people who provided feedback the last months on freebsd-jail and other channels. - My employer, CK Software GmbH, for the support so I could work on this. Reviewed by: (see above) MFC after: 3 months (this is just so that I get the mail) X-MFC Before: 7.2-RELEASE if possible From owner-freebsd-virtualization@FreeBSD.ORG Mon Dec 1 11:46:49 2008 Return-Path: Delivered-To: freebsd-virtualization@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 245231065670; Mon, 1 Dec 2008 11:46:49 +0000 (UTC) (envelope-from alexander@leidinger.net) Received: from redbull.bpaserver.net (redbullneu.bpaserver.net [213.198.78.217]) by mx1.freebsd.org (Postfix) with ESMTP id BE7E78FC12; Mon, 1 Dec 2008 11:46:48 +0000 (UTC) (envelope-from alexander@leidinger.net) Received: from outgoing.leidinger.net (pD9E2CF93.dip.t-dialin.net [217.226.207.147]) by redbull.bpaserver.net (Postfix) with ESMTP id A18C42E168; Mon, 1 Dec 2008 12:29:42 +0100 (CET) Received: from webmail.leidinger.net (webmail.leidinger.net [192.168.1.102]) by outgoing.leidinger.net (Postfix) with ESMTP id A0363182D69; Mon, 1 Dec 2008 12:29:38 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=Leidinger.net; s=outgoing-alex; t=1228130978; bh=EbV3X1oWOWL/6mM7z13+cq9OVYb0LuRt2 /FqXZqgfu0=; h=Message-ID:Date:From:To:Cc:Subject:References: In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=QhvLQdGzOL0ay6jRC1wOr6Y0SeS6SKcZO6LctCu7sgYjGgaCNXKlSv0fLdgEfWOyW hUmfA1ujG2ux5MvIaxAdQ0Qyor7YFwWsSSi98rcnipIRviD8zR9gvrO2K1WCUqgYWKm XbCYD4pIrLAdXb3FIVfCLRPpPpPuirjY9+JQQ3fsq7fwZOMsiSYpgnHGyOVoDq2jwMk wdqWcU+CgapCegzr5MCRRkleKwjspgr0euBtr8tuL0Q3cWbgYbSiBJ2wH5qsqc1kITv tkuhTCqaUlACau85apFlISHlixP5Vt0Jgtodj7XLxX/WWVM8yN0Uxs0ZQ14kWCJGVFi 2Z2XPQJBQ== Received: (from www@localhost) by webmail.leidinger.net (8.14.2/8.13.8/Submit) id mB1BTc1j023993; Mon, 1 Dec 2008 12:29:38 +0100 (CET) (envelope-from Alexander@Leidinger.net) Received: from pslux.cec.eu.int (pslux.cec.eu.int [158.169.9.14]) by webmail.leidinger.net (Horde Framework) with HTTP; Mon, 01 Dec 2008 12:29:37 +0100 Message-ID: <20081201122937.81475f0zhfsjya4o@webmail.leidinger.net> X-Priority: 3 (Normal) Date: Mon, 01 Dec 2008 12:29:37 +0100 From: Alexander Leidinger To: freebsd-jail@freebsd.org, "Bjoern A. Zeeb" References: <20081201085229.D80401@maildrop.int.zabbadoz.net> In-Reply-To: <20081201085229.D80401@maildrop.int.zabbadoz.net> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Internet Messaging Program (IMP) H3 (4.3) / FreeBSD-8.0 X-BPAnet-MailScanner-Information: Please contact the ISP for more information X-MailScanner-ID: A18C42E168.004A6 X-BPAnet-MailScanner: Found to be clean X-BPAnet-MailScanner-SpamCheck: not spam, ORDB-RBL, SpamAssassin (not cached, score=-14.9, required 6, BAYES_00 -15.00, DKIM_SIGNED 0.00, DKIM_VERIFIED -0.00, RDNS_DYNAMIC 0.10) X-BPAnet-MailScanner-From: alexander@leidinger.net X-Spam-Status: No X-Mailman-Approved-At: Mon, 01 Dec 2008 11:53:42 +0000 Cc: freebsd-current@freebsd.org, FreeBSD virtualization mailing list Subject: Re: HEADS UP: r185435 multi-IPv4/v6/no-IP jails in HEAD X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Dec 2008 11:46:49 -0000 Quoting "Bjoern A. Zeeb" (from Mon, 1 =20 Dec 2008 09:41:46 +0000 (UTC)): > Hi, > > as you may have already noticed multi-IPv4/v6/no-IP jails have hit > HEAD. See commit message attached. Will this introduce changes how multicast is handled in jails, or is =20 it the same behavior as before (whatever the previous behavior was). > Additionally you can give a jail a name now using the -n option: > jail -n "bz's private noip jail" / noip.example.net "" /bin/sh > You may not want to use special characters or whitespace but it is > just a string, so you can. There are no restrictions and even 10 jails > could have the same name. The jail (inside) cannot change the name. > It's set upon jail creation and unchangeable from then on. Is this private name visible inside the jail (I don't need this =20 feature, so I don't care, but people should know so that they don't =20 put offensive stuff there in case it is visible inside)? Bye, Alexander. --=20 Since we cannot hope for order, let us withdraw with style from the chaos. =09=09-- Tom Stoppard http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID =3D B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID =3D 72077137 From owner-freebsd-virtualization@FreeBSD.ORG Wed Dec 3 02:30:08 2008 Return-Path: Delivered-To: freebsd-virtualization@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 660EF106564A for ; Wed, 3 Dec 2008 02:30:08 +0000 (UTC) (envelope-from alexus@gmail.com) Received: from wa-out-1112.google.com (wa-out-1112.google.com [209.85.146.178]) by mx1.freebsd.org (Postfix) with ESMTP id 35FA28FC0A for ; Wed, 3 Dec 2008 02:30:07 +0000 (UTC) (envelope-from alexus@gmail.com) Received: by wa-out-1112.google.com with SMTP id m34so1608091wag.27 for ; Tue, 02 Dec 2008 18:30:07 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=gAKy5BSywuJvyXMqPdTso9iMwAQAWP4lfbcrFc3Upug=; b=VxcKGHCuzJGLG098hz3flw3MkP9pCAvo8v59JrU4SvCh3LHJS6gMkx/izBabMIGlSG JUOJubOrAV89kvhVWUQNGtX7xD0dGrAlL4kaUV29d03Bu/99Pz2Swk56VQOLpC43KjKd ythVBokhYLLET7RujtZErv1CiM08myUd/x4mk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=XJp7R741lJdulQ23w9DYZ5SsFvjS+tQk5/PDE0BgMQXmrnbmad2/K/Rk58WdL2CCms WOniP/TIKv0FGcz5Lxcvad1SM3srDRVjK1CX52rhtlz+k7OLlCXvyCXHndr70YL9hHQx ZVpbUACfRCk+5Iqsn0PUdnA/RLQkkE/9ZoKSM= Received: by 10.114.145.1 with SMTP id s1mr7770109wad.118.1228269623645; Tue, 02 Dec 2008 18:00:23 -0800 (PST) Received: by 10.114.67.7 with HTTP; Tue, 2 Dec 2008 18:00:23 -0800 (PST) Message-ID: <6ae50c2d0812021800x791d2cfeh45d590de120f76df@mail.gmail.com> Date: Tue, 2 Dec 2008 21:00:23 -0500 From: alexus To: "Alexander Leidinger" In-Reply-To: <20081201122937.81475f0zhfsjya4o@webmail.leidinger.net> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20081201085229.D80401@maildrop.int.zabbadoz.net> <20081201122937.81475f0zhfsjya4o@webmail.leidinger.net> X-Mailman-Approved-At: Wed, 03 Dec 2008 08:14:03 +0000 Cc: "Bjoern A. Zeeb" , freebsd-jail@freebsd.org, FreeBSD virtualization mailing list , freebsd-current@freebsd.org Subject: Re: HEADS UP: r185435 multi-IPv4/v6/no-IP jails in HEAD X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 03 Dec 2008 02:30:08 -0000 as far as I understood HEAD is 8.0-CURRENT is there a way for us to start using it before 8.0 hits -RELEASE which according to freebsd.org will be in june 2009, which we all know how accured their schedule is, so, my guess is very well Q4 of 2009 (if we lucky), I somehow was under impression (and i guess i was wrong) that it will come out in 7.1, I have a server that needs to be migrated and really doing so without multi ip patch will be a really big ......... -- http://alexus.org/ From owner-freebsd-virtualization@FreeBSD.ORG Fri Dec 5 13:52:58 2008 Return-Path: Delivered-To: freebsd-virtualization@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4C1691065679 for ; Fri, 5 Dec 2008 13:52:58 +0000 (UTC) (envelope-from bseklecki@collaborativefusion.com) Received: from collaborativefusion.com (mx01.pub.collaborativefusion.com [206.210.89.201]) by mx1.freebsd.org (Postfix) with ESMTP id D07F08FC18 for ; Fri, 5 Dec 2008 13:52:57 +0000 (UTC) (envelope-from bseklecki@collaborativefusion.com) Received: from Internal Mail-Server by mx01 (envelope-from bseklecki@collaborativefusion.com) with SMTP; 5 Dec 2008 08:26:14 -0500 From: "Brian A. Seklecki" To: alexus In-Reply-To: <6ae50c2d0812021800x791d2cfeh45d590de120f76df@mail.gmail.com> References: <20081201085229.D80401@maildrop.int.zabbadoz.net> <20081201122937.81475f0zhfsjya4o@webmail.leidinger.net> <6ae50c2d0812021800x791d2cfeh45d590de120f76df@mail.gmail.com> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-EI4t+pX9vDdRRyxUVUTO" Organization: Collaborative Fusion, Inc. Date: Fri, 05 Dec 2008 13:26:14 +0000 Message-Id: <1228483574.2805.499.camel@soundwave.ws.pitbpa0.priv.collaborativefusion.com> Mime-Version: 1.0 X-Mailer: Evolution 2.22.3.1 (2.22.3.1-1.fc9) X-Mailman-Approved-At: Fri, 05 Dec 2008 14:12:14 +0000 Cc: Alexander Leidinger , freebsd-jail@freebsd.org, freebsd-current@freebsd.org, FreeBSD virtualization mailing list , "Bjoern A. Zeeb" Subject: Re: HEADS UP: r185435 multi-IPv4/v6/no-IP jails in HEAD X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: bseklecki@collaborativefusion.com List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Dec 2008 13:52:58 -0000 --=-EI4t+pX9vDdRRyxUVUTO Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Tue, 2008-12-02 at 21:00 -0500, alexus wrote: > as far as I understood HEAD is 8.0-CURRENT The trick is to bribe the right people to get it RFP'd into 7.2R. :) ~BAS --=20 Brian A. Seklecki Collaborative Fusion, Inc. --=-EI4t+pX9vDdRRyxUVUTO Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) iEYEABECAAYFAkk5K/YACgkQCne6BNDQ+R+9eQCfRVFZzzxov4Wgck9iVKefyGnO 2v0AnjUE4aLlxdafu3CrkfB/a++0Hiki =xwwk -----END PGP SIGNATURE----- --=-EI4t+pX9vDdRRyxUVUTO-- From owner-freebsd-virtualization@FreeBSD.ORG Fri Dec 5 20:04:56 2008 Return-Path: Delivered-To: freebsd-virtualization@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C5C371065677; Fri, 5 Dec 2008 20:04:56 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (tim.des.no [194.63.250.121]) by mx1.freebsd.org (Postfix) with ESMTP id 80E1E8FC0A; Fri, 5 Dec 2008 20:04:56 +0000 (UTC) (envelope-from des@des.no) Received: from ds4.des.no (des.no [84.49.246.2]) by smtp.des.no (Postfix) with ESMTP id 8B57F6D43F; Fri, 5 Dec 2008 19:47:07 +0000 (UTC) Received: by ds4.des.no (Postfix, from userid 1001) id 72614844B1; Fri, 5 Dec 2008 20:47:07 +0100 (CET) From: =?utf-8?Q?Dag-Erling_Sm=C3=B8rgrav?= To: bseklecki@collaborativefusion.com References: <20081201085229.D80401@maildrop.int.zabbadoz.net> <20081201122937.81475f0zhfsjya4o@webmail.leidinger.net> <6ae50c2d0812021800x791d2cfeh45d590de120f76df@mail.gmail.com> <1228483574.2805.499.camel@soundwave.ws.pitbpa0.priv.collaborativefusion.com> Date: Fri, 05 Dec 2008 20:47:07 +0100 In-Reply-To: <1228483574.2805.499.camel@soundwave.ws.pitbpa0.priv.collaborativefusion.com> (Brian A. Seklecki's message of "Fri, 05 Dec 2008 13:26:14 +0000") Message-ID: <86skp2l804.fsf@ds4.des.no> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Cc: FreeBSD virtualization mailing list , alexus , freebsd-current@freebsd.org, Alexander Leidinger , "Bjoern A. Zeeb" , freebsd-jail@freebsd.org Subject: Re: HEADS UP: r185435 multi-IPv4/v6/no-IP jails in HEAD X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Dec 2008 20:04:56 -0000 "Brian A. Seklecki" writes: > alexus writes: > > as far as I understood HEAD is 8.0-CURRENT > The trick is to bribe the right people to get it RFP'd into 7.2R. :) The question is, does it change existing behavior, or just add new functionality? If the former, it should not be MFCed. DES --=20 Dag-Erling Sm=C3=B8rgrav - des@des.no From owner-freebsd-virtualization@FreeBSD.ORG Fri Dec 5 20:05:31 2008 Return-Path: Delivered-To: freebsd-virtualization@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6E65B1065672 for ; Fri, 5 Dec 2008 20:05:31 +0000 (UTC) (envelope-from bseklecki@collaborativefusion.com) Received: from collaborativefusion.com (mx01.pub.collaborativefusion.com [206.210.89.201]) by mx1.freebsd.org (Postfix) with ESMTP id ECC828FC0C for ; Fri, 5 Dec 2008 20:05:30 +0000 (UTC) (envelope-from bseklecki@collaborativefusion.com) Received: from Internal Mail-Server by mx01 (envelope-from bseklecki@collaborativefusion.com) with SMTP; 5 Dec 2008 15:05:29 -0500 From: "Brian A. Seklecki" To: Dag-Erling =?ISO-8859-1?Q?Sm=F8rgrav?= In-Reply-To: <86skp2l804.fsf@ds4.des.no> References: <20081201085229.D80401@maildrop.int.zabbadoz.net> <20081201122937.81475f0zhfsjya4o@webmail.leidinger.net> <6ae50c2d0812021800x791d2cfeh45d590de120f76df@mail.gmail.com> <1228483574.2805.499.camel@soundwave.ws.pitbpa0.priv.collaborativefusion.com> <86skp2l804.fsf@ds4.des.no> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-DzfM9tDmMSlP+FSmvwy3" Organization: Collaborative Fusion, Inc. Date: Fri, 05 Dec 2008 15:05:29 -0500 Message-Id: <1228507529.2805.539.camel@soundwave.ws.pitbpa0.priv.collaborativefusion.com> Mime-Version: 1.0 X-Mailer: Evolution 2.22.3.1 (2.22.3.1-1.fc9) X-Mailman-Approved-At: Fri, 05 Dec 2008 23:12:00 +0000 Cc: FreeBSD virtualization mailing list , alexus , freebsd-current@freebsd.org, Alexander Leidinger , "Bjoern A. Zeeb" , freebsd-jail@freebsd.org Subject: Re: HEADS UP: r185435 multi-IPv4/v6/no-IP jails in HEAD X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: bseklecki@collaborativefusion.com List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Dec 2008 20:05:31 -0000 --=-DzfM9tDmMSlP+FSmvwy3 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On Fri, 2008-12-05 at 20:47 +0100, Dag-Erling Sm=C3=B8rgrav wrote: > The question is, does it change existing behavior, or just add new > functionality? The syntax semantics should be backward compatible, so likely the latter. --=20 Brian A. Seklecki Collaborative Fusion, Inc. --=-DzfM9tDmMSlP+FSmvwy3 Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) iEYEABECAAYFAkk5iYkACgkQCne6BNDQ+R8pNgCbBUN98uDRdIGwRyp0AROXaLX5 d+kAn3khdiy56r3w9bvyvnE8qWmMDXcz =oj/T -----END PGP SIGNATURE----- --=-DzfM9tDmMSlP+FSmvwy3--