mirror of
https://github.com/novatiq/packages.git
synced 2026-04-30 15:38:40 +01:00
7f594309bf
Signed-off-by: Antony Antony <antony@phenome.org>
14 lines
229 B
ISCdhcpd
14 lines
229 B
ISCdhcpd
# dhcpd.conf
|
|
|
|
authoritative;
|
|
|
|
default-lease-time 3600;
|
|
max-lease-time 86400;
|
|
|
|
option domain-name-servers 192.168.1.1;
|
|
|
|
subnet 192.168.1.0 netmask 255.255.255.0 {
|
|
range 192.168.1.10 192.168.1.50;
|
|
option routers 192.168.1.1;
|
|
}
|