<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
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 "example6.com";<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 "example6.com" {<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.<br>
<br>
<br>
<br>
<br>
<br>
John Jason Brzozowski a écrit :
<blockquote
 cite="mid:C4EB6691.841BD%25john_brzozowski@cable.comcast.com"
 type="cite">
  <pre wrap="">Try this:

option dhcp6.domain-name-servers code 23 = array of ip6-address;
option dhcp6.time-servers code 40 = array of ip6-address;
option dhcp6.time-offset code 41 = signed integer 32;

option dhcp-renewal-time 86400;
option dhcp-rebinding-time 43200;

ddns-update-style interim;
ddns-domainname "example.com";
authoritative;

subnet6 2001:558:FF10:405::/64 {
    option dhcp6.domain-name-servers fd00::230:48ff:fe83:5ffa;
    range6 2001:0db8:ff10:405::/64;
}

I believe the server can only support one mode at a time, IPv4 or IPv6 not
both.  You can probably start two instances simultaneously but will likely
need separate sets of files to support the operation of each server.

HTH


On 9/8/08 7:09 PM, "Defryn, Guy" <a class="moz-txt-link-rfc2396E" href="mailto:G.P.Defryn@massey.ac.nz"><G.P.Defryn@massey.ac.nz></a> wrote:

  </pre>
  <blockquote type="cite">
    <pre wrap="">
Hi everyone,

I don't post to the list very often but occasionally I have to deal with DHCP
and the list is very helpful.

I am looking into implementing a dhcp server for IPv6 addressing.
I have never dealt with IPv6 and I seem to have problems finding setup
information.

I have just compiled version 4.0.0. I would like to know how to tackle the
dhcpd.conf file
for IPv6. The default /usr/etc/dhcpd.conf file does not seem to have any v6
related configuration
in it. Any info or example would be appreciated.

Also, at a later stage I would like to offer v4 and v6 addressing from the
same server.
I know that you'll need to run two daemons for this but do they use the same
dhcpd.conf?

Excuse my ignorance.

cheers



    </pre>
  </blockquote>
  <pre wrap=""><!---->
=========================================
John Jason Brzozowski
Comcast Corporation
e) <a class="moz-txt-link-freetext" href="mailto:john_brzozowski@cable.comcast.com">mailto:john_brzozowski@cable.comcast.com</a>
m) 609-377-6594
=========================================


  </pre>
</blockquote>
<br>
</body>
</html>