source: server/etc/dhcpd.conf.tmpl @ 97321b7

Last change on this file since 97321b7 was fd8609e, checked in by Ramón M. Gómez <ramongomez@…>, 5 years ago

#955: Adapt DHCP template file to addtodhcp script.

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