dhcpv4-over-dhcpv6.json 880 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. "lfc-interval": 3600
  14. },
  15. "valid-lifetime": 4000,
  16. "subnet4": [
  17. { "subnet": "10.10.10.0/24",
  18. # Don't forget the "4o6-" before "interface" here!
  19. "4o6-interface": "eno33554984",
  20. "4o6-subnet": "2001:db8:1:1::/64",
  21. "pools": [ { "pool": "10.10.10.100 - 10.10.10.199" } ] }
  22. ],
  23. # This enables DHCPv4-over-DHCPv6 support
  24. "dhcp4o6-port": 6767
  25. },
  26. "Logging":
  27. {
  28. "loggers": [
  29. {
  30. "name": "kea-dhcp4",
  31. "output_options": [
  32. {
  33. "output": "/tmp/kea-dhcp4.log"
  34. }
  35. ],
  36. "severity": "DEBUG",
  37. "debuglevel": 0
  38. }
  39. ]
  40. }
  41. }