<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=utf-8">
  </head>
  <body text="#000000" bgcolor="#FFFFFF">
    <div class="moz-text-flowed" style="font-family: -moz-fixed;
      font-size: 12px;" lang="x-unicode">Hello,
      <br>
      <br>
      I need some help converting this radvd.conf to dnsmasq.conf
      <br>
      <br>
      $ cat /etc/radvd.conf
      <br>
      interface intern0 {
      <br>
          IgnoreIfMissing on;
      <br>
          AdvSendAdvert on;
      <br>
          MinRtrAdvInterval 30;
      <br>
          MaxRtrAdvInterval 60;
      <br>
          prefix 2001:470:1:2::/64 {
      <br>
              AdvOnLink on;
      <br>
              AdvAutonomous on;
      <br>
              AdvRouterAddr on;
      <br>
          };
      <br>
      };
      <br>
      <br>
      <br>
      $ head -20 /etc/dnsmasq.conf
      <br>
      interface=intern0
      <br>
      expand-hosts
      <br>
      domain=domain.net
      <br>
      dhcp-range=10.1.1.20,10.1.1.255,255.255.255.0,1h #
      <br>
      dhcp-range=2001:470:1:2::2, 2001:470:1:2::500, slaac
      <br>
      enable-ra
      <br>
      <br>
      <br>
      The IPv4 part works but I can't get IPv6 to work... If I run
      dnsmasq for IPv4 and radvd for the IPv6 both protocolls work, but
      when I try to enable IPv6 in dnsmasq I don't get any IPv6 address.
      <br>
      <br>
      --
      <br>
      Br / David
      <br>
      <br>
    </div>
  </body>
</html>