/etc/dhcp/dhcpd.conf (1)

From RaySoft
#-----------------------------------------------------------------------
# dhcpd.conf
# ==========
#
# Project   Gentoo 4 Shuttle DS57Ux
# Scope     Native
# Copyright (C) 2022 by RaySoft, Zurich, Switzerland
# License   GNU General Public License (GPL) 2.0
#           https://www.gnu.org/licenses/gpl2.txt
#
#-----------------------------------------------------------------------

authoritative;

ddns-update-style none;

default-lease-time 21600;    # 6h
max-lease-time 86400;        # 24h

option domain-name "raysoft.loc";
option domain-name-servers 10.0.0.1;

subnet 10.0.0.0 netmask 255.255.255.0 {
  range 10.0.0.200 10.0.0.250;

  option subnet-mask 255.255.255.0;
  option broadcast-address 10.0.0.255;
  option routers 10.0.0.1;
}

include "/etc/dhcp/dhcpd-hosts.conf";