You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
841 B

  1. # dhcpd6.conf
  2. authoritative;
  3. default-lease-time 3600;
  4. max-lease-time 86400;
  5. # Enable RFC 5007 support
  6. #allow leasequery;
  7. # Global definitions for name server address(es) and domain search list
  8. #option dhcp6.name-servers 3ffe:501:ffff:100:200:ff:fe00:3f3e;
  9. #option dhcp6.domain-search "test.example.com","example.com";
  10. # Set preference to 255 (maximum) in order to avoid waiting for
  11. # additional servers when there is only one
  12. #option dhcp6.preference 255;
  13. # Server side command to enable rapid-commit (2 packet exchange)
  14. #option dhcp6.rapid-commit;
  15. # The delay before information-request refresh
  16. # (minimum is 10 minutes, maximum one day, default is to not refresh)
  17. # (set to 6 hours)
  18. #option dhcp6.info-refresh-time 3600;
  19. subnet6 3ffe:501:ffff:101::/64 {
  20. # Use the whole /64 prefix for clients
  21. range6 3ffe:501:ffff:101:: /64;
  22. }