source: server/etc/dhcpd.conf.tmpl @ 2fae617b

webconsole3
Last change on this file since 2fae617b was 1236d17, checked in by jm.bardallo <juanmanuel.bardallo@…>, 7 years ago

añadidos nuevamente los ficheros de opengnsys del branch devel, se habían quitado por error

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