From owner-freebsd-net@FreeBSD.ORG Sat Nov 1 05:09:49 2014 Return-Path: Delivered-To: freebsd-net@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AF2D1FB0 for ; Sat, 1 Nov 2014 05:09:49 +0000 (UTC) Received: from oj.bangj.com (amt0.gin.ntt.net [129.250.11.170]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 886604E for ; Sat, 1 Nov 2014 05:09:49 +0000 (UTC) Received: from [172.16.21.114] (cpe-098-122-037-156.sc.res.rr.com [98.122.37.156]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by oj.bangj.com (Postfix) with ESMTPSA id 8CB691C66; Sat, 1 Nov 2014 01:08:05 -0400 (EDT) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 8.0 \(1990.1\)) Subject: Re: Help with IPv6 router gateway config, Comcast, DHCP, dnsmasq From: Tom Pusateri In-Reply-To: Date: Sat, 1 Nov 2014 01:09:47 -0400 Content-Transfer-Encoding: quoted-printable Message-Id: <7BCDF08D-BAF5-4747-91FF-968E51B6AEED@bangj.com> References: To: Chris Inacio X-Mailer: Apple Mail (2.1990.1) Cc: freebsd-net@freebsd.org X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Nov 2014 05:09:49 -0000 > On Oct 31, 2014, at 11:43 PM, Tom Pusateri wrote: >=20 >>=20 >> On Oct 31, 2014, at 11:23 PM, Chris Inacio = wrote: >>=20 >> My configs are really basic. dhcp6c.conf: >>=20 >> interface re0 { >>=20 >> send ia-pd 0; >>=20 >> send ia-na 1; >>=20 >> }; >>=20 >>=20 >> id-assoc na 1 { >>=20 >> }; >>=20 >>=20 >> id-assoc pd { >>=20 >> prefix ::/56 infinity; >>=20 >> prefix-interface re0 { >>=20 >> sla-len 4; >>=20 >> sla-id 1; >>=20 >> }; >>=20 >> }; In addition to my earlier post, you are missing the ID for the ia-pd = association. replace: id-assoc pd { with: id-assoc pd 0 { and you are referencing your upstream interface instead of your = downstream interface in the delegated prefix-interface statement. replace: prefix-interface re0 { with prefix-interface re1 { Thanks, Tom