diff options
author | Arnaud Desmons <adesmons@mandriva.com> | 2002-09-05 07:37:06 +0000 |
---|---|---|
committer | Arnaud Desmons <adesmons@mandriva.com> | 2002-09-05 07:37:06 +0000 |
commit | f7cca6ea32444a7764d54989bf360530d07d6092 (patch) | |
tree | 779049ed3b297fa40354f497a5e0d6ca86505096 /dhcp_wizard/scripts/dhcpd.conf.default | |
parent | 52d4a220029dac288c8b86c3271ce9ab5fbdc6c2 (diff) | |
download | drakwizard-f7cca6ea32444a7764d54989bf360530d07d6092.tar drakwizard-f7cca6ea32444a7764d54989bf360530d07d6092.tar.gz drakwizard-f7cca6ea32444a7764d54989bf360530d07d6092.tar.bz2 drakwizard-f7cca6ea32444a7764d54989bf360530d07d6092.tar.xz drakwizard-f7cca6ea32444a7764d54989bf360530d07d6092.zip |
untouched
Diffstat (limited to 'dhcp_wizard/scripts/dhcpd.conf.default')
-rw-r--r-- | dhcp_wizard/scripts/dhcpd.conf.default | 27 |
1 files changed, 27 insertions, 0 deletions
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"; + +} + + |