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

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 b411a0f was 98dedfc, checked in by ramon <ramongomez@…>, 7 years ago

#802: Usar Shim como cargador primario para evitar fallos con algunas BIOS UEFI.

git-svn-id: https://opengnsys.es/svn/branches/version1.1@5762 a21b9725-9963-47de-94b9-378ad31fedc9

  • 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.