Added dhcpd configuration

This is a configuration for the dhcpd.
This commit is contained in:
Francesco Grotti
2016-11-28 10:48:55 +01:00
committed by GitHub
parent a60c09a673
commit ee9f7d4100

12
dhcpd.conf Normal file
View File

@@ -0,0 +1,12 @@
ddns-update-style none;
option domain-name-servers 10.0.0.1;
default-lease-time 60;
max-lease-time 72;
authoritative;
log-facility local7;
subnet 10.0.0.0 netmask 255.255.255.0 {
range 10.0.0.100 10.0.0.254;
option routers 10.0.0.1;
option domain-name-servers 10.0.0.1;
}