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