# DHCPv4 permit known client config

# empty configs are not accepted by Kea
default-lease-time 1800;

# subnet declaration
subnet 10.5.5.0 netmask 255.255.255.224 {
    # pool declaration
    pool {
        # avoid empty pool
        range 10.5.5.5 10.5.5.10;
        # call get_permit
        allow known clients;
    }
}