From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-ie0-f182.google.com (mail-ie0-f182.google.com [209.85.223.182]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority" (verified OK)) by huchra.bufferbloat.net (Postfix) with ESMTPS id 036AE21F0BA for ; Tue, 22 Jan 2013 10:52:36 -0800 (PST) Received: by mail-ie0-f182.google.com with SMTP id s9so12281424iec.13 for ; Tue, 22 Jan 2013 10:52:36 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:mime-version:in-reply-to:references:from:date:message-id :subject:to:content-type; bh=IVQkFRaAyFxWR0aGoKalvZMW0PYElx0PRI0kQ3Mr+0g=; b=MOVAIIqnqBL7aaceDDJwvC5qLviCsOr0zNeD1YARpsIkyQz3QrjareHQ7ccFyk23Ka mvidw7k1F7TC+3+4u/Wz01gcYfVISo+YLVR5SnYrwdfzJMORlme5uwWT/JLDlrE4TQjq 95FWT35nyoDSRv3Qtbw0q57nj9NnDHtWyB9lomlJLteLqOFZHeLqW1ryt0rmIRhajxZa 167gR7NIzK1ZE3upBAw369Bgdgsfh57iJjLfwMMHkvlREfR9kCytabakM9bhxzzKf0W8 DOE22swiiY1GKLIAzdSE28iarXqgBwBSAdiimXKjJ4eyA1/bm9+Gjz/jXbaY0FsawOzH VXZQ== X-Received: by 10.50.16.210 with SMTP id i18mr12853392igd.53.1358880756251; Tue, 22 Jan 2013 10:52:36 -0800 (PST) MIME-Version: 1.0 Received: by 10.231.163.212 with HTTP; Tue, 22 Jan 2013 10:52:15 -0800 (PST) In-Reply-To: References: From: Chris Lawrence Date: Tue, 22 Jan 2013 13:52:15 -0500 Message-ID: To: "" Content-Type: text/plain; charset=UTF-8 Subject: Re: [Cerowrt-devel] dnsmasq ipv6 stuff X-BeenThere: cerowrt-devel@lists.bufferbloat.net X-Mailman-Version: 2.1.13 Precedence: list List-Id: Development issues regarding the cerowrt test router project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Jan 2013 18:52:37 -0000 On Tue, Jan 22, 2013 at 1:40 AM, Dave Taht wrote: > I think that's this in /etc/dnsmasq.conf > > dhcp-range=se00,1234::, ra-stateless, ra-names > dhcp-range=sw00,1234::, ra-stateless, ra-names > dhcp-range=sw10,1234::, ra-stateless, ra-names > dhcp-range=gw00,1234::, ra-stateless, ra-names > dhcp-range=gw10,1234::, ra-stateless, ra-names > > It's kind of unclear to me what 1234 could be replaced with. > "ce30" works for me... Using ::1 on each will autoassign the addresses based on the address of the interface, which seems like a sensible default no matter what network address you have. Having said that I found that with ra-stateless enabled, at least one device on my network would send DHCPv6 requests that crashed dnsmasq. So I have: dhcp-range=::1,constructor:se00,ra-names (etc.) I think with test11 that can be further simplified to: dhcp-range=::1,constructor:*,ra-names This uses SLAAC only, which seems sufficient for my network purposes. I tried adding an end to the range to see if that was the problem with DHCP, but that doesn't seem to help, at least in test10. The other thing I noticed in 3.7.2-4 is that both dnsmasq and dnsmasq-dhcpv6 are installed, but the dnsmasq binary is actually the non-v6 version unless you reinstall the dnsmasq-dhcpv6 package (according to upstream OpenWRT, only one or the other should be installed since they conflict). Chris