1 .\" Copyright (c) 1994 Gordon W. Ross, Theo de Raadt
2 .\" Updated by Luigi Rizzo
3 .\" All rights reserved.
5 .\" Redistribution and use in source and binary forms, with or without
6 .\" modification, are permitted provided that the following conditions
8 .\" 1. Redistributions of source code must retain the above copyright
9 .\" notice, this list of conditions and the following disclaimer.
10 .\" 2. Redistributions in binary form must reproduce the above copyright
11 .\" notice, this list of conditions and the following disclaimer in the
12 .\" documentation and/or other materials provided with the distribution.
13 .\" 3. The name of the author may not be used to endorse or promote products
14 .\" derived from this software without specific prior written permission.
16 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 .\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 .\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 .\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 .\" $FreeBSD: src/share/man/man8/diskless.8,v 1.6.2.9 2003/01/25 18:56:44 dillon Exp $
34 .Nd booting a system over the network
36 The ability to boot a machine over the network is useful for
40 machines, or as a temporary measure while repairing or
41 re-installing filesystems on a local disk.
42 This file provides a general description of the interactions between
43 a client and its server when a client is booting over the network.
45 When booting a system over the network, there are three
46 phases of interaction between client and server:
50 The stage-1 bootstrap loads a boot program, from
52 The boot program loads a kernel.
54 The kernel does NFS mounts for root.
57 Each of these phases are described in further detail below.
59 In phase 1, the stage-1 bootstrap code loads a boot program,
60 which is typically able to control the network card.
61 The boot program can be stored in the BIOS, in a BOOT ROM
62 located on the network card (PXE, etherboot, netboot),
63 or come from a disk unit (e.g. etherboot or netboot).
65 In phase 2, the boot program loads a kernel.
67 this phase depends on the design of the boot program.
68 Typically, the boot program uses the
72 protocol to get the client's IP address and other boot
73 information, including but not limited to
74 the IP addresses of the NFS server, router and nameserver,
75 and the name of the kernel to load.
76 Then the kernel is loaded, either directly using NFS
77 (as it is the case for etherboot and netboot),
78 or through an intermediate loader called pxeboot and
79 loaded using TFTP or NFS.
81 In phase 3, the kernel again uses DHCP or BOOTP to acquire
82 configuration information, and proceeds to mount the
83 root filesystem and start operation. The boot
84 scripts recognize a diskless startup and perform
86 .Pa /etc/rc.d/initdiskless
88 .Pa /etc/rc.d/diskless .
90 In order to run a diskless client, you need the following:
93 An NFS server which exports a root and /usr partition with
94 appropriate permissions.
96 scripts work with readonly partitions, as long as root is exported with
98 so that some system files can be accessed.
101 can contain the following lines:
102 .Bd -literal -offset indent
103 <ROOT> -ro -maproot=0 -alldirs <list of diskless clients>
104 /usr -ro -alldirs <list of diskless clients>
109 is the mountpoint on the server of the root partition.
111 .Pa /usr/share/examples/diskless/clone_root
112 can be used to create a shared readonly root partition,
113 but in many cases you may decide to export
114 (again as readonly) the root directory used by
127 .Pa /etc/inetd.conf .
130 can be the following:
131 .Bd -literal -offset indent
133 hn:ht=1:vm=rfc1048:\\
137 :rp="<SERVER>:<ROOT>":
139 <CLIENT>:ha=0123456789ab:tc=.default
147 have the obvious meanings.
149 A properly initialized root partition.
151 .Pa /usr/share/examples/diskless/clone_root
152 can help in creating it, using the server's root partition
153 as a reference. If you are just starting out you should
154 simply use the server's own root directory,
156 and not try to clone it.
158 You often do not want to use the same
162 files for the diskless boot as you do on the server. The diskless boot
163 scripts provide a mechanism through which you can override various files
166 (as well as other subdirectories of root). The scripts provide four
167 overriding directories situated in
170 .Pa /conf/<BROADCAST-IP> ,
172 .Pa /conf/<MACHINE-IP> .
173 You should always create
175 which will entirely replace the server's
177 on the diskless machine.
178 You can clone the server's
180 here or you can create a special file which tells the diskless boot scripts
181 to remount the server's
185 You do this by creating the file
186 .Pa /conf/base/etc/diskless_remount
187 containing the mount point to use as a basis of the diskless machine's
189 For example, the file might contain:
190 .Bd -literal -offset 4n
194 The diskless scripts create memory filesystems to hold the overridden
195 directories. Only a 2MB partition is created by default, which may not
196 be sufficient for your purposes. To override this you can create the
198 .Pa /conf/base/etc/md_size
199 containing the size, in 512 byte sectors, of the memory disk to create
202 You then typically provide file-by-file overrides in the
203 .Pa /conf/default/etc
204 directory. At a minimum you must provides overrides for
210 .Pa /conf/default/etc/fstab ,
211 .Pa /conf/default/etc/rc.conf ,
213 .Pa /conf/default/etc/rc.local .
215 Overrides are hierarchical. You can supply network-specific defaults
217 .Pa /conf/<BROADCAST-IP>/etc
218 directory, where <BROADCAST-IP> represents the broadcast IP address of
219 the diskless system as given to it via
225 features work in any of these directories.
226 The configuration feature works on directories other than
228 you simply create the directory you wish to replace or override in
229 .Pa /conf/{base,default,<BROADCAST-IP>,<MACHINE-IP>}/*
230 and work it in the same way that you work
233 As a minimum, you normally need to have the following in
234 .Pa /conf/default/etc/fstab
235 .Bd -literal -offset indent
236 <SERVER>:<ROOT> / nfs ro 0 0
237 <SERVER>:/usr /usr nfs ro 0 0
238 proc /proc procfs rw 0 0
241 You also need to create a customized version of
242 .Pa /conf/default/etc/rc.conf
244 the startup options for the diskless client, and
245 .Pa /conf/default/etc/rc.local
246 which could be empty but prevents the server's own
248 from leaking onto the diskless system.
253 you will not need to set
257 because these will be already set by the startup code.
258 Finally, it might be convenient to use a
262 as the switch variable to do machine-specific configuration
263 in case a number of diskless clients share the same configuration
266 The kernel for the diskless clients, which will be loaded using
267 NFS or TFTP, should be built with at least the following options:
271 .D1 Cd options BOOTP_NFSROOT
272 .D1 Cd options BOOTP_COMPAT
274 If you use the firewall, remember to default to open or your kernel
275 will not be able to send/receive the bootp packets.
278 Be warned that using unencrypted NFS to mount root and user
279 partitions may expose information such as
282 .Bl -tag -width /usr/share/examples/diskless/clone_root -compact
283 .It Pa /usr/share/examples/diskless/clone_root
284 script to clone root filesystem
289 .It Pa /conf/<BROADCAST-IP>
291 .It Pa /conf/<MACHINE-IP>
293 .It Pa /conf/{base,default,<BROADCAST-IP>,<MACHINE-IP>}/<DIR>
296 .It Pa /conf/{base,default,<BROADCAST-IP>,<MACHINE-IP>}/<DIR>/md_size
297 size of memory disk for
299 .It Pa /conf/{base,default,<BROADCAST-IP>,<MACHINE-IP>}/<DIR>/diskless_remount
302 .It Pa /conf/{base,default,<BROADCAST-IP>,<MACHINE-IP>}/<DIR>.cpio.gz
305 .It Pa /conf/{base,default,<BROADCAST-IP>,<MACHINE-IP>}/<DIR>.remove
315 .Xr dhcpd 8 Pq Pa net/isc-dhcp42-server ,
323 This manpage is probably incomplete.
326 sometimes requires to write onto
327 the root partition, so the startup scripts mount MFS
328 filesystems on some locations (e.g.\&
333 trying to preserve the original content.
334 The process might not handle all cases.