dhcpv4-over-dhcpv6.json 858 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. # This is an example configuration file for the DHCPv4 server of
  2. # DHCPv4-over-DHCPv6 tests in Kea.
  3. {
  4. # DHCPv4 conf
  5. "Dhcp4":
  6. {
  7. "interfaces-config": {
  8. "interfaces": [ "eno33554984" ]
  9. },
  10. "lease-database": {
  11. "type": "memfile",
  12. "name": "leases4"
  13. },
  14. "valid-lifetime": 4000,
  15. "subnet4": [
  16. { "subnet": "10.10.10.0/24",
  17. # Don't forget the "4o6-" before "interface" here!
  18. "4o6-interface": "eno33554984",
  19. "4o6-subnet": "2001:db8:1:1::/64",
  20. "pools": [ { "pool": "10.10.10.100 - 10.10.10.199" } ] }
  21. ],
  22. # This enables DHCPv4-over-DHCPv6 support
  23. "dhcp4o6-port": 6767
  24. },
  25. "Logging":
  26. {
  27. "loggers": [
  28. {
  29. "name": "kea-dhcp4",
  30. "output_options": [
  31. {
  32. "output": "/tmp/kea-dhcp4.log"
  33. }
  34. ],
  35. "severity": "DEBUG",
  36. "debuglevel": 0
  37. }
  38. ]
  39. }
  40. }