]> git.somenet.org - root/pub/somesible.git/blob - roles/server/dhcpd/files/default/dhcpd.conf
[roles/server/dhcpd] install dhcpd
[root/pub/somesible.git] / roles / server / dhcpd / files / default / dhcpd.conf
1 #
2 ################################################
3 ### Managed by someone's ansible provisioner ###
4 ################################################
5 # Part of: https://git.somenet.org/root/pub/somesible.git
6 # 2017-2024 by someone <someone@somenet.org>
7 #
8 # dhcpd minimalistic config. Assuming Server's IPv4: 172.20.0.254
9 #
10
11 authoritative;
12 log-facility local7;
13 default-lease-time 18000;
14 max-lease-time 21600;
15 ddns-update-style none;
16
17 subnet 172.20.0.0 netmask 255.255.0.0 {
18   range 172.20.1.1 172.20.1.254;
19   option routers 172.20.0.254;
20   option domain-name-servers 172.20.0.22;
21   option ntp-servers 172.20.0.254;
22 }