Guest User

Untitled

a guest
Dec 16th, 2024
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.91 KB | None | 0 0
  1. {
  2. "Dhcp4": {
  3. "authoritative": true,
  4. "valid-lifetime": 360,
  5. "renew-timer": 180,
  6. "rebind-timer": 315,
  7.  
  8. "interfaces-config": {
  9. "interfaces": [ "enp5s0", "enp6s0", "br-qemu" ]
  10. },
  11.  
  12. "control-socket": {
  13. "socket-type": "unix",
  14. "socket-name": "/run/kea/kea4-ctrl-socket"
  15. },
  16.  
  17. "lease-database": {
  18. "type": "memfile",
  19. "lfc-interval": 360
  20. },
  21.  
  22. "option-data": [
  23. {
  24. "name": "domain-name-servers",
  25. "data": "172.16.27.249"
  26. },
  27. {
  28. "name": "domain-name",
  29. "data": "exam.ple"
  30. },
  31. {
  32. "name": "domain-search",
  33. "data": "exam.ple"
  34. }
  35. ],
  36.  
  37. "subnet4": [
  38. {
  39. "id": 1,
  40. "subnet": "172.16.27.248/29",
  41. "pools": [
  42. {"pool": "172.16.27.250 - 172.16.27.254"}
  43. ],
  44.  
  45. "option-data": [
  46. {
  47. "name": "routers",
  48. "data": "172.16.27.249"
  49. }
  50. ]
  51. },
  52. {
  53. "id": 2,
  54. "subnet": "172.16.27.192/27",
  55. "pools": [
  56. {"pool": "172.16.27.194 - 172.16.27.222"}
  57. ],
  58.  
  59. "option-data": [
  60. {
  61. "name": "routers",
  62. "data": "172.16.27.193"
  63. }
  64. ]
  65. },
  66. {
  67. "id": 3,
  68. "subnet": "172.16.27.224/28",
  69. "pools": [
  70. {"pool": "172.16.27.226 - 172.16.27.238"}
  71. ],
  72.  
  73. "option-data": [
  74. {
  75. "name": "routers",
  76. "data": "172.16.27.225"
  77. }
  78. ]
  79. }
  80. ],
  81. "ddns-send-updates": true,
  82. "ddns-qualifying-suffix": "exam.ple",
  83. "ddns-override-no-update": true,
  84. "ddns-override-client-update": true,
  85. "hostname-char-set": "[^A-Za-z0-9.-]",
  86. "hostname-char-replacement": "x",
  87. "dhcp-ddns": {
  88. "enable-updates": true,
  89. "server-ip": "127.0.0.1"
  90. }
  91. }
  92. }
  93.  
Advertisement
Add Comment
Please, Sign In to add comment