svn commit: r341403 - stable/12/stand/i386/pxeldr
Guangyuan Yang
ygy at FreeBSD.org
Sun Dec 2 19:08:52 UTC 2018
Author: ygy (doc committer)
Date: Sun Dec 2 19:08:51 2018
New Revision: 341403
URL: https://svnweb.freebsd.org/changeset/base/341403
Log:
MFC r340917, r341007
r340917:
Update pxeboot(8) manual page to reflect the next-server change in the ISC DHCP v3 server.
r341007:
Bump the date of pxeboot(8) manual page for r340917.
PR: 123484
Submitted by: edwin at mavetju.org
Reviewed by: AllanJude
Modified:
stable/12/stand/i386/pxeldr/pxeboot.8
Directory Properties:
stable/12/ (props changed)
Modified: stable/12/stand/i386/pxeldr/pxeboot.8
==============================================================================
--- stable/12/stand/i386/pxeldr/pxeboot.8 Sun Dec 2 18:30:58 2018 (r341402)
+++ stable/12/stand/i386/pxeldr/pxeboot.8 Sun Dec 2 19:08:51 2018 (r341403)
@@ -24,7 +24,7 @@
.\"
.\" $FreeBSD$
.\"
-.Dd May 27, 2017
+.Dd November 25, 2018
.Dt PXEBOOT 8
.Os
.Sh NAME
@@ -58,7 +58,7 @@ The
.Nm
binary is loaded just like any other boot file,
by specifying it in the DHCP server's configuration file.
-Below is a sample configuration for the ISC DHCP v2 server:
+Below is a sample configuration for the ISC DHCP v3 server:
.Bd -literal -offset indent
option domain-name "example.com";
option routers 10.0.0.1;
@@ -67,6 +67,7 @@ option broadcast-address 10.0.0.255;
option domain-name-servers 10.0.0.1;
server-name "DHCPserver";
server-identifier 10.0.0.1;
+next-server 10.0.0.1;
default-lease-time 120;
max-lease-time 120;
@@ -80,10 +81,11 @@ subnet 10.0.0.0 netmask 255.255.255.0 {
}
.Ed
+.Va next-server
+is the IP address of the next server in the bootstrap process, i.e.
+your TFTP server or NFS server.
.Nm
recognizes
-.Va next-server
-and
.Va option root-path
directives as the server and path to NFS mount for file requests,
respectively, or the server to make TFTP requests to.
More information about the svn-src-all
mailing list