Skip to content

Instantly share code, notes, and snippets.

@m1nka
Created July 10, 2018 12:53
Show Gist options
  • Save m1nka/a46c44c2b1c27ea25944658d32e253d3 to your computer and use it in GitHub Desktop.
Save m1nka/a46c44c2b1c27ea25944658d32e253d3 to your computer and use it in GitHub Desktop.
# Set a domain name, can basically be anything
option domain-name "cluster.home";
# Use Google DNS by default, you can substitute ISP-supplied values here
option domain-name-servers 8.8.8.8, 8.8.4.4;
# We'll use 10.0.0.X for our subnet
subnet 10.0.0.0 netmask 255.255.255.0 {
range 10.0.0.1 10.0.0.10;
option subnet-mask 255.255.255.0;
option broadcast-address 10.0.0.255;
option routers 10.0.0.1;
}
default-lease-time 600;
max-lease-time 7200;
authoritative;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment