# Ansible managed

# Global options
option domain-name "g3.example.com";
option domain-name-servers 8.8.8.8, 1.1.1.1;
default-lease-time 600;
max-lease-time 7200;

# Denotes this server as the primary DHCP server for the local network
authoritative;

# Internal subnet configuration
subnet 172.16.99.0 netmask 255.255.255.0 {
  range 172.16.99.100 172.16.99.200;
  option routers 172.16.99.1;
  option broadcast-address 172.16.99.255;
}
