IPv6 setup

Cyril VIZZARI cvcyril at gmail.com
Tue Sep 9 08:47:34 UTC 2008


Hi,

Here is my dhcpd.conf  :
-------------------dhcpd.conf--------------------------
authoritative;
option dhcp6.name-servers 2001::1;
ddns-update-style interim;
ddns-domainname "example6.com";

subnet6 2001::/64 {
     range6 2001::5 2001::50;
}

host host1 {
        host-identifier option dhcp6.client-id 
00:01:00:51:0F:D8:E0:7D:02:1E:C9:58:BC:AF;
        fixed-address6 2001::3;
}
--------------------------------------------------------

This configuration works fine with the daemon radvd with the 
configuration file :

-------------------radvd.conf--------------------------
interface eth0 {
        AdvSendAdvert on;
        AdvManagedFlag on;
        MinRtrAdvInterval 5;
        MaxRtrAdvInterval 10;
};.
--------------------------------------------------------


Then I have a question about Dynamic DNS and IPv6, how to configure ISC 
dhcpv6 server in order
to make dynamic dns with bind9 ?

here is my named.conf file :

-------------------named.conf--------------------------

options {
listen-on-v6 { any; };
listen-on { any; };
};

zone "example6.com" {
type master;
file "/etc/bind/db.local6";
allow-update { any; };
allow-transfer { any; };
allow-query { any; };
};
zone "0.0.0.0.0.0.0.0.0.0.0.0.1.0.0.2.ip6.arpa" {
type master;
file "/etc/bind/db.reverse6";
allow-update { any; };
allow-transfer { any; };
allow-query { any; };
};

--------------------------------------------------------

This configuration works fine with another dhcpv6 server but nothing 
appends with ISC Dhcpv6.


Is there someone who can help me?
Thanks in advance.





John Jason Brzozowski a écrit :
> 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" <G.P.Defryn at massey.ac.nz> wrote:
>
>   
>> 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
>>
>>
>>
>>     
>
> =========================================
> John Jason Brzozowski
> Comcast Corporation
> e) mailto:john_brzozowski at cable.comcast.com
> m) 609-377-6594
> =========================================
>
>
>   

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.isc.org/pipermail/dhcp-users/attachments/20080909/fc4fbba0/attachment.html>


More information about the dhcp-users mailing list