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

918-git-images-111dconfigure-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-instalacion
Last change on this file since ca75d29 was c0104f1, checked in by Ramón M. Gómez <ramongomez@…>, 5 years ago

#946: Remove duplicate line in DHCP template.

  • Property mode set to 100644
File size: 895 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    # 0007 == x64 EFI boot
15    if option arch = 00:07 {
16        filename "shimx64.efi.signed";
17    } else {
18        filename "grldr";
19    }
20    use-host-decl-names on;
21
22# Ejemplo para PC.
23#    host HOSTNAME1 {
24#        hardware ethernet HOSTMAC1;
25#        fixed-address HOSTIP1;
26#   }
27
28# Ejemplo para Mac.
29#    group {
30#        option tftp-server-name="SERVERIP";
31#        option bootfile-name "grldr";
32#        host MACOSHOST1 {
33#            hardware ethernet MACOSHOSTMAC1;
34#            fixed-address MACOSHOSTIP1;
35#       }
36#   }
37
38}
39
Note: See TracBrowser for help on using the repository browser.