diff options
author | ramon <ramongomez@us.es> | 2018-01-22 11:49:32 +0000 |
---|---|---|
committer | ramon <ramongomez@us.es> | 2018-01-22 11:49:32 +0000 |
commit | fe61443ea34552f9ef7bb005adf193d42c7ded58 (patch) | |
tree | 18df2b247a2bead0fa6ec867c743379e341a0615 /server/etc | |
parent | 58718f504ebf4c288fc1f8e505bf6e6c883db885 (diff) |
#808: Actualizar plantilla DHCP con ejemplo para equipos Mac.
git-svn-id: https://opengnsys.es/svn/branches/version1.1@5577 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'server/etc')
-rw-r--r-- | server/etc/dhcpd.conf.tmpl | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/server/etc/dhcpd.conf.tmpl b/server/etc/dhcpd.conf.tmpl index fb6afa00..a80b42db 100644 --- a/server/etc/dhcpd.conf.tmpl +++ b/server/etc/dhcpd.conf.tmpl @@ -13,10 +13,21 @@ subnet NETIP netmask NETMASK { filename "grldr"; use-host-decl-names on; +# Ejemplo para PC. # host HOSTNAME1 { # hardware ethernet HOSTMAC1; # fixed-address HOSTIP1; # } +# Ejemplo para Mac. +# group { +# option tftp-server-name="SERVERIP"; +# option bootfile-name "grldr"; +# host MACOSHOST1 { +# hardware ethernet MACOSHOSTMAC1; +# fixed-address MACOSHOSTIP1; +# } +# } + } |