From owner-freebsd-questions@freebsd.org Thu Oct 29 09:57:43 2015 Return-Path: Delivered-To: freebsd-questions@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 86D97A1EE50 for ; Thu, 29 Oct 2015 09:57:43 +0000 (UTC) (envelope-from niklaas@kulturflatrate.net) Received: from mail2.kulturflatrate.net (mail2.kulturflatrate.net [IPv6:2a01:4f8:121:52ad::3:1]) by mx1.freebsd.org (Postfix) with ESMTP id 4D1641471 for ; Thu, 29 Oct 2015 09:57:43 +0000 (UTC) (envelope-from niklaas@kulturflatrate.net) Received: from [10.0.0.38] (mail.kulturflatrate.net [IPv6:2a01:488:66:1000:2ea3:77dd:0:1]) (Authenticated sender: niklaas@kulturflatrate.net) by mail2.kulturflatrate.net (Postfix) with ESMTPSA id BC64E3F5F for ; Thu, 29 Oct 2015 10:57:40 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=kulturflatrate.net; s=default; t=1446112660; bh=FYH3A+aJU3daUeKNIrhCDc4ZyH6YnyOfNrnSKXqba3I=; h=To:From:Subject:Date; b=Rk35no8k65UNyw2GZ3d2KcLdvf7XSQh3O5lExRhM6wLXwWPJa4HCkvasjfEY+ZiIc a4uw9YGw23FSvTnNtLCjaMwJO+WUuwjitselYMs1tbzPOPUujGaSxCHdkZsL+lNjot rdYUgZ9zS2h+F8sE+V3xiHLPFWol+P4N6ZdA/W8k= To: FreeBSD Questions From: Niklaas Baudet von Gersdorff Subject: Assigning a second IPv6 with rtsol X-Enigmail-Draft-Status: N1110 Message-ID: <5631EE32.5080504@kulturflatrate.net> Date: Thu, 29 Oct 2015 11:00:18 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Oct 2015 09:57:43 -0000 I successfully managed to enable IPv6 on my RPi2 with 11-CURRENT by adding the following lines to /etc/rc.conf ``` ifconfig_ue0_ipv6="inet6 accept_rtadv" rtsold_enable="YES" ``` executing ``` ifconfig ue0 inet6 -ifdisabled ``` and running `rtsol`. Next to the IPv4 address that got assigned through DHCP I also have an IPv6 address assigned by my local router. Everything works as expected. In the next step I would like to assign a second IPv6 that I do not specify manually but that gets, as the first one, assigned by my local router. Is that possible? I know how to assign an additional address with `ifconfig ... alias` but only how to do so with manually specified addresses. What I actually want to achieve is that I get another IPv6 by my local router/ISP automatically to eventually attach it to a jail. -- Niklaas