stateless.json 836 B

12345678910111213141516171819202122232425262728
  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 prefixes, so
  19. # there will be no leases (unless stateless and stateful mode is used together).
  20. "lease-database": {
  21. "type": "memfile",
  22. "lfc-interval": 3600
  23. }
  24. }
  25. }