From f7cca6ea32444a7764d54989bf360530d07d6092 Mon Sep 17 00:00:00 2001 From: Arnaud Desmons Date: Thu, 5 Sep 2002 07:37:06 +0000 Subject: untouched --- dhcp_wizard/scripts/dhcpd.conf.default | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 dhcp_wizard/scripts/dhcpd.conf.default (limited to 'dhcp_wizard/scripts/dhcpd.conf.default') diff --git a/dhcp_wizard/scripts/dhcpd.conf.default b/dhcp_wizard/scripts/dhcpd.conf.default new file mode 100644 index 00000000..c2135639 --- /dev/null +++ b/dhcp_wizard/scripts/dhcpd.conf.default @@ -0,0 +1,27 @@ +# default file for dhcpd +# replace __ip__ by the IP adress of the server (same server for +# all services in this config file) + +server-identifier __hname__; +default-lease-time 36000; +max-lease-time 144000; +ddns-update-style ad-hoc; + + +subnet __net__ netmask __mask__{ + range __rng1__ __rng2__; + option domain-name "__dname__"; + option domain-name-servers __ip__; + option nis-servers __ip__; + option lpr-servers __ip__; + option netbios-name-servers __ip__; + option routers __ip__; + option subnet-mask __mask__; + option time-servers __ip__; + ddns-updates on; + ddns-domainname "__dname__"; + ddns-rev-domainname "in-addr.arpa"; + +} + + -- cgit v1.2.1