Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 25 Nov 2018 09:37:57 +0000 (UTC)
From:      Guangyuan Yang <ygy@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r340917 - head/stand/i386/pxeldr
Message-ID:  <201811250937.wAP9bv1n026100@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ygy (doc committer)
Date: Sun Nov 25 09:37:57 2018
New Revision: 340917
URL: https://svnweb.freebsd.org/changeset/base/340917

Log:
  Update pxeboot(8) manual page to reflect the next-server change in the ISC DHCP v3 server.
  
  PR:		123484
  Submitted by:	edwin@mavetju.org
  Reviewed by:	AllanJude
  MFC after:	1 week

Modified:
  head/stand/i386/pxeldr/pxeboot.8

Modified: head/stand/i386/pxeldr/pxeboot.8
==============================================================================
--- head/stand/i386/pxeldr/pxeboot.8	Sun Nov 25 00:34:00 2018	(r340916)
+++ head/stand/i386/pxeldr/pxeboot.8	Sun Nov 25 09:37:57 2018	(r340917)
@@ -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.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201811250937.wAP9bv1n026100>