diff options
author | ramon <ramongomez@us.es> | 2011-03-02 11:42:59 +0000 |
---|---|---|
committer | ramon <ramongomez@us.es> | 2011-03-02 11:42:59 +0000 |
commit | 813f617ae2c1fad83befb13bccf8a05213a81ee6 (patch) | |
tree | 0d963716a015570cbb25850a88a71673933a794b /server/etc/dhcpd.conf.tmpl | |
parent | f6ce34f644e6c9f239475a2fb065ef0cdb38cfe0 (diff) |
Instalador versiĆ³n 1.0:
* Adaptar estructura de directorios del servidor.
* Adaptar funciones del instalador.
* Reducir el espacio necesario para descarga de ficheros.
* Algunas correcciones generales.
git-svn-id: https://opengnsys.es/svn/branches/version1.0@1523 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'server/etc/dhcpd.conf.tmpl')
-rw-r--r-- | server/etc/dhcpd.conf.tmpl | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/server/etc/dhcpd.conf.tmpl b/server/etc/dhcpd.conf.tmpl new file mode 100644 index 00000000..687bbf0f --- /dev/null +++ b/server/etc/dhcpd.conf.tmpl @@ -0,0 +1,22 @@ +ddns-update-style none; +option domain-name "example.org"; +log-facility local7; +not-authoritative; + +subnet NETIP netmask NETMASK { + option domain-name-servers DNSIP; + option routers ROUTERIP; + option broadcast-address NETBROAD; + default-lease-time 600; + max-lease-time 7200; + next-server SERVERIP; + filename "pxelinux.0"; + use-host-decl-names on; + +# host HOSTNAME1 { +# hardware ethernet HOSTMAC1; +# fixed-address HOSTIP1; +# } + +} + |