feat: initial commit

This commit is contained in:
Simon Cornet 2025-07-15 15:14:25 +02:00
commit f17a0eeddf
17 changed files with 273 additions and 93 deletions

27
defaults/main.yaml Normal file
View file

@ -0,0 +1,27 @@
---
# kea dhcp defaults
kea_dhcp_interface: "eth0"
kea_dhcp_lease_rebind: "750"
kea_dhcp_lease_renew: "600"
kea_dhcp_lease_lifetime: "900"
# kea dhcp subnets
kea_dhcp_subnets:
# subnet details
- name: "example-lan"
subnet: "192.168.1.0/24"
pool: "192.168.1.130 - 192.168.1.149"
# options
gateway: "192.168.1.254"
dns: "192.168.1.1"
# reservations
reservations:
# example reservation
- hostname: "my-desktop.example.internal"
ip: "192.168.1.10"
mac: "48:E9:F5:70:67:C9"