<div dir="ltr">Hi,<br>
<br>
Here is my dhcpd.conf  :<br>
-------------------dhcpd.conf--------------------------<br>
authoritative;<br>
option dhcp6.name-servers 2001::1;<br>
ddns-update-style interim;<br>
ddns-domainname "<a href="http://example6.com">example6.com</a>";<br>
<br>
subnet6 2001::/64 {<br>
     range6 2001::5 2001::50;<br>
}<br>
<br>
host host1 {<br>
        host-identifier option dhcp6.client-id
00:01:00:51:0F:D8:E0:7D:02:1E:C9:58:BC:AF;<br>
        fixed-address6 2001::3;<br>
}<br>
--------------------------------------------------------<br>
<br>
This configuration works fine with the daemon radvd with the
configuration file :<br>
<br>
-------------------radvd.conf--------------------------<br>
interface eth0 {<br>
        AdvSendAdvert on;<br>
        AdvManagedFlag on;<br>
        MinRtrAdvInterval 5;<br>
        MaxRtrAdvInterval 10;<br>
};.<br>
--------------------------------------------------------<br>
<br>
<br>
Then I have a question about Dynamic DNS and IPv6, how to configure ISC
dhcpv6 server in order<br>
to make dynamic dns with bind9 ?<br>
<br>
here is my named.conf file :<br>
<br>
-------------------named.conf--------------------------<br>
<br>
options {<br>
listen-on-v6 { any; };<br>
listen-on { any; };<br>
};<br>
<br>
zone "<a href="http://example6.com">example6.com</a>" {<br>
type master;<br>
file "/etc/bind/db.local6";<br>
allow-update { any; };<br>
allow-transfer { any; };<br>
allow-query { any; };<br>
};<br>
zone "0.0.0.0.0.0.0.0.0.0.0.0.1.0.0.2.ip6.arpa" {<br>
type master;<br>
file "/etc/bind/db.reverse6";<br>
allow-update { any; };<br>
allow-transfer { any; };<br>
allow-query { any; };<br>
};<br>
<br>
--------------------------------------------------------<br>
<br>
This configuration works fine with another dhcpv6 server but nothing
appends with ISC Dhcpv6.<br>
<br>
<br>
Is there someone who can help me?<br>
Thanks in advance.<div><br></div><div><br><br><div class="gmail_quote">2008/9/9 John Jason Brzozowski <span dir="ltr"><<a href="mailto:john_brzozowski@cable.comcast.com">john_brzozowski@cable.comcast.com</a>></span><br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">Try this:<br>
<br>
option dhcp6.domain-name-servers code 23 = array of ip6-address;<br>
option dhcp6.time-servers code 40 = array of ip6-address;<br>
option dhcp6.time-offset code 41 = signed integer 32;<br>
<br>
option dhcp-renewal-time 86400;<br>
option dhcp-rebinding-time 43200;<br>
<br>
ddns-update-style interim;<br>
ddns-domainname "<a href="http://example.com" target="_blank">example.com</a>";<br>
authoritative;<br>
<br>
subnet6 2001:558:FF10:405::/64 {<br>
    option dhcp6.domain-name-servers fd00::230:48ff:fe83:5ffa;<br>
    range6 2001:0db8:ff10:405::/64;<br>
}<br>
<br>
I believe the server can only support one mode at a time, IPv4 or IPv6 not<br>
both.  You can probably start two instances simultaneously but will likely<br>
need separate sets of files to support the operation of each server.<br>
<br>
HTH<br>
<div><div></div><div class="Wj3C7c"><br>
<br>
On 9/8/08 7:09 PM, "Defryn, Guy" <<a href="mailto:G.P.Defryn@massey.ac.nz">G.P.Defryn@massey.ac.nz</a>> wrote:<br>
<br>
><br>
><br>
> Hi everyone,<br>
><br>
> I don't post to the list very often but occasionally I have to deal with DHCP<br>
> and the list is very helpful.<br>
><br>
> I am looking into implementing a dhcp server for IPv6 addressing.<br>
> I have never dealt with IPv6 and I seem to have problems finding setup<br>
> information.<br>
><br>
> I have just compiled version <a href="http://4.0.0." target="_blank">4.0.0.</a> I would like to know how to tackle the<br>
> dhcpd.conf file<br>
> for IPv6. The default /usr/etc/dhcpd.conf file does not seem to have any v6<br>
> related configuration<br>
> in it. Any info or example would be appreciated.<br>
><br>
> Also, at a later stage I would like to offer v4 and v6 addressing from the<br>
> same server.<br>
> I know that you'll need to run two daemons for this but do they use the same<br>
> dhcpd.conf?<br>
><br>
> Excuse my ignorance.<br>
><br>
> cheers<br>
><br>
><br>
><br>
<br>
</div></div>=========================================<br>
<font color="#888888">John Jason Brzozowski<br>
Comcast Corporation<br>
e) mailto:<a href="mailto:john_brzozowski@cable.comcast.com">john_brzozowski@cable.comcast.com</a><br>
m) 609-377-6594<br>
=========================================<br>
<br>
<br>
</font></blockquote></div><br></div></div>