d44abd0c605e929aded113a6e3e71baaa14c4a36
[nbd.git] / nbd-server.5.sgml
1 <!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [
2
3 <!-- Process this file with docbook-to-man to generate an nroff manual
4      page: `docbook-to-man manpage.sgml > manpage.1'.  You may view
5      the manual page with: `docbook-to-man manpage.sgml | nroff -man |
6      less'.  A typical entry in a Makefile or Makefile.am is:
7
8 manpage.1: manpage.sgml
9         docbook-to-man $< > $@
10   -->
11
12   <!-- Fill in your name for FIRSTNAME and SURNAME. -->
13   <!ENTITY dhfirstname "<firstname>Wouter</firstname>">
14   <!ENTITY dhsurname   "<surname>Verhelst</surname>">
15   <!-- Please adjust the date whenever revising the manpage. -->
16   <!ENTITY dhdate      "<date>$Date: 2006-10-18 15:01:57 +0200 (wo, 18 okt 2006) $</date>">
17   <!-- SECTION should be 1-8, maybe w/ subsection other parameters are
18        allowed: see man(7), man(1). -->
19   <!ENTITY dhsection   "<manvolnum>5</manvolnum>">
20   <!ENTITY dhemail     "<email>wouter@debian.org</email>">
21   <!ENTITY dhusername  "Wouter Verhelst">
22   <!ENTITY dhucpackage "<refentrytitle>NBD-SERVER</refentrytitle>">
23   <!ENTITY dhpackage   "/etc/nbd-server/config">
24
25   <!ENTITY debian      "<productname>Debian GNU/Linux</productname>">
26   <!ENTITY gnu         "<acronym>GNU</acronym>">
27 ]>
28
29 <refentry>
30   <refentryinfo>
31     <address>
32       &dhemail;
33     </address>
34     <author>
35       &dhfirstname;
36       &dhsurname;
37     </author>
38     <copyright>
39       <year>2006</year>
40       <holder>&dhusername;</holder>
41     </copyright>
42     &dhdate;
43   </refentryinfo>
44   <refmeta>
45     &dhucpackage;
46
47     &dhsection;
48   </refmeta>
49   <refnamediv>
50     <refname>&dhpackage;</refname>
51
52     <refpurpose>configuration file for nbd-server</refpurpose>
53   </refnamediv>
54   <refsynopsisdiv>
55     <cmdsynopsis>
56       <command>&dhpackage; </command>
57
58     </cmdsynopsis>
59   </refsynopsisdiv>
60   <refsect1>
61     <title>DESCRIPTION</title>
62
63     <para><command>&dhpackage;</command> allows to configure the
64     nbd-server.</para>
65
66     <para>The default configuration file is
67       <filename>@sysconfdir@/nbd-server/config</filename>, but this
68       can be varied with the <option>-C</option> option to
69       <command>nbd-server</command>(1).
70     </para>
71     <para>
72       The configuration file consists of section header lines, comment
73       lines, and option lines.
74     </para>
75     <para>
76       A section header is a unique name that
77       is enclosed in square brackets ("[" and "]"). A section header
78       denotes the beginning of a section; a section continues until
79       the next section or the end of the file, whichever is first. The
80       first section in the configuration file must be called
81       <option>generic</option>, and is used for global options that
82       apply to more than one export. This section must always be
83       present, even if it holds no options. Every other section
84       defines one export; the names of these sections are not
85       important, except that you should take care to make sure that
86       each section name is unique (future versions of
87       <command>nbd-server</command> may use the section name to refer
88       to an export)
89     </para>
90     <para>
91       A comment line is a line that starts with optional whitespace,
92       followed by a pound sign ("#"), and continues until the end of
93       the line. Comments may <emphasis>not</emphasis> be used on
94       option lines or section header lines.
95     </para>
96     <para>
97       An option line is a line that starts with an option name,
98       followed by an equals sign ("="), followed by the option
99       value. An option can be of type string, of type integer, or of
100       type boolean. The value of a boolean option can be denoted with
101       either true or false (so not yes, no, on, off, 1, or 0); all
102       booleans default to false unless specified otherwise; no value
103       may be quoted (always enter it directly); for a string option,
104       leading whitespace is stripped (but trailing whitespace is not).
105     </para>
106
107   </refsect1>
108   <refsect1>
109     <title>OPTIONS FOR SECTION [generic]</title>
110
111     <!-- These are in alphabetical order, please keep it that way -->    
112     <variablelist>
113       <varlistentry>
114         <term><option>group</option></term>
115         <listitem>
116           <para>
117             Optional; string.
118           </para>
119           <para>
120             The name of the group this server must run as. If this
121             parameter is not specified, then nbd-server will not
122             attempt to change its GID (so the GID it runs as will be
123             the primary group of the user who starts nbd-server). If
124             it is specified, then nbd-server will change its GID after
125             opening ports, but before accepting connections or opening
126             files.
127           </para>
128         </listitem>
129       </varlistentry>
130       <varlistentry>
131         <term><option>user</option></term>
132         <listitem>
133           <para>
134             Optional; string.
135           </para>
136           <para>
137             The name of the user this server must run as. If this
138             parameter is not specified, then nbd-server will not
139             attempt to change its UID (so the UID it runs as will be
140             the user who starts nbd-server). If it is specified, then
141             nbd-server will change its UID after opening ports, but
142             before accepting connections or opening files.
143           </para>
144         </listitem>
145       </varlistentry>
146     </variablelist>
147   <refsect1>
148     <title>OPTIONS FOR EXPORT SECTIONS</title>
149
150     <!-- These are in alphabetical order, please keep it that way -->
151     <variablelist>
152       <varlistentry>
153         <term><option>authfile</option></term>
154         <listitem>
155           <para>
156             Optional; string; default
157             <filename>@sysconfdir@/nbd-server/allow</filename>.
158           </para>
159           <para>
160             The name of the authorization file for this export. This
161             file should contain one line per IP-address, or per
162             network (which must be specified in CIDR-style
163             <option><replaceable>network</replaceable>/<replaceable>masklen</replaceable></option>)
164             and must not contain empty lines. If the file
165             does not exist, everyone is allowed to connect. If the
166             file exists but is empty, nobody is allowed to
167             connect. Otherwise, <command>nbd-server</command> will
168             only allow clients to connect whose IP-adres is listed in
169             this file.
170           </para>
171           <para>Corresponds to the <option>-l</option> option on the
172           command line</para>
173         </listitem>
174       </varlistentry>
175       <varlistentry>
176         <term><option>autoreadonly</option></term>
177         <listitem>
178           <para>Optional; boolean.</para>
179           <para>
180             If this option is set to true, then
181             <command>nbd-server</command> will automatically switch to
182             readonly if it cannot write to the file.
183           </para>
184           <para>Does not have a corresponding command-line
185             argument</para>
186           <para>TODO: verify whether this option actually works as
187             documented. I have a feeling I've been terribly
188             stupid.
189           </para>
190         </listitem>
191       </varlistentry>
192       <varlistentry>
193         <term><option>copyonwrite</option></term>
194         <listitem>
195           <para>
196             Optional; boolean.
197           </para>
198           <para>
199             Whether this is a copy-on-write export. If it is, then any
200             writes to this export will not be written to the master
201             file, but to a separate file which will be removed upon
202             disconnect. The result of using this option is that
203             nbd-server will be slower, and that any writes will be
204             lost upon disconnect.
205           </para>
206           <para>Corresponds to the <option>-c</option> option on the
207             command line</para>
208         </listitem>
209       </varlistentry>
210       <varlistentry>
211         <term><option>exportname</option></term>
212         <listitem>
213           <para>Required; string.</para>
214           <para>
215             The name of the file that will be exported. This must be a
216             fully-qualified path and filename; relative paths are not
217             allowed.
218           </para>
219           <para>
220             Note that <command>nbd-server</command> will only try to
221             find and open the exported file when a client actually
222             connects; as a result, <command>nbd-server</command> must
223             be able to open and read this file
224             <emphasis>after</emphasis> changing to the user and group
225             that have been specified by use of the
226             <option>user</option> and <option>group</option> options;
227             also, <command>nbd-server</command> will only detect
228             errors in this option upon connection of a client.
229           </para>
230           <para>When specified on the command line, this should be the
231             second argument.
232           </para>
233         </listitem>
234       </varlistentry>
235       <varlistentry>
236         <term><option>filesize</option></term>
237         <listitem>
238           <para>Optional; integer; default autodetected.</para>
239           <para>
240             Disable autodetection of file or block device size, and
241             forcibly specify a size. Sizes must be specified in
242             bytes. If the <option>multifile</option> option is in
243             effect, this option specifies the size of the
244             <emphasis>entire</emphasis> export, not of individual
245             files.
246           </para>
247           <para>When specified on the command line, this should be the
248             third argument.
249           </para>
250         </listitem>
251       </varlistentry>
252       <varlistentry>
253         <term><option>multifile</option></term>
254         <listitem>
255           <para>Optional; boolean.</para>
256           <para>
257             If this option is set to true, then
258             <command>nbd-server</command> will search for files of the
259             form
260             <replaceable>exportname</replaceable>.<replaceable>integer</replaceable>,
261             with <replaceable>exportname</replaceable> being the
262             filename that would otherwise have been used (after
263             name transformation for virtualization, if any, has been
264             performed) and <replaceable>integer</replaceable> an
265             integer number, starting with 0 and ending when no more
266             files can be found.
267           </para>
268           <para>
269             The size of the individual files will be autodetected,
270             <emphasis>even</emphasis> if the <option>filesize</option>
271             option has been specified. See the documentation for the
272             <option>multifile</option> for details.
273           </para>
274           <para>
275             Corresponds to the <option>-m</option> option on the
276             command line.
277           </para>
278         </listitem>
279       </varlistentry>
280       <varlistentry>
281         <term><option>port</option></term>
282         <listitem>
283           <para>Required; integer.</para>
284           <para>
285             The port on which this export is to be served. Currently
286             it is not possible to export multiple block devices on the
287             same port unless virtualization is used; future versions
288             of <command>nbd-server</command> may add this
289             functionality.
290           </para>
291           <para>
292             When specified on the command line, this should be the
293             first argument.
294           </para>
295         </listitem>
296       </varlistentry>
297       <varlistentry>
298         <term><option>readonly</option></term>
299         <listitem>
300           <para>Optional; boolean.</para>
301           <para>
302             Disallow writes to the device. If this option is
303             specified, <command>nbd-server</command> will issue an
304             error to any client that tries to write to the device.
305           </para>
306           <para>
307             Use of this option in conjunction with
308             <option>copyonwrite</option> is possible, but silly.
309           </para>
310           <para>Corresponds to the <option>-r</option> option on the
311           command line.</para>
312         </listitem>
313       </varlistentry>
314       <varlistentry>
315         <term><option>sparse_cow</option></term>
316         <listitem>
317           <para>Optional; boolean.</para>
318           <para>
319             When this option is enabled, <command>nbd-server</command>
320             will use sparse files to implement the copy-on-write
321             option; such files take up less space then they appear to,
322             which allows <command>nbd-server</command> to handle the
323             file as if it was just as large as the block device it's for.
324           </para>
325           <para>
326             If this option is disabled, <command>nbd-server</command>
327             will map every newly written block to the end of the
328             copy-on-write file, which means that
329             <command>nbd-server</command> will have to lseek(2) to the
330             right position after every 4096-byte block.
331           </para>
332           <para>
333             Using this option may be faster when much is being written
334             during a connection.
335           </para>
336         </listitem>
337       </varlistentry>
338       <varlistentry>
339         <term><option>timeout</option></term>
340         <listitem>
341           <para>Optional; integer; default 0</para>
342           <para>
343             How many seconds a connection may be idle for this
344             export. When a connection is idle for a longer time,
345             <command>nbd-server</command> will forcibly disconnect the
346             connection. If you specify 0 (the default), then a
347             connection may be idle forever.
348           </para>
349           <para>
350             Corresponds to the <option>-a</option> option on the
351             command line
352           </para>
353         </listitem>
354       </varlistentry>
355       <varlistentry>
356         <term><option>virtstyle</option></term>
357         <listitem>
358           <para>Optional; string; default "ipliteral"</para>
359           <para>
360             Defines the style of virtualization. Virtualization allows
361             one to create one export that will serve a different file
362             depending on the IP address that is connecting. When
363             virtualization is There are three types of virtualization
364             that <command>nbd-server</command> supports:
365           </para>
366           <variablelist>
367             <varlistentry>
368               <term><option>none</option></term>
369               <listitem>
370                 <para>
371                   No virtualization. Will attempt to open the filename
372                   as it was written, even if it contains '%s' in the
373                   name.
374                 </para>
375               </listitem>
376             </varlistentry>
377             <varlistentry>
378               <term><option>ipliteral</option></term>
379               <listitem>
380                 <para>
381                   <command>nbd-server</command> will look for the
382                   literal string '%s' in the
383                   <option>exportname</option>, and replace it by the
384                   IP address of the connecting host in dotted-quad
385                   notation. The string that results from this
386                   transformation will be used as an absolute pathname
387                   that <command>nbd-server</command> will attempt to
388                   open. As an example, if a client connects from
389                   192.168.1.100 and <option>exportname</option> is
390                   specified as <filename>/export/%s</filename>, then
391                   nbd-server will attempt to serve
392                   <filename>/export/192.168.1.100</filename>
393                 </para>
394               </listitem>
395             </varlistentry>
396             <varlistentry>
397               <term><option>iphash</option></term>
398               <listitem>
399                 <para>
400                   Same as above, except that
401                   <command>nbd-server</command> will replace the dots
402                   in the IP address by forward slashes ('/'); in the
403                   same example, <command>nbd-server</command> would
404                   open <filename>/export/192/168/1/100</filename>
405                   instead.
406                 </para>
407               </listitem>
408             </varlistentry>
409             <varlistentry>
410               <term><option>cidrhash</option></term>
411               <listitem>
412                 <para>
413                   This option requires one to add a space and a number
414                   after it. <command>nbd-server</command> will use the
415                   number as a network mask in CIDR style, and use that
416                   as a hash cutoff point. In the above example, if
417                   <option>virtstyle</option> has been specified
418                   as <constant>cidrhash 16</constant>, then
419                   <command>nbd-server</command> will try to open
420                   <filename>/export/192.168.0.0/192.168.1.100</filename>; if
421                   <option>virtstyle</option> were specified as
422                   <constant>cidrhash 26</constant>, then
423                   <command>nbd-server</command> will try to open
424                   <filename>/export/192.168.1.64/192.168.1.100</filename>.
425                 </para>
426               </listitem>
427             </varlistentry>
428           </variablelist>
429         </listitem>
430       </varlistentry>
431     </variablelist>
432
433   </refsect1>
434   <refsect1>
435     <title>SEE ALSO</title>
436
437     <para>nbd-server (1), nbd-client (8),
438       http://nbd.sourceforge.net/roadmap.html</para>
439
440   </refsect1>
441   <refsect1>
442     <title>AUTHOR</title>
443     <para>The NBD kernel module and the NBD tools were originally
444       written by Pavel Machek (pavel@ucw.cz)</para>
445
446     <para>The Linux kernel module is now maintained by Paul Clements
447       (Paul.Clements@steeleye.com), while the userland tools are
448       maintained by &dhusername; (&dhemail;)</para>
449
450     <para>On The Hurd there is a regular translator available to perform the
451       client side of the protocol, and the use of
452       <command>nbd-client</command> is not required. Please see the
453       relevant documentation for more information.</para>
454
455     <para>This manual page was written by &dhusername; (&dhemail;) for
456       the &debian; system (but may be used by others).  Permission is
457       granted to copy, distribute and/or modify this document under
458       the terms of the <acronym>GNU</acronym> General Public License,
459       version 2, as published by the Free Software Foundation.</para>
460
461   </refsect1>
462   <refsect1>
463     <title>EXAMPLES</title>
464     <para>A simple <command>nbd-server</command> configuration file
465       would look like this:</para>
466     <programlisting>
467       [generic]
468       [export]
469           exportname = /export/blkdev
470           port = 12345
471     </programlisting>
472     <para>For increased security, one might want to create an
473       authorization file, and set the UID and GID to run as:</para>
474     <programlisting>
475       [generic]
476           user = nbd
477           group = nbd
478       [export]
479           exportname = /export/blkdev
480           port = 12345
481           authfile = /etc/nbd-server/allow
482     </programlisting>
483     <para>With /etc/nbd-server/allow containing the following:</para>
484     <programlisting>
485       127.0.0.1
486       192.168.0.0/8
487       192.168.1.1
488     </programlisting>
489   </refsect1>
490 </refentry>
491
492 <!-- Keep this comment at the end of the file
493 Local variables:
494 mode: sgml
495 sgml-omittag:t
496 sgml-shorttag:t
497 sgml-minimize-attributes:nil
498 sgml-always-quote-attributes:t
499 sgml-indent-step:2
500 sgml-indent-data:t
501 sgml-parent-document:nil
502 sgml-default-dtd-file:nil
503 sgml-exposed-tags:nil
504 sgml-local-catalogs:nil
505 sgml-local-ecat-files:nil
506 End:
507 -->