From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46626) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X9C5n-00051R-VI for qemu-devel@nongnu.org; Mon, 21 Jul 2014 07:49:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X9C5h-0002ZD-EF for qemu-devel@nongnu.org; Mon, 21 Jul 2014 07:49:19 -0400 Received: from mail2-relais-roc.national.inria.fr ([192.134.164.83]:4792) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X9C5h-0002YW-81 for qemu-devel@nongnu.org; Mon, 21 Jul 2014 07:49:13 -0400 Date: Mon, 21 Jul 2014 13:49:11 +0200 From: Samuel Thibault Message-ID: <20140721114911.GU5390@type.bordeaux.inria.fr> References: <20140721114146.GT5390@type.bordeaux.inria.fr> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: Subject: Re: [Qemu-devel] ipv6 slirp network List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Vasiliy Tolstov Cc: libvir-list@redhat.com, QEMU Vasiliy Tolstov, le Mon 21 Jul 2014 15:42:54 +0400, a écrit : > 2014-07-21 15:41 GMT+04:00 Samuel Thibault : > > ? The support was submitted to the list, but not commited. > > You can find the patches on > > http://lists.gnu.org/archive/html/qemu-devel/2014-03/msg05731.html > > and later. > > Unfortunately, nobody has yet found the time to review them. > > Documentation is added by patch 18, you can choose the prefix being > > exposed to userland just like with ipv4. > > In case of ipv4 i have some default settings like network, dns and so. > In case of ipv6 does i have some default? Yes, see the added documentation: +@item ip6-net=@var{addr}[/@var{int}] +Set IPv6 network address the guest will see. Optionally specify the prefix +size, as number of valid top-most bits. Default is fec0::/64. + +@item ip6-host=@var{addr} +Specify the guest-visible IPv6 address of the host. Default is the 2nd IPv6 in +the guest network, i.e. xxxx::2. +@item ip6-dns=@var{addr} +Specify the guest-visible address of the IPv6 virtual nameserver. The address +must be different from the host address. Default is the 3rd IP in the guest +network, i.e. xxxx::3. Most probably you'll want to set ip6-net to something else than fec0::/64 since OSes usually prefer IPv4 over fec0::/64. Samuel