This repository has been archived on 2024-02-11. You can view files and clone it, but cannot push or open issues or pull requests.
valinor/ansible/config/dhcpd-hostnet.conf

14 lines
333 B
Text
Raw Normal View History

2023-11-20 16:38:26 -06:00
#
# Configuration file for ISC dhcpd. You can leave the subnet and netmask settings
# below as they are.
#
authoritative;
subnet 192.168.20.0 netmask 255.255.255.0 {
range 192.168.20.10 192.168.20.100;
option domain-name-servers 1.1.1.1,8.8.8.8;
option routers 192.168.20.1;
default-lease-time 600;
max-lease-time 7200;
}