From owner-freebsd-current@FreeBSD.ORG Thu Sep 4 14:16:26 2014 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D0F12E60 for ; Thu, 4 Sep 2014 14:16:26 +0000 (UTC) Received: from hydra.pix.net (hydra.pix.net [IPv6:2001:470:e254::4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A92D41DAE for ; Thu, 4 Sep 2014 14:16:26 +0000 (UTC) Received: from hydra.pix.net (localhost [127.0.0.1]) by hydra.pix.net (8.14.9/8.14.9) with ESMTP id s84EGOHn066571 for ; Thu, 4 Sep 2014 10:16:24 -0400 (EDT) (envelope-from lidl@hydra.pix.net) X-Virus-Status: Clean X-Virus-Scanned: clamav-milter 0.98.4 at mail.pix.net Received: (from lidl@localhost) by hydra.pix.net (8.14.9/8.14.9/Submit) id s84EGOQm066570 for freebsd-current@freebsd.org; Thu, 4 Sep 2014 10:16:24 -0400 (EDT) (envelope-from lidl) Date: Thu, 4 Sep 2014 10:16:24 -0400 From: Kurt Lidl To: freebsd-current@freebsd.org Subject: ipv6 network aliases not set after upgrade to 9.3 Message-ID: <20140904141624.GA66403@hydra.pix.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.23 (2014-03-12) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Sep 2014 14:16:26 -0000 Greetings all: I have a host that recently was upgraded from FreeBSD 9.1 to FreeBSD 9.3. After the upgrade, the IPv6 aliases that I was setting on vlan'd interfaces, no longer get set: The section of my /etc/rc.conf, which worked under 9.1: # inside network (gigabit connected) ifconfig_bce1="up" vlans_bce1="16 17" ifconfig_bce1_16="192.168.16.4/24" ifconfig_bce1_16_ipv6="inet6 accept_rtadv" ifconfig_bce1_16_alias0="inet6 2001:470:e254:0010::4 prefixlen 64 alias" ifconfig_bce1_17="192.168.17.4/24" ifconfig_bce1_17_ipv6="inet6 accept_rtadv" ifconfig_bce1_17_alias0="inet6 2001:470:e254:0011::4 prefixlen 64 alias" When I use the same configuration file under 9.3, I get the vlan'd interfaces created, and they get an auto-assigned IPv6 interface, but the aliases do not get assigned. If I manually run: ifconfig bce1.16 inet6 2001:470:e254:0010::4 prefixlen 64 alias ifconfig bce1.17 inet6 2001:470:e254:0011::4 prefixlen 64 alias Then the aliased addresses get assigned. Did the syntax for specifying aliases on vlan'd interfaces change subtly for 9.3 vs 9.1? I did not see anything calling out this change in either the 9.2 or 9.3 release notes. Thanks! -Kurt