stateless.json 849 B

1234567891011121314151617181920212223242526272829
  1. // A very simply stateless configuration that provides information about DNS
  2. // servers to all clients, regardless of their point of attachment.
  3. //
  4. // It is also possible to specify options on a per subnet basis
  5. // in the same way as in stateful mode.
  6. //
  7. {
  8. "Dhcp6": {
  9. "interfaces-config": {
  10. "interfaces": [ "ethX" ]
  11. },
  12. // This is the list of options that will be granted to all clients that ask.
  13. "option-data": [ {
  14. "name": "dns-servers",
  15. "data": "2001:db8::1, 2001:db8::2"
  16. } ],
  17. // Kea 0.9.1 requires lease-database to be specified, even it is not used.
  18. // In stateless mode, only options are granted, not addresses or
  19. // prefixes, so there will be no leases (unless stateless and stateful
  20. // mode is used together).
  21. "lease-database": {
  22. "type": "memfile",
  23. "lfc-interval": 3600
  24. }
  25. }
  26. }