Skip to content

Instantly share code, notes, and snippets.

@jheise
Created August 26, 2022 04:42
Show Gist options
  • Save jheise/d1e4c5baf8f7c07aa1cae644782f1265 to your computer and use it in GitHub Desktop.
Save jheise/d1e4c5baf8f7c07aa1cae644782f1265 to your computer and use it in GitHub Desktop.
DHCP Server Config
# dhcpd.conf
option domain-name-servers 10.13.37.1;
default-lease-time 600;
max-lease-time 7200;
ddns-update-style none;
authoritative;
log-facility local7;
subnet 10.13.37.0 netmask 255.255.255.0 {
range 10.13.37.10 10.13.37.253;
option routers 10.13.37.1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment