]> git.llucax.com Git - software/pymin.git/blob - dhcpd/dhcpd_global.template
6f1f2fd1ab83ed3cac755f8896bda3f24f2befca
[software/pymin.git] / dhcpd / dhcpd_global.template
1 ddns-update-style none;
2
3 option domain-name %(domain_name)s;
4 option domain-name-servers %(dns_1)s, %(dns_2)s;
5
6 authoritative;
7
8 log-facility local7;
9
10 subnet %(net_address)s netmask %(net_mask)s {
11   range %(net_start)s %(net_end)s;
12   option routers %(net_gateway)s;
13 }