lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

dhcpd6.conf (841B)


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