-
-
Save m1nka/a46c44c2b1c27ea25944658d32e253d3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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