From owner-freebsd-net@FreeBSD.ORG Sun Nov 2 03:03:41 2014 Return-Path: Delivered-To: freebsd-net@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9F67F23E for ; Sun, 2 Nov 2014 03:03:41 +0000 (UTC) Received: from mail-ie0-x22f.google.com (mail-ie0-x22f.google.com [IPv6:2607:f8b0:4001:c03::22f]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 654FEB68 for ; Sun, 2 Nov 2014 03:03:41 +0000 (UTC) Received: by mail-ie0-f175.google.com with SMTP id y20so3545893ier.20 for ; Sat, 01 Nov 2014 20:03:40 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=AQ+EmcLhG2cBBSZpojizq72ZuOw3BTv/u1VKxm32myo=; b=dqSEO1azdZWs+Xm0NJS30cAGBO5XDhSlGafaFac5bY5MybadyXd2iYs55lGzWOfW07 S8p5uA3up3J8B8HQynfeLow4fqqjLNokIVvZLUQ/K/Pzv1lLj85/rWMi4ONtT6XR5PEA ByKqM18Q8WPAPmOXeyWisJnx98NT5lm2L8BZsIZG+Sf/LWHAHvID4dcN43V2x6elJlJ2 +y+NrqC7v054AcX9hpWvFVmbiMl/hKVT+zVC7usyn+uEcAIohDibvMxjcwQ+6vyTtEYw /Pcf4rXy6ipro3qLRzSsq0S7ofs9B38yYdq2MdYGcirnC4Rf9watPjrVD9r9+Zd44xXF JKqw== MIME-Version: 1.0 X-Received: by 10.42.11.69 with SMTP id t5mr56633ict.72.1414897420821; Sat, 01 Nov 2014 20:03:40 -0700 (PDT) Received: by 10.64.9.33 with HTTP; Sat, 1 Nov 2014 20:03:40 -0700 (PDT) In-Reply-To: <7BCDF08D-BAF5-4747-91FF-968E51B6AEED@bangj.com> References: <7BCDF08D-BAF5-4747-91FF-968E51B6AEED@bangj.com> Date: Sat, 1 Nov 2014 23:03:40 -0400 Message-ID: Subject: Re: Help with IPv6 router gateway config, Comcast, DHCP, dnsmasq From: Chris Inacio To: freebsd-net@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.18-1 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: Sun, 02 Nov 2014 03:03:41 -0000 Thank you for all your help. You have indeed fixed my mistakes. I still have one more mistake, however, which is that my internal network interface isn't getting an IPv6 address, beyond link local. When I added "inet6 accept_rtadv" to the config of re1 in rc.conf, the static "192.168.1.1 netmask"... broke. If you have a quick fix I would be really appreciative, but I will say, at this point I'm being lazy a bit. I haven't really done the homework myself first. :) In either case, I really appreciate your help. thanks chris On Sat, Nov 1, 2014 at 1:09 AM, Tom Pusateri wrote: > > > On Oct 31, 2014, at 11:43 PM, Tom Pusateri wrote: > > > >> > >> On Oct 31, 2014, at 11:23 PM, Chris Inacio wrote: > >> > >> My configs are really basic. dhcp6c.conf: > >> > >> interface re0 { > >> > >> send ia-pd 0; > >> > >> send ia-na 1; > >> > >> }; > >> > >> > >> id-assoc na 1 { > >> > >> }; > >> > >> > >> id-assoc pd { > >> > >> prefix ::/56 infinity; > >> > >> prefix-interface re0 { > >> > >> sla-len 4; > >> > >> sla-id 1; > >> > >> }; > >> > >> }; > > 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 > >