From owner-freebsd-net@FreeBSD.ORG Sun Nov 2 05:18:21 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 CED1FE68 for ; Sun, 2 Nov 2014 05:18:21 +0000 (UTC) Received: from luigi.brtsvcs.net (luigi.brtsvcs.net [IPv6:2607:fc50:1000:1f00::2]) (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 A9CA7812 for ; Sun, 2 Nov 2014 05:18:21 +0000 (UTC) Received: from chombo.houseloki.net (unknown [IPv6:2601:7:400:640:21c:c0ff:fe7f:96ee]) by luigi.brtsvcs.net (Postfix) with ESMTPSA id 82EF62D4F9B; Sat, 1 Nov 2014 22:18:20 -0700 (PDT) Received: from [IPv6:2601:7:2580:674:baca:3aff:fe83:bd29] (unknown [IPv6:2601:7:2580:674:baca:3aff:fe83:bd29]) by chombo.houseloki.net (Postfix) with ESMTPSA id 1919CA1C; Sat, 1 Nov 2014 22:18:18 -0700 (PDT) Message-ID: <5455BE9F.5020205@bluerosetech.com> Date: Sat, 01 Nov 2014 22:18:23 -0700 From: Darren Pilgrim Reply-To: freebsd-net@freebsd.org User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.6.0 MIME-Version: 1.0 To: Chris Inacio , freebsd-net@freebsd.org Subject: Re: Help with IPv6 router gateway config, Comcast, DHCP, dnsmasq References: <7BCDF08D-BAF5-4747-91FF-968E51B6AEED@bangj.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit 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 05:18:21 -0000 On 11/1/2014 8:03 PM, Chris Inacio wrote: > 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. Routers must not accept router advertisements from their downstream interfaces. Your /etc/rc.conf should look something like this: ipv6_cpe_wanif="re0" ifconfig_re0="DHCP" ifconfig_re0_ipv6="inet6 accept_rtadv -no_radr" ifconfig_re1="inet 192.168.1.1/24" ifconfig_re1_ipv6="inet6 -accept_rtadv"