source: server/etc/dhcpd.conf.tmpl @ 2211576

918-git-images-111dconfigfileconfigure-oglivegit-imageslgromero-new-oglivemainmaint-cronmount-efivarfsmultivmmultivm-ogboot-installerogClonningEngineogboot-installer-jenkinsoglive-ipv6test-python-scriptsticket-301ticket-50ticket-50-oldticket-577ticket-585ticket-611ticket-612ticket-693ticket-700ubu24tplunification2use-local-agent-oglivevarios-instalacionwebconsole3
Last change on this file since 2211576 was fe61443, checked in by ramon <ramongomez@…>, 7 years ago

#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

  • Property mode set to 100644
File size: 734 bytes
RevLine 
[139053a]1ddns-update-style none;
2option domain-name "example.org";
3log-facility local7;
[7586ca3]4not-authoritative;
[b6906f7]5
6subnet NETIP netmask NETMASK {
7    option domain-name-servers DNSIP;
[7586ca3]8    option routers ROUTERIP;
[b6906f7]9    option broadcast-address NETBROAD;
[139053a]10    default-lease-time 600;
11    max-lease-time 7200;
[7586ca3]12    next-server SERVERIP;
[75a296b]13    filename "grldr";
[7586ca3]14    use-host-decl-names on;
[b6906f7]15
[fe61443]16# Ejemplo para PC.
[7586ca3]17#    host HOSTNAME1 {
18#        hardware ethernet HOSTMAC1;
19#        fixed-address HOSTIP1;
[1a22cd2]20#   }
[b6906f7]21
[fe61443]22# Ejemplo para Mac.
23#    group {
24#        option tftp-server-name="SERVERIP";
25#        option bootfile-name "grldr";
26#        host MACOSHOST1 {
27#            hardware ethernet MACOSHOSTMAC1;
28#            fixed-address MACOSHOSTIP1;
29#       }
30#   }
31
[139053a]32}
[b6906f7]33
Note: See TracBrowser for help on using the repository browser.