<br><br><div class="gmail_quote">On Mon, Feb 28, 2011 at 10:19 AM, Jeff Sadowski <span dir="ltr">&lt;<a href="mailto:jeff.sadowski@gmail.com">jeff.sadowski@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
I didn&#39;t see a mailing list FAQ so I hope its ok to ask a simple question like<br>
How do I search the mailing list to find say DDNS<br>
would I run a google query for &quot;site:<a href="http://lists.litech.org" target="_blank">lists.litech.org</a> DDNS&quot;<br>
this didn&#39;t find anything and I&#39;d bet someone has asked how to do that before.<br>
<br>
If not that is my question can radvd do ddns(Dynamic DNS)<br>
I&#39;d like that when a host gets a ipv6 address from my radvd pool to<br>
update my bind entries for that computer.<br>
<font color="#888888"><br>
--<br>
radvd-devel-l mailing list  :  <a href="mailto:radvd-devel-l@litech.org">radvd-devel-l@litech.org</a><br>
<a href="http://lists.litech.org/listinfo/radvd-devel-l" target="_blank">http://lists.litech.org/listinfo/radvd-devel-l</a><br>
</font></blockquote></div><br><br>AFAIK, there&#39;s nothing like that in radvd.  However, this sound like a problem solved by mDNS (multicast DNS, also called Bonjour by Apple).  On Linux, avahi-daemon does this.  After installing you&#39;ll need to update your /etc/nsswitch.conf with this line...<br>
<br>hosts:          files mdns4_minimal [NOTFOUND=return] dns mdns4<br><br>...to make use of it.  ...but you&#39;ll need to do this on all the Linux hosts on your network.  I think it&#39;s running by default on OSX and you can install Bonjour on your windows hosts.<br>
<br>Then when a host wants to know the IP of another host running Bonjour, you can use the .local suffix like so...<br><br>$ ping somehost.local<br><br>...or...<br><br>$ ping6 somehost.local<br><br>Thanks,<br>Reuben<br>