<br><br><div class="gmail_quote">On Sun, Jan 27, 2013 at 12:46 AM, Török Edwin <span dir="ltr"><<a href="mailto:edwin+ml-cerowrt@etorok.net" target="_blank">edwin+ml-cerowrt@etorok.net</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div class="im">On 01/27/2013 06:17 AM, Richard E. Brown wrote:<br>
> Thanks to Dave Täht and Robert Bradley for the pointers to making CeroWrt 3.7.x hand out IPv6 addresses to LAN devices. (This has been tested with 3.7.4-2.)  The process is indeed a few simple steps:<br>
><br>
> 1) remove dnsmasq & dnsmasq-dhcpv6, then install again (see Dave Täht's note below)<br>
> 2) Add config to /etc/dnsmasq.conf to hand out DHCPv6 addresses (as suggested by Robert Bradley)<br>
<br>
</div>Yep, that sounds like what I've done too.<br>
<div class="im"><br></div></blockquote><div><br><br>I have incorporated these changes (aside from the he specific config) into the next build of cero. (which has dnsmasq 2.66 test12 in it.<br><br>Thx everyone for tracking this down.<br>
<br>Incidentally, how do I get dnsmasq to hand out more than one dns server to clients? I'd like it to<br>do so - one for ipv6 and for ipv4, or 2 for ipv4, etc. <br><br>What happens now is you can configure dnsmasq to talk to tons of dns servers but it only hands out itself. Given the timeouts in DNS and so on it seems saner to hand out two, or more, to clients, as per the RFC (if you have two or more)<br>
<br>Another place I was stuck was on getting dhcpv6-pd to work. I'd setup an isc-dhcp server as a test (on a laptop, pretending to be the master box)<br>and I could see it handing out a /56 prefix, as configured, but only the external ge00 address would be configured. What seemed to be happening was bombing out in the netifd script not putting in the ".ge00" interface into a ubus function call. It was also only distributing a /128 to clients...<br>
<br>Perhaps now that this other stuff is correct, that will work. I will try it in the morning.<br><br>this was how I'd setup the "dhcpv6 server"'s /etc/dhcp/dhcpd.conf<br><br>subnet6 2001:db8:0:1::/64 {<br>
        # Range for clients<br>        range6 2001:db8:0:1::129 2001:db8:0:1::254;<br>        # Additional options<br>        option dhcp6.name-servers 2001:db8:0:1::1;<br>        option dhcp6.domain-search "<a href="http://cerowrt.org">cerowrt.org</a>";<br>
        # Prefix range for delegation to sub-routers<br>        prefix6 2001:db8:0:100:: 2001:db8:0:f00:: /56;<br>        # Example for a fixed host address<br>        host specialclient {<br>                host-identifier option dhcp6.client-id 00:01:00:01:4a:1f:ba:e3:60:b9:1f:01:23:45;<br>
                fixed-address6 2001:db8:0:1::127;<br>        }<br>}<br><br>I think the last unaligned_instruction trap is dead.<br><br>Lastly, there is another nifty new feature of dnsmasq - secondary domain updates. I have no idea how to get that going...<br>
 <br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="im">
> 3) Tweak the firewall to put henet 6in4 tunnel into WAN zone<br>
> 3) Bring up henet and restart network, firewall, dnsmasq<br>
<br>
</div>Not related to ipv6, but if you want a ntp server for your LAN you have to do this:<br>
# opkg remove luci-app-ntpc<br>
# opkg remove ntpclient<br>
# killall ntpclient<br>
# uci set system.ntp.enable_server 1<br>
# uci commit system<br>
# /etc/init.d/sysntpd restart<br>
<br></blockquote><div><br>This is an artifact of formerly using the isc ntp server in cero (for the multicast, and autokey support, as well as for the possible linkage to the gpsd daemon for a 1pps signal) At some future point I'd like to make this work again (because testing against a stratum 1 clock like what gpsd can do has long been on my list of worthwhile things to do), but I have no problem with using the well integrated smaller default ntp server in openwrt. (well, I'd like it to do ipv6, too)<br>
<br>I have made these two packages optional and enabled the local ntp server.<br><br>Still up here, no matter what ntp client/server is used is some means of doing dnssec again.<br> <br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

Otherwise sysntpd will fail to start because ntpclient has already bound the ntp port.<br>
According to <a href="http://wiki.openwrt.org/doc/uci/system" target="_blank">http://wiki.openwrt.org/doc/uci/system</a> busybox ntpd can act both as a client&server so<br>
I think that ntpclient is unnecessary.<br>
<div class="im"><br>
><br>
> There's a fully-functional script at: <a href="http://www.bufferbloat.net/attachments/download/165/tunnelbroker.sh" target="_blank">http://www.bufferbloat.net/attachments/download/165/tunnelbroker.sh</a> that does this. (You'll have to substitute your own credentials there…) Save the script as a<br>

> file in /tmp and execute it - it does all the configuration for you.<br>
<br>
</div>Just one note regarding this comment in your script:<br>
# Append proper configuration commands to /etc/dnsmasq.conf<br>
# This is the proper configuration file: you can ignore both<br>
# /etc/config/dhcp and /var/etc/dnsmasq.conf as they seem not to have any effect<br>
<br>
/var/etc/dnsmasq.conf is overwritten when you '/etc/init.d/dnsmasq restart', thats why it seems to not have an effect.<br>
BTW initially I was doing this:<br>
<br>
# /etc/init.d/dnsmasq stop<br>
# vi /var/etc/dnsmasq.conf<br>
# /usr/sbin/dnsmasq -C /var/etc/dnsmasq.conf -d<br>
....<br>
^C<br>
# vi /var/etc/dnsmasq.conf<br>
# /usr/sbin/dnsmasq -C /var/etc/dnsmasq.conf -d<br>
....<br>
<br>
But after reinstalling dnsmasq-dhcpv6 I realized that just modifying /etc/dnsmasq.conf and restarting dnsmasq worked too<br>
(presumably due to this entry in /var/etc/dnsmasq.conf: conf-file=/etc/dnsmasq.conf).<br>
<br>
Best regards,<br>
--Edwin<br>
</blockquote></div><br><br clear="all"><br>-- <br>Dave Täht<br><br>Fixing bufferbloat with cerowrt: <a href="http://www.teklibre.com/cerowrt/subscribe.html" target="_blank">http://www.teklibre.com/cerowrt/subscribe.html</a>