stateless.json 757 B

1234567891011121314151617181920212223
  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": [ "ethX" ],
  10. # This is the list of options that will be granted to all clients that ask.
  11. "option-data": [ {
  12. "name": "dns-servers",
  13. "data": "2001:db8::1, 2001:db8::2"
  14. } ],
  15. # Kea 0.9.1 requires lease-database to be specified, even it is not used.
  16. # In stateless mode, only options are granted, not addresses or prefixes, so
  17. # there will be no leases (unless stateless and stateful mode is used together).
  18. "lease-database": { "type": "memfile" }
  19. }
  20. }