mirror of
https://github.com/linuxboot/linuxboot
synced 2024-11-22 17:01:28 +00:00
f8bf72eaa0
Signed-off-by: Ronald G. Minnich <rminnich@gmail.com>
23 lines
622 B
Groff
23 lines
622 B
Groff
allow booting;
|
|
allow bootp;
|
|
option option-128 code 128 = string;
|
|
option option-129 code 129 = text;
|
|
next-server 192.168.0.1;
|
|
filename "grubnetx64.efi.signed";
|
|
option domain-name "coreboot.org";
|
|
option domain-name-servers ns1.google.com, ns2.google.com;
|
|
default-lease-time 600;
|
|
max-lease-time 7200;
|
|
ddns-update-style none;
|
|
authoritative;
|
|
default-lease-time 600;
|
|
max-lease-time 7200;
|
|
log-facility local7;
|
|
subnet 192.168.0.0 netmask 255.255.255.0 {
|
|
option routers 192.168.0.1;
|
|
# Specify the subnet-mask
|
|
option subnet-mask 255.255.255.0;
|
|
# Specify the range of leased IP addresses
|
|
range 192.168.0.2 192.168.0.128;
|
|
}
|