0fba0e25cf37c68fb7661bb9d973366f0b972736
[debian/amanda] / man / amanda.conf.5
1 '\" t
2 .\"     Title: amanda.conf
3 .\"    Author: James da Silva <jds@amanda.org>
4 .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/>
5 .\"      Date: 02/21/2012
6 .\"    Manual: File formats and conventions
7 .\"    Source: Amanda 3.3.1
8 .\"  Language: English
9 .\"
10 .TH "AMANDA\&.CONF" "5" "02/21/2012" "Amanda 3\&.3\&.1" "File formats and conventions"
11 .\" -----------------------------------------------------------------
12 .\" * Define some portability stuff
13 .\" -----------------------------------------------------------------
14 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15 .\" http://bugs.debian.org/507673
16 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
17 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
18 .ie \n(.g .ds Aq \(aq
19 .el       .ds Aq '
20 .\" -----------------------------------------------------------------
21 .\" * set default formatting
22 .\" -----------------------------------------------------------------
23 .\" disable hyphenation
24 .nh
25 .\" disable justification (adjust text to left margin only)
26 .ad l
27 .\" -----------------------------------------------------------------
28 .\" * MAIN CONTENT STARTS HERE *
29 .\" -----------------------------------------------------------------
30 .SH "NAME"
31 amanda.conf \- Main configuration file for Amanda, the Advanced Maryland Automatic Network Disk Archiver
32 .SH "DESCRIPTION"
33 .PP
34 \fBamanda.conf\fR(5)
35 is the main configuration file for Amanda\&. This manpage lists the relevant sections and parameters of this file for quick reference\&.
36 .PP
37 The file
38 \fB<CONFIG_DIR>/<config>/amanda\&.conf\fR
39 is loaded\&.
40 .SH "SYNTAX"
41 .PP
42 There are a number of configuration parameters that control the behavior of the Amanda programs\&. All have default values, so you need not specify the parameter in
43 \fBamanda\&.conf\fR
44 if the default is suitable\&.
45 .SS "COMMENTS"
46 .PP
47 Lines starting with # are ignored, as are blank lines\&. Comments may be placed on a line with a directive by starting the comment with a #\&. The remainder of the line is ignored\&.
48 .SS "KEYWORDS AND IDENTIFIERS"
49 .PP
50 Keywords are case insensitive, i\&.e\&.
51 \fBmailto\fR
52 and
53 \fBMailTo\fR
54 are treated the same\&. Also, the characters \*(Aq\fB\-\fR\*(Aq and \*(Aq\fB_\fR\*(Aq are interchangeable in all predefined Amanda keywords:
55 \fBdevice_property\fR
56 and
57 \fBdevice\-property\fR
58 have the same meaning\&. This manpage uses the dashed versions, but the underscored versions will be accepted for backward compatibility
59 .PP
60 Identifiers are names which are defined in the configuration itself, such as dumptypes or interfaces\&. Identifiers are are case\-insensitive, but sensitive to \*(Aq\fB\-\fR\*(Aq vs\&. \*(Aq\fB_\fR\*(Aq\&. Identifiers should be quoted in the configuration file, although For historical reasons, the quotes are optional\&.
61 .PP
62 Strings are always quoted with double quotes ("), and any double quotes or backslashes within the string are escaped with a backslash:
63 .sp
64 .nf
65 tapelist "/path/to/tapelist"
66 property "escaped\-string" "escaping: \e\e (backslash) and \e" (double\-quote)"
67 .fi
68 .PP
69 To summarize, then:
70 .sp
71 .nf
72                           # QUOTES        CASE            \-/_
73 logdir "logs"             # required      sensitive       sensitive
74 send\-amreport\-on strange  # prohibited    insensitive     insensitive
75 tapetype "EXABYTE"        # optional      insensitive     sensitive
76
77 define dumptype "dt" {    # optional      insensitive     sensitive
78   "dumptype\-common"       # optional      insensitive     sensitive
79   strategy noinc          # prohibited    insensitive     insensitive
80 }
81 .fi
82 .SS "VALUE SUFFIXES"
83 .PP
84 Integer arguments may have one of the following (case insensitive) suffixes, some of which have a multiplier effect:
85 .PP
86 \fBb byte bytes\fR
87 .RS 4
88 Some number of bytes\&.
89 .RE
90 .PP
91 \fBbps\fR
92 .RS 4
93 Some number of bytes per second\&.
94 .RE
95 .PP
96 \fBk kb kbyte kbytes kilobyte kilobytes\fR
97 .RS 4
98 Some number of kilobytes (bytes*1024)\&.
99 .RE
100 .PP
101 \fBkps kbps\fR
102 .RS 4
103 Some number of kilobytes per second (bytes*1024)\&.
104 .sp
105 It is the default multiplier for all size options\&.
106 .RE
107 .PP
108 \fBm mb meg mbyte mbytes megabyte megabytes\fR
109 .RS 4
110 Some number of megabytes (bytes*1024*1024)\&.
111 .RE
112 .PP
113 \fBmps mbps\fR
114 .RS 4
115 Some number of megabytes per second (bytes*1024*1024)\&.
116 .RE
117 .PP
118 \fBg gb gbyte gbytes gigabyte gigabytes\fR
119 .RS 4
120 Some number of gigabytes (bytes*1024*1024*1024)\&.
121 .RE
122 .PP
123 \fBt tb tbyte tbytes terabyte terabytes\fR
124 .RS 4
125 Some number of terabytes (bytes*1024*1024*1024*1024)\&.
126 .RE
127 .PP
128 \fBtape tapes\fR
129 .RS 4
130 Some number of tapes\&.
131 .RE
132 .PP
133 \fBday days\fR
134 .RS 4
135 Some number of days\&.
136 .RE
137 .PP
138 \fBweek weeks\fR
139 .RS 4
140 Some number of weeks (days*7)\&.
141 .if n \{\
142 .sp
143 .\}
144 .RS 4
145 .it 1 an-trap
146 .nr an-no-space-flag 1
147 .nr an-break-flag 1
148 .br
149 .ps +1
150 \fBNote\fR
151 .ps -1
152 .br
153 The value
154 \fBinf\fR
155 may be used in most places where an integer is expected to mean an infinite amount\&.
156 .sp
157 Boolean arguments may have any of the values
158 \fB1\fR,
159 \fBy\fR,
160 \fByes\fR,
161 \fBt\fR,
162 \fBtrue\fR
163 or
164 \fBon\fR
165 to indicate a true state, or
166 \fB0\fR,
167 \fBn\fR,
168 \fBno\fR,
169 \fBf\fR,
170 \fBfalse\fR
171 or
172 \fBoff\fR
173 to indicate a false state\&. If no argument is given,
174 \fBtrue\fR
175 is assumed\&.
176 .sp .5v
177 .RE
178 .RE
179 .SS "PARAMETER ORDER"
180 .PP
181 In general, the order in which parameters occur in the configuration file does not matter, with the exception of subsection inheritance\&. For example, if dumptype "normal\-encrypt" which inherits from dumptype "normal", then "normal" must appear first in the configuration file\&.
182 .SS "STRINGS"
183 .PP
184 Quoted strings in Amanda follow a common, C\-like syntax\&. Printable characters and whitespace are kept as\-is, except that the backslash character (\e) is used as an escape character, and a double\-quote ends the string\&. The allowed escape sequences are
185 .sp
186 .nf
187     ESCAPE SEQUENCE     BECOMES
188     \e\e                  \e
189     \e"                  "
190     \en                  (newline)
191     \et                  (tab)
192     \er                  (carriage return)
193     \ef                  (form\-feed)
194     \e1 \- \e7
195     \e01 \- \e77
196     \e001 \- \e377         (character specified in octal)
197 .fi
198 Illegally quoted strings are handled on a "best\-effort" basis, which may lead to unexpected results\&.
199 .PP
200 Examples:
201 .sp
202 .nf
203 finserver "/data/finance/XYZ Corp\*(Aqs \e"real\e" finances" finance\-high eth0 \-1
204 property "syspath" "C:\e\eWINDOWS\e\eSYSTEM"
205 .fi
206 .SS "SUBSECTIONS AND INHERITANCE"
207 .PP
208 Amanda configuration files may include various
209 \fIsubsections\fR, each defining a set of configuration directives\&. Each type of subsection is described below\&. Note that all types of subsections can
210 \fIinherit\fR
211 from other subsections of the same type by naming the "parent" section in the "child" subsection\&. For example:
212 .sp
213 .nf
214 define dumptype global {
215     record yes
216     index yes
217 }
218
219 define dumptype nocomp {
220     global      # inherit the parameters in dumptype \*(Aqglobal\*(Aq
221     compress none
222 }
223 .fi
224 .PP
225 Note that multiple inheritance is also supported by simply naming multiple parent sections in a child\&. Parents are implicitly expanded in place in a child, and the last occurrence of each parameter takes precedence\&. For example,
226 .sp
227 .nf
228 define tapetype par1 {
229     comment "Parent 1"
230     filemark 8k
231     speed 300bps
232     length 200M
233 }
234 define tapetype par2 {
235     comment "Parent 2"
236     filemark 16k
237     speed 400bps
238 }
239 define tapetype child {
240     par1
241     par2
242     filemark 32k
243 }
244 .fi
245 In this example, \*(Aqchild\*(Aq will have a filemark of 32k, a speed of 400bps, and a length of 200M\&.
246 .SH "GLOBAL PARAMETERS"
247 .PP
248 \fBorg\fR \fIstring\fR
249 .RS 4
250 Default:
251 \fI"daily"\fR\&. A descriptive name for the configuration\&. This string appears in the Subject line of mail reports\&. Each Amanda configuration should have a different string to keep mail reports distinct\&.
252 .RE
253 .PP
254 \fBmailer\fR \fIstring\fR
255 .RS 4
256 Default found by configure\&. A mail program that can send mail with \*(Aq\fIMAILER \-s "subject" user < message_file\fR\*(Aq\&.
257 .RE
258 .PP
259 \fBmailto\fR \fIstring\fR
260 .RS 4
261 Default: none\&. A space separated list of recipients for mail reports\&. If not specified, amdump will not send any mail\&.
262 .RE
263 .PP
264 \fBsend\-amreport\-on\fR [ \fBall\fR | \fBstrange\fR | \fBerror\fR | \fBnever\fR ]
265 .RS 4
266 Default:
267 \fBall\fR\&. Specify which types of messages will trigger an email from amreport\&. amreport is used by amdump and amflush\&.
268 .PP
269 \fBall\fR
270 .RS 4
271 Send an email on any message\&.
272 .RE
273 .PP
274 \fBstrange\fR
275 .RS 4
276 Send an email on strange or error message\&. A strange message occurs when the dump succeeded, but returned one or more errors unknown to Amanda\&.
277 .RE
278 .PP
279 \fBerror\fR
280 .RS 4
281 Send an email only on error messages\&.
282 .RE
283 .PP
284 \fBnever\fR
285 .RS 4
286 Never send an email\&.
287 .RE
288 .RE
289 .PP
290 \fBmax\-dle\-by\-volume\fR \fIint\fR
291 .RS 4
292 Default:
293 \fI1000000000\fR\&. The maximum number of dle written to a single volume\&.
294 .RE
295 .PP
296 \fBdumpcycle\fR \fIint\fR
297 .RS 4
298 Default:
299 \fI10 days\fR\&. The number of days in the backup cycle\&. Each disk will get a full backup at least this often\&. Setting this to zero tries to do a full backup each run\&.
300 .if n \{\
301 .sp
302 .\}
303 .RS 4
304 .it 1 an-trap
305 .nr an-no-space-flag 1
306 .nr an-break-flag 1
307 .br
308 .ps +1
309 \fBNote\fR
310 .ps -1
311 .br
312 This parameter may also be set in a specific
313 \fBdumptype\fR
314 (see below)\&. This value sets the default for all
315 \fBdumptype\fRs so must appear in
316 \fBamanda\&.conf\fR
317 before any
318 \fBdumptype\fRs are defined\&.
319 .sp .5v
320 .RE
321 .RE
322 .PP
323 \fBrunspercycle\fR \fIint\fR
324 .RS 4
325 Default:
326 \fIsame as dumpcycle\fR\&. The number of amdump runs in
327 \fBdumpcycle\fR
328 days\&. A value of 0 means the same value as
329 \fBdumpcycle\fR\&. A value of \-1 means guess the number of runs from the
330 \fBtapelist\fR(5)
331 file, which is the number of tapes used in the last
332 \fBdumpcycle\fR
333 days /
334 \fBruntapes\fR\&.
335 .RE
336 .PP
337 \fBtapecycle\fR \fIint\fR
338 .RS 4
339 Default:
340 \fI15 tapes\fR\&. Specifies the number of "active" volumes \- volumes that Amanda will not overwrite\&. While Amanda is always willing to write to a new volume, it refuses to overwrite a volume unless at least \*(Aq\fBtapecycle\fR
341 \-1\*(Aq volumes have been written since\&.
342 .sp
343 It is considered good administrative practice to set the
344 \fBtapecycle\fR
345 parameter slightly lower than the actual number of tapes in use\&. This allows the administrator to more easily cope with damaged or misplaced tapes or schedule adjustments that call for slight adjustments in the rotation order\&.
346 .sp
347 Note: Amanda is commonly misconfigured with
348 \fBtapecycle\fR
349 equal to the number of tapes per
350 \fBdumpcycle\fR\&. In this misconfiguration, amanda may erase a full dump before a new one is completed\&. Recovery is then impossible\&. The
351 \fBtapecycle\fR
352 must be at least one tape larger than the number of tapes per dumpcycle\&.
353 .sp
354 The number of tapes per dumpcycle is calculated by multiplying the number of
355 \fBamdump\fR
356 runs per dump cycle
357 \fBrunspercycle\fR
358 (the number of
359 \fBamdump\fR
360 runs per dump cycle) and
361 \fBruntapes\fR
362 (the number of tapes used per run)\&. Typically
363 \fBtapecycle\fR
364 is set to two or four times the tapes per dumpcycle\&.
365 .RE
366 .PP
367 \fBusetimestamps\fR \fIbool\fR
368 .RS 4
369 Default:
370 \fBYes\fR\&. This option allows Amanda to track multiple runs per calendar day\&. The only reason one might disable it is that Amanda versions before 2\&.5\&.1 can\*(Aqt read logfiles written when this option was enabled\&.
371 .RE
372 .PP
373 \fBlabel\-new\-tapes\fR \fIstring\fR
374 .RS 4
375 Deprecated, use
376 \fBautolabel\fR
377 option with options
378 \fBvolume\-error empty\fR
379 to get equivalent behavior\&.
380 .sp
381 Default: not set\&. When set, this directive will cause Amanda to automatically write an Amanda tape label to any blank tape she encounters\&.
382 .RE
383 .PP
384 \fBautolabel\fR \fIstring\fR [\fBany\fR] [\fBother\-config\fR] [\fBnon\-amanda\fR] [\fBvolume\-error\fR] [\fBempty\fR]
385 .RS 4
386 Default: not set\&. When set, this directive will cause Amanda to automatically write an Amanda tape label to most volume she encounters\&. This option is DANGEROUS because when set, Amanda may erase near\-failing tapes or tapes accidentally loaded in the wrong slot\&.
387 .sp
388 When using this directive, specify the template for new tape labels\&. The template can contains many variables that are substituted by their values:
389 .sp
390 .nf
391     $c : config name
392     $o : org configuration
393     $b : barcode of the volume
394     $s : slot number, can specify a minimun number of digit:
395          $3s to get \*(Aq001\*(Aq
396     $m : meta label
397 .fi
398 .sp
399 The template can contain some number of contiguous \*(Aq%\*(Aq characters, which will be replaced with a generated number\&. Be sure to specify enough \*(Aq%\*(Aq characters that you do not run out of tape labels\&. Example:
400 \fB"DailySet1\-%%%"\fR,
401 \fB"$c\-%%%"\fR,
402 \fB"$m\-%%%"\fR,
403 \fB"$m\-$b"\fR
404 .sp
405 The generared label can be used only if it match the
406 \fBlabelstr\fR
407 setting\&. The volume will not be used if the generated label doesn\*(Aqt match the
408 \fBlabelstr\fR
409 setting\&.
410 .sp
411 Note that many devices cannot distinguish an empty tape from an error condition, so it may is often necessary to include
412 \fBvolume\-error\fR
413 as an autolabel condition\&.
414 .PP
415 \fBany\fR
416 .RS 4
417 equivalent to \*(Aq\fBother\-config non\-amanda volume\-error empty\fR\*(Aq
418 .RE
419 .PP
420 \fBother\-config\fR
421 .RS 4
422 Label volumes with a valid Amanda label that do not match our
423 \fBlabelstr\fR\&. Danger: this may erase volumes
424 from other Amanda configurations without warning!
425 .RE
426 .PP
427 \fBnon\-amanda\fR
428 .RS 4
429 Label volumes which do not start with data that resembles an
430 Amanda header\&. Danger: this may erase volumes from other backup applications
431 without warning!
432 .RE
433 .PP
434 \fBvolume\-error\fR
435 .RS 4
436 Label volumes where an error occurs while trying to read the label\&.
437 Danger: this may erase arbitrary volumes due to transient errors\&.
438 .RE
439 .PP
440 \fBempty\fR
441 .RS 4
442 Label volumes where a read returns 0 bytes\&.
443 .RE
444 .RE
445 .PP
446 \fBmeta\-autolabel\fR \fIstring\fR
447 .RS 4
448 Default: not set\&. When set and if the changer support meta\-label, this directive will cause Amanda to automatically add a meta\-label to a meta\-volume\&.
449 .sp
450 A meta\-volume is a containers that contains many volumes, eg\&. a removable hard\-disk for use with chg\-disk, each hard disk have many slots (volume)\&. The meta\-label is the label to put on the meta\-volume\&.
451 .sp
452 When using this directive, specify the template for new meta labels\&. The template can contains many variables that are substituted by their values:
453 .sp
454 .nf
455     $c : config name
456     $o : org configuration
457 .fi
458 .sp
459 The template should contain some number of contiguous \*(Aq%\*(Aq characters, which will be replaced with a generated number\&. Be sure to specify enough \*(Aq%\*(Aq characters that you do not run out of meta labels\&. Example:
460 \fB"DailySet1\-%%%"\fR,
461 \fB"$o\-%%%"\fR,
462 .RE
463 .PP
464 \fBdumpuser\fR \fIstring\fR
465 .RS 4
466 Default:
467 \fI"amanda"\fR\&. The login name Amanda uses to run the backups\&. The backup client hosts must allow access from the tape server host as this user via
468 \fB\&.rhosts\fR
469 or
470 \fB\&.amandahosts\fR, depending on how the Amanda software was built\&.
471 .RE
472 .PP
473 \fBprinter\fR \fIstring\fR
474 .RS 4
475 Printer to use when doing tape labels\&. See the
476 \fBlbl\-templ\fR
477 \fBtapetype\fR
478 option\&.
479 .RE
480 .PP
481 \fBtapedev\fR \fIstring\fR
482 .RS 4
483 Default:
484 \fI"null:"\fR\&. This parameter can either specify a device (explicitly or by referencing a device definition \- see
485 \fBamanda-devices\fR(7)) or a tape changer (explicitly or by referencing a device definition \- see
486 \fBamanda-changers\fR(7))\&.
487 .RE
488 .PP
489 \fBdevice\-property\fR \fIstring\fR \fIstring\fR
490 .RS 4
491 These options can set various device properties\&. See
492 \fBamanda-devices\fR(7)
493 for more information on device properties and their syntax\&. Both strings are always quoted; the first string contains the name of the property to set, and the second contains its value\&. For example, to set a fixed block size of 128k, write:
494 .nf
495 device\-property "BLOCK_SIZE" "128k"
496 .fi
497 .RE
498 .PP
499 \fBproperty\fR [\fBappend\fR] \fIstring\fR \fIstring\fR+
500 .RS 4
501 These options can set various properties, they can be used by third party software to store information in the configuration file\&. Both strings are quoted; the first string contains the name of the property to set, and the others contains its values\&.
502 \fBappend\fR
503 keyword append the values to the list of values for that property\&.
504 .RE
505 .PP
506 \fBtpchanger\fR \fIstring\fR
507 .RS 4
508 Default: not set\&. The tape changer to use\&. In most cases, only one of
509 \fBtpchanger\fR
510 or
511 \fBtapedev\fR
512 is specified, although for backward compatibility both may be specified if
513 \fBtpchanger\fR
514 gives the name of an old changer script\&. See
515 \fBamanda-changers\fR(7)
516 for more information on configuring changers\&.
517 .RE
518 .PP
519 \fBinteractivity\fR \fIstring\fR
520 .RS 4
521 Default: not set\&. The interactivity module Amanda should use to interact with the user\&. See
522 \fBamanda-interactivity\fR(7)
523 for a list of modules\&.
524 .RE
525 .PP
526 \fBtaperscan\fR \fIstring\fR
527 .RS 4
528 Default: traditional\&. The taperscan module amanda should use to find a tape to write to\&. See
529 \fBamanda-taperscan\fR(7)
530 for a list of modules\&.
531 .RE
532 .PP
533 \fBchangerdev\fR \fIstring\fR
534 .RS 4
535 Default:
536 \fI"dev/null"\fR\&. A tape changer configuration parameter\&. Usage depends on the particular changer defined with the
537 \fBtpchanger\fR
538 option\&.
539 .RE
540 .PP
541 \fBchangerfile\fR \fIstring\fR
542 .RS 4
543 Default:
544 \fI"/usr/adm/amanda/log/changer\-status"\fR\&. A tape changer configuration parameter\&. Usage depends on the particular changer defined with the
545 \fBtpchanger\fR
546 option\&.
547 .RE
548 .PP
549 \fBruntapes\fR \fIint\fR
550 .RS 4
551 Default:
552 \fI1\fR\&. The maximum number of tapes used in a single run\&. If a tape changer is not configured, this option is not used and should be commented out of the configuration file\&.
553 .sp
554 If a tape changer is configured, this may be set larger than one to let Amanda write to more than one tape\&.
555 .sp
556 Note that this is an upper bound on the number of tapes, and Amanda may use less\&.
557 .RE
558 .PP
559 \fBmaxdumpsize\fR \fIint\fR
560 .RS 4
561 Default:
562 \fI\fBruntapes\fR\fR\fI*\fR\fI\fBtape\-length\fR\fR\&. Maximum number of bytes the planner will schedule for a run\&.
563 .sp
564 The default unit is Kbytes if it is not specified\&.
565 .RE
566 .PP
567 \fBtaperalgo\fR [ \fBfirst\fR | \fBfirstfit\fR | \fBlargest\fR | \fBlargestfit\fR | \fBsmallest\fR | \fBlast\fR ]
568 .RS 4
569 Default:
570 \fBfirst\fR\&. The algorithm used to choose which dump image to send to the taper\&.
571 .PP
572 \fBfirst\fR
573 .RS 4
574 First in, first out\&.
575 .RE
576 .PP
577 \fBfirstfit\fR
578 .RS 4
579 The first dump image that will fit on the current tape\&.
580 .RE
581 .PP
582 \fBlargest\fR
583 .RS 4
584 The largest dump image\&.
585 .RE
586 .PP
587 \fBlargestfit\fR
588 .RS 4
589 The largest dump image that will fit on the current tape\&.
590 .RE
591 .PP
592 \fBsmallest\fR
593 .RS 4
594 The smallest dump image\&.
595 .RE
596 .PP
597 \fBlast\fR
598 .RS 4
599 Last in, first out\&.
600 .RE
601 .RE
602 .PP
603 \fBtaper\-parallel\-write\fR \fIint\fR
604 .RS 4
605 Default:
606 \fI1\fR\&. Amanda can write simultaneously up to that number of volume at any given time\&. The changer must have as many drives\&.
607 .RE
608 .PP
609 \fBeject\-volume\fR \fIint\fR
610 .RS 4
611 Default:
612 \fIno\fR\&. Set to
613 \fByes\fR
614 if you want the volume to be ejected after Amanda wrote data to it\&. It works only with some changer and device\&.
615 .RE
616 .PP
617 \fBlabelstr\fR \fIstring\fR
618 .RS 4
619 Default:
620 \fI"\&.*"\fR\&. The tape label constraint regular expression\&. All tape labels generated (see
621 \fBamlabel\fR(8)) and used by this configuration must match the regular expression\&. If multiple configurations are run from the same tape server host, it is helpful to set their labels to different strings (for example, "DAILY[0\-9][0\-9]*" vs\&. "ARCHIVE[0\-9][0\-9]*") to avoid overwriting each other\*(Aqs tapes\&.
622 .RE
623 .PP
624 \fBtapetype\fR \fIstring\fR
625 .RS 4
626 Default:
627 \fIno default\fR\&. The type of tape drive associated with
628 \fBtapedev\fR
629 or
630 \fBtpchanger\fR\&. This refers to one of the defined
631 \fBtapetype\fRs in the config file (see below), which specify various tape parameters, like the
632 \fBlength\fR,
633 \fBfilemark\fR
634 size, and
635 \fBspeed\fR
636 of the tape media and device\&.
637 .RE
638 .PP
639 \fBctimeout\fR \fIint\fR
640 .RS 4
641 Default:
642 \fI30 seconds\fR\&. Maximum amount of time that
643 \fBamcheck\fR
644 will wait for each client host\&.
645 .RE
646 .PP
647 \fBdtimeout\fR \fIint\fR
648 .RS 4
649 Default:
650 \fI1800 seconds\fR\&. Amount of idle time per disk on a given client that a
651 \fBdumper\fR
652 running from within
653 \fBamdump\fR
654 will wait before it fails with a data timeout error\&.
655 .RE
656 .PP
657 \fBetimeout\fR \fIint\fR
658 .RS 4
659 Default:
660 \fI300 seconds\fR\&. Amount of time per estimate on a given client that the
661 \fBplanner\fR
662 step of
663 \fBamdump\fR
664 will wait to get the dump size estimates (note: Amanda runs up to 3 estimates for each DLE)\&. For instance, with the default of 300 seconds and four DLE\*(Aqs, each estimating level 0 and level 1 on client A,
665 \fBplanner\fR
666 will wait up to 40 minutes for that machine\&. A negative value will be interpreted as a total amount of time to wait per client instead of per disk\&.
667 .RE
668 .PP
669 \fBconnect\-tries\fR \fIint\fR
670 .RS 4
671 Default:
672 \fI3\fR\&. How many times the server will try a connection\&.
673 .RE
674 .PP
675 \fBreq\-tries\fR \fIint\fR
676 .RS 4
677 Default:
678 \fI3\fR\&. How many times the server will resend a REQ packet if it doesn\*(Aqt get the ACK packet\&.
679 .RE
680 .PP
681 \fBnetusage\fR \fIint\fR
682 .RS 4
683 Default:
684 \fI80000 Kbps\fR\&. The maximum network bandwidth allocated to Amanda, in Kbytes per second\&. See also the
685 \fBinterface\fR
686 section\&.
687 .RE
688 .PP
689 \fBinparallel\fR \fIint\fR
690 .RS 4
691 Default:
692 \fI10\fR\&. The maximum number of backups that Amanda will attempt to run in parallel\&. Amanda will stay within the constraints of network bandwidth and holding disk space available, so it doesn\*(Aqt hurt to set this number a bit high\&. Some contention can occur with larger numbers of backups, but this effect is relatively small on most systems\&.
693 .RE
694 .PP
695 \fBdisplayunit\fR "k|m|g|t"
696 .RS 4
697 Default:
698 \fI"k"\fR\&. The unit used to print many numbers, k=kilo, m=mega, g=giga, t=tera\&.
699 .RE
700 .PP
701 \fBdumporder\fR \fIstring\fR
702 .RS 4
703 Default:
704 \fI"tttTTTTTTT"\fR\&. The priority order of each dumper:
705 .sp
706 .nf
707 s: smallest size
708 S: largest size
709 t: smallest time
710 T: largest time
711 b: smallest bandwidth
712 B: largest bandwidth
713 .fi
714 .RE
715 .PP
716 \fBmaxdumps\fR \fIint\fR
717 .RS 4
718 Default:
719 \fI1\fR\&. The maximum number of backups from a single host that Amanda will attempt to run in parallel\&. See also the
720 \fBinparallel\fR
721 option\&.
722 .sp
723 Note that this parameter may also be set in a specific
724 \fBdumptype\fR
725 (see below)\&. This value sets the default for all
726 \fBdumptype\fRs so must appear in
727 \fBamanda\&.conf\fR
728 before any
729 \fBdumptype\fRs are defined\&.
730 .RE
731 .PP
732 \fBbumpsize\fR \fIint\fR
733 .RS 4
734 Default:
735 \fI10 Mbytes\fR\&. The minimum savings required to trigger an automatic bump from one incremental level to the next, expressed as size\&. If Amanda determines that the next higher backup level will be this much smaller than the current level, it will do the next level\&. The value of this parameter is used only if the parameter
736 \fIbumppercent\fR
737 is set to 0\&.
738 .sp
739 The default unit is Kbytes if it is not specified\&.
740 .sp
741 The global setting of this parameter can be overwritten inside of a dumptype\-definition\&.
742 .sp
743 See also the options
744 \fBbumppercent\fR,
745 \fBbumpmult\fR
746 and
747 \fBbumpdays\fR\&.
748 .RE
749 .PP
750 \fBbumppercent\fR \fIint\fR
751 .RS 4
752 Default:
753 \fI0\fR\&. The minimum savings required to trigger an automatic bump from one incremental level to the next, expressed as percentage of the current size of the DLE (size of current level 0)\&. If Amanda determines that the next higher backup level will be this much smaller than the current level, it will do the next level\&.
754 .sp
755 If this parameter is set to 0, the value of the parameter
756 \fIbumpsize\fR
757 is used to trigger bumping\&.
758 .sp
759 The global setting of this parameter can be overwritten inside of a dumptype\-definition\&.
760 .sp
761 See also the options
762 \fBbumpsize\fR,
763 \fBbumpmult\fR
764 and
765 \fBbumpdays\fR\&.
766 .RE
767 .PP
768 \fBbumpmult\fR \fIfloat\fR
769 .RS 4
770 Default:
771 \fI1\&.5\fR\&. The bump size multiplier\&. Amanda multiplies
772 \fBbumpsize\fR
773 by this factor for each level\&. This prevents active filesystems from bumping too much by making it harder to bump to the next level\&. For example, with the default
774 \fBbumpsize\fR
775 and
776 \fBbumpmult\fR
777 set to 2\&.0, the bump threshold will be 10 Mbytes for level one, 20 Mbytes for level two, 40 Mbytes for level three, and so on\&.
778 .sp
779 The global setting of this parameter can be overwritten inside of a dumptype\-definition\&.
780 .RE
781 .PP
782 \fBbumpdays\fR \fIint\fR
783 .RS 4
784 Default:
785 \fI2 days\fR\&. To insure redundancy in the dumps, Amanda keeps filesystems at the same incremental level for at least
786 \fBbumpdays\fR
787 days, even if the other bump threshold criteria are met\&.
788 .sp
789 The global setting of this parameter can be overwritten inside of a dumptype\-definition\&.
790 .RE
791 .PP
792 \fBdiskfile\fR \fIstring\fR
793 .RS 4
794 Default:
795 \fI"disklist"\fR\&. The file name for the
796 \fIdisklist\fR
797 file holding client hosts, disks and other client dumping information\&.
798 .RE
799 .PP
800 \fBinfofile\fR \fIstring\fR
801 .RS 4
802 Default:
803 \fI"/usr/adm/amanda/curinfo"\fR\&. The file or directory name for the historical information database\&. If Amanda was configured to use DBM databases, this is the base file name for them\&. If it was configured to use text formated databases (the default), this is the base directory and within here will be a directory per client, then a directory per disk, then a text file of data\&.
804 .RE
805 .PP
806 \fBlogdir\fR \fIstring\fR
807 .RS 4
808 Default:
809 \fI"/usr/adm/amanda"\fR\&. The directory for the
810 \fBamdump\fR
811 and
812 \fBlog\fR
813 files\&.
814 .RE
815 .PP
816 \fBindexdir\fR \fIstring\fR
817 .RS 4
818 Default
819 \fI"/usr/adm/amanda/index"\fR\&. The directory where index files (backup image catalogues) are stored\&. Index files are only generated for filesystems whose
820 \fBdumptype\fR
821 has the
822 \fBindex\fR
823 option enabled\&.
824 .RE
825 .PP
826 \fBtapelist\fR \fIstring\fR
827 .RS 4
828 Default:
829 \fI"tapelist"\fR\&. The file name for the active
830 \fBtapelist\fR(5)\&. Amanda maintains this file with information about the active set of tapes\&.
831 .RE
832 .PP
833 \fBdevice\-output\-buffer\-size\fR \fIint\fR
834 .RS 4
835 Default:
836 \fI1280k\fR\&. Controls the amount of memory used by Amanda to hold data as it is read from the network or disk before it is written to the output device\&. Higher values may be useful on fast tape drives and optical media\&.
837 .sp
838 The default unit is bytes if it is not specified\&.
839 .RE
840 .PP
841 \fBtapebufs\fR \fIint\fR
842 .RS 4
843 Default:
844 \fI20\fR\&. This option is deprecated; use the
845 \fBdevice\-output\-buffer\-size\fR
846 directive instead\&.
847 \fBtapebufs\fR
848 works the same way, but the number specified is multiplied by the device blocksize prior to use\&.
849 .RE
850 .PP
851 \fBreserve\fR \fIint\fR
852 .RS 4
853 Default:
854 \fI100\fR\&. The part of holding\-disk space that should be reserved for incremental backups if no tape is available, expressed as a percentage of the available holding\-disk space (0\-100)\&. By default, when there is no tape to write to, degraded mode (incremental) backups will be performed to the holding disk\&. If full backups should also be allowed in this case, the amount of holding disk space reserved for incrementals should be lowered\&.
855 .RE
856 .PP
857 \fBautoflush\fR \fBno\fR|\fByes\fR|\fBall\fR
858 .RS 4
859 Default:
860 \fBno\fR\&. Whether an amdump run will flush the dumps from holding disk to tape\&. With
861 \fByes\fR, only dump matching the command line argument are flushed\&. With
862 \fBall\fR, all dump are flushed\&.
863 .RE
864 .PP
865 \fBamrecover\-do\-fsf\fR \fIbool\fR
866 .RS 4
867 Deprecated; amrecover always uses fsf, and does not invoke amrestore\&.
868 .sp
869 Default:
870 \fBon\fR\&. Amrecover will call amrestore with the \-f flag for faster positioning of the tape\&.
871 .RE
872 .PP
873 \fBamrecover\-check\-label\fR \fIbool\fR
874 .RS 4
875 Deprecated; amrecover always checks the label, and does not invoke amrestore\&.
876 .sp
877 Default:
878 \fBon\fR\&. Amrecover will call amrestore with the \-l flag to check the label\&.
879 .RE
880 .PP
881 \fBamrecover\-changer\fR \fIstring\fR
882 .RS 4
883 Default: not set\&. Amrecover will use the changer if you use \*(Aqsettape <string>\*(Aq and that string is the same as the
884 \fBamrecover\-changer\fR
885 setting\&.
886 .RE
887 .PP
888 \fBcolumnspec\fR \fIstring\fR
889 .RS 4
890 default: "HostName=0:12:12,Disk=1:11:11,Level=1:1:1,OrigKB=1:\-7:0,OutKB=1:\-7:0,Compress=1:\-6:1,DumpTime=1:\-7:7,Dumprate=1:\-6:1,TapeTime=1:\-6:6,TapeRate=1:\-6:1"
891 .sp
892 Defines the width of columns
893 \fBamreport\fR
894 should use\&.
895 \fIString\fR
896 is a comma (\*(Aq,\*(Aq) separated list of triples\&. Each triple consists of three parts which are separated by a equal sign (\*(Aq=\*(Aq) and a colon (\*(Aq:\*(Aq) (see the example)\&. These four parts specify:
897 .sp
898 .RS 4
899 .ie n \{\
900 \h'-04' 1.\h'+01'\c
901 .\}
902 .el \{\
903 .sp -1
904 .IP "  1." 4.2
905 .\}
906 the name of the column, which may be:
907 .sp
908 .nf
909         Compress (compression ratio)
910         Disk (client disk name)
911         DumpRate (dump rate in KBytes/sec)
912         DumpTime (total dump time in hours:minutes)
913         HostName (client host name)
914         Level (dump level)
915         OrigKB (original image size in KBytes)
916         OutKB (output image size in KBytes)
917         TapeRate (tape writing rate in KBytes/sec)
918         TapeTime (total tape time in hours:minutes)
919 .fi
920 .RE
921 .sp
922 .RS 4
923 .ie n \{\
924 \h'-04' 2.\h'+01'\c
925 .\}
926 .el \{\
927 .sp -1
928 .IP "  2." 4.2
929 .\}
930 the amount of space to display before the column (used to get whitespace between columns)\&.
931 .RE
932 .sp
933 .RS 4
934 .ie n \{\
935 \h'-04' 3.\h'+01'\c
936 .\}
937 .el \{\
938 .sp -1
939 .IP "  3." 4.2
940 .\}
941 the width of the column itself\&. If set to a negative value, the width will be calculated on demand to fit the largest entry in this column\&.
942 .RE
943 .sp
944 .RS 4
945 .ie n \{\
946 \h'-04' 4.\h'+01'\c
947 .\}
948 .el \{\
949 .sp -1
950 .IP "  4." 4.2
951 .\}
952 the precision of the column, number of digit after the decimal point for number\&.
953 .RE
954 .sp
955 Here is an example:
956 .sp
957 .nf
958 columnspec "Disk=1:18,HostName=0:10,OrigKB=::2,OutKB=1:7"
959 .fi
960 .sp
961 The above will display the disk information in 18 characters and put one space before it\&. The hostname column will be 10 characters wide with no space to the left\&. The Original KBytes print 2 decimal digit\&. The output KBytes column is seven characters wide with one space before it\&.
962 .RE
963 .PP
964 \fBincludefile\fR \fIstring\fR
965 .RS 4
966 Default:
967 \fIno default\fR\&. The name of an Amanda configuration file to include within the current file\&. Useful for sharing dumptypes, tapetypes and interface definitions among several configurations\&. Relative pathnames are relative to the configuration directory\&.
968 .RE
969 .PP
970 \fBdebug\-days\fR \fIint\fR
971 .RS 4
972 Default:
973 \fI3\fR\&. The number of days the debug files are kept\&.
974 .RE
975 .PP
976 \fBdebug\-auth\fR \fIint\fR
977 .RS 4
978 Default:
979 \fI0\fR\&. Debug level of the auth module
980 .RE
981 .PP
982 \fBdebug\-event\fR \fIint\fR
983 .RS 4
984 Default:
985 \fI0\fR\&. Debug level of the event module
986 .RE
987 .PP
988 \fBdebug\-holding\fR \fIint\fR
989 .RS 4
990 Default:
991 \fI0\fR\&. Debug level of the holdingdisk module
992 .RE
993 .PP
994 \fBdebug\-protocol\fR \fIint\fR
995 .RS 4
996 Default:
997 \fI0\fR\&. Debug level of the protocol module
998 .RE
999 .PP
1000 \fBdebug\-planner\fR \fIint\fR
1001 .RS 4
1002 Default:
1003 \fI0\fR\&. Debug level of the planner process
1004 .RE
1005 .PP
1006 \fBdebug\-driver\fR \fIint\fR
1007 .RS 4
1008 Default:
1009 \fI0\fR\&. Debug level of the driver process
1010 .RE
1011 .PP
1012 \fBdebug\-dumper\fR \fIint\fR
1013 .RS 4
1014 Default:
1015 \fI0\fR\&. Debug level of the dumper process
1016 .RE
1017 .PP
1018 \fBdebug\-chunker\fR \fIint\fR
1019 .RS 4
1020 Default:
1021 \fI0\fR\&. Debug level of the chunker process
1022 .RE
1023 .PP
1024 \fBdebug\-taper\fR \fIint\fR
1025 .RS 4
1026 Default:
1027 \fI0\fR\&. Debug level of the taper process
1028 .RE
1029 .PP
1030 \fBdebug\-recovery\fR \fIint\fR
1031 .RS 4
1032 Default:
1033 \fI1\fR\&. Debug level of all recovery process
1034 .RE
1035 .PP
1036 \fBflush\-threshold\-dumped\fR \fIint\fR
1037 .RS 4
1038 Default:
1039 \fI0\fR\&. Amanda will not begin writing data to a new volume until the amount of data on the holding disk is at least this percentage of the volume size\&. In other words, Amanda will not begin until the amount of data on the holding disk is greater than the tape length times this parameter\&. This parameter may be larger than 100%, for example to keep more recent dumps on the holding disk for faster recovery\&.
1040 .sp
1041 Needless to say, your holding disk must be big enough that this criterion could be satisfied\&. If the holding disk cannot be used for a particular dump (because, for example, there is no remaining holding space) then Amanda will disregard the constraint specified by this setting and start a new volume anyway\&. Once writing to a volume has begun, this constraint is not applied unless and until a new volume is needed\&.
1042 .sp
1043 The value of this parameter may not exceed than that of the
1044 \fBflush\-threshold\-scheduled\fR
1045 parameter\&.
1046 .RE
1047 .PP
1048 \fBflush\-threshold\-scheduled\fR \fIint\fR
1049 .RS 4
1050 Default:
1051 \fI0\fR\&. Amanda will not begin writing data to a new volume until the sum of the amount of data on the holding disk and the estimated amount of data remaining to be dumped during this run is at least this percentage of the volume size\&. In other words, Amanda will not begin until the inequality
1052 h + s > t \(mu d
1053 is satisfied, where
1054 h
1055 is the amount of data on the holding disk,
1056 s
1057 is the total amount of data scheduled for this run but not dumped yet,
1058 t
1059 is the capacity of a volume, and
1060 d
1061 is this parameter, expressed as a percentage\&. This parameter may be larger than 100%\&.
1062 .sp
1063 Needless to say, your holding disk must be big enough that this criterion could be satisfied\&. If the holding disk cannot be used for a particular dump (because, for example, there is no remaining holding space) then Amanda will disregard the constraint specified by this setting and start a new volume anyway\&. Once writing to a volume has begun, this constraint is not applied unless and until a new volume is needed\&.
1064 .sp
1065 The value of this parameter may not be less than that of the
1066 \fBflush\-threshold\-dumped\fR
1067 or
1068 \fBtaperflush\fR
1069 parameters\&.
1070 .RE
1071 .PP
1072 \fBtaperflush\fR \fIint\fR
1073 .RS 4
1074 Default:
1075 \fI0\fR\&. At the end of a run, Amanda will start a new tape to flush remaining data if there is more data on the holding disk at the end of a run than this setting allows; the amount is specified as a percentage of the capacity of a single volume\&. In other words, at the end of a run, Amanda will begin a new tape if the inequality
1076 h > t \(mu f
1077 is satisfied, where
1078 h
1079 is the amount of data remaining on the holding disk from this or previous runs,
1080 t
1081 is the capacity of a volume, and
1082 f
1083 is this parameter, expressed as a percentage\&. This parameter may be greater than 100%\&.
1084 .sp
1085 The value of this parameter may not exceed that of the
1086 \fBflush\-threshold\-scheduled\fR
1087 parameter\&.;
1088 \fBautoflush\fR
1089 must be set to \*(Aqyes\*(Aq if
1090 \fBtaperflush\fR
1091 is greater than 0\&.
1092 .RE
1093 .PP
1094 \fBreserved\-udp\-port\fR \fIint\fR,\fIint\fR
1095 .RS 4
1096 Default: \-\-with\-udpportrange or
1097 \fI512,1023\fR\&. Reserved udp port that will be used (bsd, bsdudp)\&. Range is inclusive\&.
1098 .RE
1099 .PP
1100 \fBreserved\-tcp\-port\fR \fIint\fR,\fIint\fR
1101 .RS 4
1102 Default: \-\-with\-low\-tcpportrange or
1103 \fI512,1023\fR\&. Reserved tcp port that will be used (bsdtcp)\&. Range is inclusive\&.
1104 .RE
1105 .PP
1106 \fBunreserved\-tcp\-port\fR \fIint\fR,\fIint\fR
1107 .RS 4
1108 Default: \-\-with\-tcpportrange or
1109 \fI1024,65535\fR\&. Unreserved tcp port that will be used (bsd, bsdudp)\&. Range is inclusive\&.
1110 .RE
1111 .PP
1112 \fBrecovery\-limit\fR [ \fIstring\fR | \fBsame\-host\fR | \fBserver\fR]
1113 .RS 4
1114 Default: none (no limitations)\&. This parameter limits the hosts that may do recoveries\&. Hosts are identified by their authenticated peer name, as described in
1115 \fBamanda-auth\fR(7); if this is not available and the recovery\-limit parameter is present, recovery will be denied\&. The arguments to the parameter are strings giving host match expressions (see
1116 \fBamanda-match\fR(7)) or the special keywords
1117 \fBsame\-host\fR
1118 or
1119 \fBserver\fR\&. The
1120 \fBsame\-host\fR
1121 keyword requires an exact match to the hostname of the DLE being recovered\&. The
1122 \fBserver\fR
1123 keyword require the connection come from the fqdn of the server\&. Specifying no arguments at all will disable all recoveries from any host\&.
1124 .sp
1125 Note that match expressions can be constructed to be forgiving of e\&.g\&., fully\-qualified vs\&. unqualified hostnames, but
1126 \fBsame\-host\fR
1127 requires an exact match\&.
1128 .sp
1129 The error messages that appear in amrecover are intentionally vague to avoid information leakage\&. Consult the amindexd debug log for more details on the reasons a recovery was rejected\&.
1130 .sp
1131 Recovery limits can be refined on a per\-DLE basis using the dumptype parameter of the same name\&. Note that the default value will apply to any dumpfiles for disks which no longer appear in the disklist; thus leaving the global parameter at its default value but setting it for all DLEs is not sufficient to maintain secure backups\&.
1132 .RE
1133 .SH "HOLDINGDISK SECTION"
1134 .PP
1135 The
1136 \fBamanda\&.conf\fR
1137 file may define one or more holding disks used as buffers to hold backup images before they are written to tape\&. The syntax is:
1138 .nf
1139 define holdingdisk \fIname\fR {
1140     \fIholdingdisk\-option\fR \fIholdingdisk\-value\fR
1141     \&.\&.\&.
1142 }
1143 .fi
1144 .PP
1145 The { must appear at the end of a line, and the } on its own line\&.
1146 .PP
1147 \fIName\fR
1148 is a logical name for this holding disk\&.
1149 .PP
1150 The options and values are:
1151 .PP
1152 \fBcomment\fR \fIstring\fR
1153 .RS 4
1154 Default: not set\&. A comment string describing this holding disk\&.
1155 .RE
1156 .PP
1157 \fBdirectory\fR \fIstring\fR
1158 .RS 4
1159 Default:
1160 \fI"/dumps/amanda"\fR\&. The path to this holding area\&.
1161 .RE
1162 .PP
1163 \fBuse\fR \fIint\fR
1164 .RS 4
1165 Default:
1166 \fI0 Gb\fR\&. Amount of space that can be used in this holding disk area\&. If the value is zero, all available space on the file system is used\&. If the value is negative, Amanda will use all available space minus that value\&.
1167 .RE
1168 .PP
1169 \fBchunksize\fR \fIint\fR
1170 .RS 4
1171 Default:
1172 \fI1 Gb\fR\&. Holding disk chunk size\&. Dumps larger than the specified size will be stored in multiple holding disk files\&. The size of each chunk will not exceed the specified value\&. However, even though dump images are split in the holding disk, they are concatenated as they are written to tape, so each dump image still corresponds to a single continuous tape section\&.
1173 .sp
1174 The default unit is Kbytes if it is not specified\&.
1175 .sp
1176 If 0 is specified, Amanda will create holding disk chunks as large as ((INT_MAX/1024)\-64) Kbytes\&.
1177 .sp
1178 Each holding disk chunk includes a 32 Kbyte header, so the minimum chunk size is 64 Kbytes (but that would be really silly)\&.
1179 .sp
1180 Operating systems that are limited to a maximum file size of 2 Gbytes actually cannot handle files that large\&. They must be at least one byte less than 2 Gbytes\&. Since Amanda works with 32 Kbyte blocks, and to handle the final read at the end of the chunk, the chunk size should be at least 64 Kbytes (2 * 32 Kbytes) smaller than the maximum file size, e\&.g\&. 2047 Mbytes\&.
1181 .RE
1182 .SH "DUMPTYPE SECTION"
1183 .PP
1184 The
1185 \fBamanda.conf\fR(5)
1186 file may define multiple sets of backup options and refer to them by name from the
1187 \fBdisklist\fR(5)
1188 file\&. For instance, one set of options might be defined for file systems that can benefit from high compression, another set that does not compress well, another set for file systems that should always get a full backup and so on\&.
1189 .PP
1190 A set of backup options are entered in a
1191 \fBdumptype\fR
1192 section, which looks like this:
1193 .nf
1194 define dumptype "\fIname\fR" {
1195     \fIdumptype\-option\fR \fIdumptype\-value\fR
1196     \&.\&.\&.
1197 }
1198 .fi
1199 .PP
1200 The { must appear at the end of a line, and the } on its own line\&.
1201 .PP
1202 \fIName\fR
1203 is the name of this set of backup options\&. It is referenced from the
1204 \fBdisklist\fR(5)
1205 file\&.
1206 .PP
1207 Some of the options in a
1208 \fBdumptype\fR
1209 section are the same as those in the main part of
1210 \fBamanda.conf\fR(5)\&. The main option value is used to set the default for all
1211 \fBdumptype\fR
1212 sections\&. For instance, setting
1213 \fBdumpcycle\fR
1214 to 50 in the main part of the config file causes all following
1215 \fBdumptype\fR
1216 sections to start with that value, but the value may be changed on a section by section basis\&. Changes to variables in the main part of the config file must be done before (earlier in the file) any
1217 \fBdumptype\fRs are defined\&.
1218 .PP
1219 The dumptype options and values are:
1220 .PP
1221 \fBauth\fR \fIstring\fR
1222 .RS 4
1223 Default:
1224 \fI"bsdtcp"\fR\&. Type of authorization to perform between tape server and backup client hosts\&. See
1225 \fBamanda-auth\fR(7)
1226 for more detail\&.
1227 .RE
1228 .PP
1229 \fBamandad\-path\fR \fIstring\fR
1230 .RS 4
1231 Default:
1232 \fI"$libexec/amandad"\fR\&. Specify the amandad path of the client, only use with rsh/ssh authentification\&.
1233 .RE
1234 .PP
1235 \fBclient\-username\fR \fIstring\fR
1236 .RS 4
1237 Default:
1238 \fICLIENT_LOGIN\fR\&. Specify the username to connect on the client, only use with rsh/ssh authentification\&.
1239 .RE
1240 .PP
1241 \fBclient\-port\fR [ \fIint\fR | \fIstring\fR ]
1242 .RS 4
1243 Default:
1244 \fI"amanda"\fR\&. Specifies the port to connect to on the client\&. It can be a service name or a numeric port number\&.
1245 .RE
1246 .PP
1247 \fBbumpsize\fR \fIint\fR
1248 .RS 4
1249 Default:
1250 \fI10 Mbytes\fR\&. The minimum savings required to trigger an automatic bump from one incremental level to the next, expressed as size\&. If Amanda determines that the next higher backup level will be this much smaller than the current level, it will do the next level\&. The value of this parameter is used only if the parameter
1251 \fIbumppercent\fR
1252 is set to 0\&.
1253 .sp
1254 The default unit is Kbytes if it is not specified\&.
1255 .sp
1256 See also the options
1257 \fBbumppercent\fR,
1258 \fBbumpmult\fR
1259 and
1260 \fBbumpdays\fR\&.
1261 .RE
1262 .PP
1263 \fBbumppercent\fR \fIint\fR
1264 .RS 4
1265 Default:
1266 \fI0\fR\&. The minimum savings required to trigger an automatic bump from one incremental level to the next, expressed as percentage of the current size of the DLE (size of current level 0)\&. If Amanda determines that the next higher backup level will be this much smaller than the current level, it will do the next level\&.
1267 .sp
1268 If this parameter is set to 0, the value of the parameter
1269 \fIbumpsize\fR
1270 is used to trigger bumping\&.
1271 .sp
1272 See also the options
1273 \fBbumpsize\fR,
1274 \fBbumpmult\fR
1275 and
1276 \fBbumpdays\fR\&.
1277 .RE
1278 .PP
1279 \fBbumpmult\fR \fIfloat\fR
1280 .RS 4
1281 Default:
1282 \fI1\&.5\fR\&. The bump size multiplier\&. Amanda multiplies
1283 \fBbumpsize\fR
1284 by this factor for each level\&. This prevents active filesystems from bumping too much by making it harder to bump to the next level\&. For example, with the default
1285 \fBbumpsize\fR
1286 and
1287 \fBbumpmult\fR
1288 set to 2\&.0, the bump threshold will be 10 Mbytes for level one, 20 Mbytes for level two, 40 Mbytes for level three, and so on\&.
1289 .RE
1290 .PP
1291 \fBbumpdays\fR \fIint\fR
1292 .RS 4
1293 Default:
1294 \fI2 days\fR\&. To insure redundancy in the dumps, Amanda keeps filesystems at the same incremental level for at least
1295 \fBbumpdays\fR
1296 days, even if the other bump threshold criteria are met\&.
1297 .RE
1298 .PP
1299 \fBcomment\fR \fIstring\fR
1300 .RS 4
1301 Default: not set\&. A comment string describing this set of backup options\&.
1302 .RE
1303 .PP
1304 \fBcomprate\fR \fIfloat\fR [, \fIfloat\fR ]
1305 .RS 4
1306 Default:
1307 \fI0\&.50, 0\&.50\fR\&. The expected full and incremental compression factor for dumps\&. It is only used if Amanda does not have any history information on compression rates for a filesystem, so should not usually need to be set\&. However, it may be useful for the first time a very large filesystem that compresses very little is backed up\&.
1308 .RE
1309 .PP
1310 \fBcompress\fR [ \fBnone\fR | \fBclient\fR | \fBserver\fR ] [ \fBbest\fR | \fBfast\fR | \fBcustom\fR ]
1311 .RS 4
1312 Default:
1313 \fBclient fast\fR\&. If Amanda does compression of the backup images, it can do so either on the backup client host before it crosses the network or on the tape server host as it goes from the network into the holding disk or to tape\&. Which place to do compression (if at all) depends on how well the dump image usually compresses, the speed and load on the client or server, network capacity, holding disk capacity, availability of tape hardware compression, etc\&.
1314 .sp
1315 For either type of compression, Amanda also allows the selection of three styles of compression\&.
1316 \fBbest\fR
1317 is the best compression available, often at the expense of CPU overhead\&.
1318 \fBfast\fR
1319 is often not as good a compression as
1320 \fBbest\fR, but usually less CPU overhead\&. Or to specify
1321 \fBcustom\fR
1322 to use your own compression method\&. (See dumptype custom\-compress in example/amanda\&.conf for reference)
1323 .sp
1324 So the
1325 \fBcompress\fR
1326 options line may be one of:
1327 .PP
1328 compress none
1329 .RS 4
1330 .RE
1331 .PP
1332 compress client fast
1333 .RS 4
1334 .RE
1335 .PP
1336 compress client best
1337 .RS 4
1338 .RE
1339 .PP
1340 compress client custom
1341 .RS 4
1342 Specify
1343 \fBclient\-custom\-compress\fR
1344 "PROG"
1345 .sp
1346 PROG must not contain white space and it must accept \-d for uncompress\&.
1347 .RE
1348 .PP
1349 compress server fast
1350 .RS 4
1351 .RE
1352 .PP
1353 compress server best
1354 .RS 4
1355 .RE
1356 .PP
1357 compress server custom
1358 .RS 4
1359 Specify
1360 \fBserver\-custom\-compress\fR
1361 "PROG"
1362 .sp
1363 PROG must not contain white space and it must accept \-d for uncompress\&.
1364 .RE
1365 .sp
1366 Note that some tape devices do compression and this option has nothing to do with whether that is used\&. If hardware compression is used (usually via a particular tape device name or
1367 \fBmt\fR
1368 option), Amanda (software) compression should be disabled\&.
1369 .RE
1370 .PP
1371 \fBclient\-custom\-compress\fR \fIstring\fR
1372 .RS 4
1373 Default: none\&. The program to use to perform compression/decompression on the client; used with "compress client custom"\&. Must not contain whitespace\&. Must accept \-d to uncompress\&.
1374 .RE
1375 .PP
1376 \fBserver\-custom\-compress\fR \fIstring\fR
1377 .RS 4
1378 Default: none\&. The program to use to perform compression/decompression on the server; used with "compress server custom"\&. Must not contain whitespace\&. Must accept \-d to uncompress\&.
1379 .RE
1380 .PP
1381 \fBdumpcycle\fR \fIint\fR
1382 .RS 4
1383 Default:
1384 \fI10 days\fR\&. The number of days in the backup cycle\&. Each disk using this set of options will get a full backup at least this of ten\&. Setting this to zero tries to do a full backup each run\&.
1385 .RE
1386 .PP
1387 \fBencrypt\fR [ \fBnone\fR | \fBclient\fR | \fBserver\fR ]
1388 .RS 4
1389 Default: not set\&. To encrypt backup images, it can do so either on the backup client host before it crosses the network or on the tape server host as it goes from the network into the holding disk or to tape\&.
1390 .sp
1391 So the
1392 \fBencrypt\fR
1393 options line may be one of:
1394 .PP
1395 encrypt none
1396 .RS 4
1397 .RE
1398 .PP
1399 encrypt client
1400 .RS 4
1401 Specify client\-encrypt "PROG"
1402 .sp
1403 PROG must not contain white space\&.
1404 .sp
1405 Specify client\-decrypt\-option "decryption\-parameter" Default: "\-d"
1406 .sp
1407 decryption\-parameter must not contain white space\&.
1408 .sp
1409 (See dumptype client\-encrypt\-nocomp in example/amanda\&.conf for reference)
1410 .RE
1411 .PP
1412 encrypt server
1413 .RS 4
1414 Specify server\-encrypt "PROG"
1415 .sp
1416 PROG must not contain white space\&.
1417 .sp
1418 Specify server\-decrypt\-option "decryption\-parameter" Default: "\-d"
1419 .sp
1420 decryption\-parameter must not contain white space\&.
1421 .sp
1422 (See dumptype server\-encrypt\-fast in example/amanda\&.conf for reference)
1423 .RE
1424 .sp
1425 Note that current logic assumes compression then encryption during backup(thus decrypt then uncompress during restore)\&. So specifying client\-encryption AND server\-compression is not supported\&.
1426 \fIamcrypt\fR
1427 which is a wrapper of
1428 \fIaespipe\fR
1429 is provided as a reference symmetric encryption program\&.
1430 .RE
1431 .PP
1432 \fBclient\-encrypt\fR \fIstring\fR
1433 .RS 4
1434 Default: none\&. The program to use to perform encryption/decryption on the client; used with "encrypt client"\&. Must not contain whitespace\&.
1435 .RE
1436 .PP
1437 \fBclient\-decrypt\-option\fR \fIstring\fR
1438 .RS 4
1439 Default: \-d\&. The option that can be passed to client\-encrypt to make it decrypt instead\&. Must not contain whitespace\&.
1440 .RE
1441 .PP
1442 \fBserver\-encrypt\fR \fIstring\fR
1443 .RS 4
1444 Default: none\&. The program to use to perform encryption/decryption on the server; used with "encrypt server"\&. Must not contain whitespace\&.
1445 .RE
1446 .PP
1447 \fBserver\-decrypt\-option\fR \fIstring\fR
1448 .RS 4
1449 Default: \-d\&. The option that can be passed to server\-encrypt to make it decrypt instead\&. Must not contain whitespace\&.
1450 .RE
1451 .PP
1452 \fBestimate\fR [ \fBclient\fR | \fBcalcsize\fR | \fBserver\fR ]+
1453 .RS 4
1454 Default:
1455 \fBclient\fR\&. Determine the way Amanda estimates the size of each DLE before beginning a backup\&. This is a list of acceptable estimate methods, and Amanda applies the first method supported by the application\&. The methods are:
1456 .PP
1457 client
1458 .RS 4
1459 Use the same program as the dumping program\&. This is the most accurate method to do estimates, but it can take a long time\&.
1460 .RE
1461 .PP
1462 calcsize
1463 .RS 4
1464 Use a faster program to do estimates, but the result is less accurate\&.
1465 .RE
1466 .PP
1467 server
1468 .RS 4
1469 Use only statistics from the previous few runs to give an estimate\&. This very quick, but the result is not accurate if your disk usage changes from day to day\&. If this method is specified, but the server does not have enough data to make an estimate, then the option is internally moved to the end of the list, thereby preferring \*(Aqclient\*(Aq or \*(Aqcalcsize\*(Aq in this case\&.
1470 .RE
1471 .RE
1472 .PP
1473 \fBexclude\fR [ \fBlist\fR | \fBfile\fR ][[\fBoptional\fR][\fBappend\fR][ \fIstring\fR ]+]
1474 .RS 4
1475 Default:
1476 \fBfile\fR\&. Exclude is the opposite of
1477 \fBinclude\fR
1478 and specifies files that will be excluded from the backup\&. The format of the exclude expressions depends on the application, and some applications do not support excluding files at all\&.
1479 .sp
1480 There are two exclude parameters,
1481 \fBexclude\fR
1482 \fBfile\fR
1483 and
1484 \fBexclude\fR
1485 \fBlist\&.\fR
1486 With
1487 \fBexclude\fR
1488 \fBfile\fR, the
1489 \fIstring\fR
1490 is an exclude expression\&. With
1491 \fBexclude\fR
1492 \fBlist\fR
1493 , the
1494 \fIstring\fR
1495 is a file name on the client containing
1496 \fBGNU\-tar\fR
1497 exclude expressions\&. The path to the specified exclude list file, if present (see description of \*(Aqoptional\*(Aq below), must be readable by the Amanda user\&.
1498 .sp
1499 All exclude expressions are concatenated in one file and passed to the application as an
1500 \fB\-\-exclude\-from\fR
1501 argument\&.
1502 .sp
1503 For
1504 \fBGNU\-tar\fR, exclude expressions must always be specified as relative to the top\-level directory of the DLE, and must start with "\&./"\&. See the manpages for individual applications for more information on supported exclude expressions\&.
1505 .sp
1506 With the
1507 \fBappend\fR
1508 keyword, the
1509 \fIstring\fR
1510 is appended to the current list, without it, the
1511 \fIstring\fR
1512 overwrites the list\&.
1513 .sp
1514 If
1515 \fBoptional\fR
1516 is specified for
1517 \fBexclude\fR
1518 \fBlist\fR, then amcheck will not complain if the file doesn\*(Aqt exist or is not readable\&.
1519 .sp
1520 For
1521 \fBexclude\fR
1522 \fBlist\fR, if the file name is relative, the disk name being backed up is prepended\&. So if this is entered:
1523 .nf
1524     exclude list "\&.amanda\&.excludes"
1525 .fi
1526 the actual file used would be
1527 /var/\&.amanda\&.excludes
1528 for a backup of
1529 /var,
1530 /usr/local/\&.amanda\&.excludes
1531 for a backup of
1532 /usr/local, and so on\&.
1533 .RE
1534 .PP
1535 \fBholdingdisk\fR [ \fBnever\fR | \fBauto\fR | \fBrequired\fR ]
1536 .RS 4
1537 Default:
1538 \fBauto\fR\&. Whether a holding disk should be used for these backups or whether they should go directly to tape\&. If the holding disk is a portion of another file system that Amanda is backing up, that file system should refer to a dumptype with
1539 \fBholdingdisk\fR
1540 set to
1541 \fInever\fR
1542 to avoid backing up the holding disk into itself\&.
1543 .PP
1544 \fBnever\fR|no|false|off
1545 .RS 4
1546 Never use a holdingdisk, the dump will always go directly to tape\&. There will be no dump if you have a tape error\&.
1547 .RE
1548 .PP
1549 \fBauto\fR|yes|true|on
1550 .RS 4
1551 Use the holding disk, unless there is a problem with the holding disk, the dump won\*(Aqt fit there or the medium doesn\*(Aqt require spooling (e\&.g\&., VFS device)
1552 .RE
1553 .PP
1554 \fBrequired\fR
1555 .RS 4
1556 Always dump to holdingdisk, never directly to tape\&. There will be no dump if it doesn\*(Aqt fit on holdingdisk
1557 .RE
1558 .RE
1559 .PP
1560 \fBignore\fR \fIboolean\fR
1561 .RS 4
1562 Default:
1563 \fBno\fR\&. Whether disks associated with this backup type should be backed up or not\&. This option is useful when the
1564 \fIdisklist\fR
1565 file is shared among several configurations, some of which should not back up all the listed file systems\&.
1566 .RE
1567 .PP
1568 \fBinclude\fR [ \fBlist\fR | \fBfile\fR ][[\fBoptional\fR][\fBappend\fR][ \fIstring\fR ]+]
1569 .RS 4
1570 Default:
1571 \fBfile\fR
1572 "\&."\&. There are two include lists,
1573 \fBinclude file\fR
1574 and
1575 \fBinclude list\&.\fR
1576 With
1577 \fBinclude file\fR
1578 , the
1579 \fIstring\fR
1580 is a glob expression\&. With
1581 \fBinclude list\fR
1582 , the
1583 \fIstring\fR
1584 is a file name on the client containing glob expressions\&.
1585 .sp
1586 All include expressions are expanded by Amanda, concatenated in one file and passed to
1587 \fBGNU\-tar\fR
1588 as a
1589 \fB\-\-files\-from\fR
1590 argument\&. They must start with "\&./" and contain no other "/"\&.
1591 .sp
1592 Include expressions must always be specified as relative to the head directory of the DLE\&.
1593 .if n \{\
1594 .sp
1595 .\}
1596 .RS 4
1597 .it 1 an-trap
1598 .nr an-no-space-flag 1
1599 .nr an-break-flag 1
1600 .br
1601 .ps +1
1602 \fBNote\fR
1603 .ps -1
1604 .br
1605 For globbing to work at all, even the limited single level, the top level directory of the DLE must be readable by the Amanda user\&.
1606 .sp .5v
1607 .RE
1608 With the
1609 \fBappend\fR
1610 keyword, the
1611 \fIstring\fR
1612 is appended to the current list, without it, the
1613 \fIstring\fR
1614 overwrites the list\&.
1615 .sp
1616 If
1617 \fBoptional\fR
1618 is specified for
1619 \fBinclude list\fR, then amcheck will not complain if the file doesn\*(Aqt exist or is not readable\&.
1620 .sp
1621 For
1622 \fBinclude list\fR, If the file name is relative, the disk name being backed up is prepended\&.
1623 .RE
1624 .PP
1625 \fBindex\fR \fIboolean\fR
1626 .RS 4
1627 Default:
1628 \fBno\fR\&. Whether an index (catalogue) of the backup should be generated and saved in
1629 \fBindexdir\fR\&. These catalogues are used by the
1630 \fBamrecover\fR
1631 utility\&.
1632 .RE
1633 .PP
1634 \fBkencrypt\fR \fIboolean\fR
1635 .RS 4
1636 Default:
1637 \fBno\fR\&. Whether the backup image should be encrypted by Kerberos as it is sent across the network from the backup client host to the tape server host\&.
1638 .RE
1639 .PP
1640 \fBmaxdumps\fR \fIint\fR
1641 .RS 4
1642 Default:
1643 \fI1\fR\&. The maximum number of backups from a single host that Amanda will attempt to run in parallel\&. See also the main section parameter
1644 \fBinparallel\fR\&.
1645 .RE
1646 .PP
1647 \fBmaxpromoteday\fR \fIint\fR
1648 .RS 4
1649 Default:
1650 \fI10000\fR\&. The maximum number of day for a promotion, set it 0 if you don\*(Aqt want promotion, set it to 1 or 2 if your disks get overpromoted\&.
1651 .RE
1652 .PP
1653 \fBpriority\fR [ \fBlow\fR | \fBmedium\fR | \fBhigh\fR ]
1654 .RS 4
1655 Default:
1656 \fBmedium\fR\&. When there is no tape to write to, Amanda will do incremental backups in priority order to the holding disk\&. The priority may be high (2), medium (1), low (0) or a number of your choice\&.
1657 .RE
1658 .PP
1659 \fBprogram\fR [ \fB"DUMP"\fR | \fB"GNUTAR"\fR | \fB"APPLICATION"\fR ]
1660 .RS 4
1661 Default:
1662 \fI"DUMP"\fR\&. The type of backup to perform\&. Valid values are:
1663 .PP
1664 \fB"DUMP"\fR
1665 .RS 4
1666 The native operating system backup program\&.
1667 .RE
1668 .PP
1669 \fB"GNUTAR"\fR
1670 .RS 4
1671 To use GNU\-tar or to do PC backups using Samba\&.
1672 .RE
1673 .PP
1674 \fB"APPLICATION"\fR
1675 .RS 4
1676 To use an application, see the
1677 \fIapplication\fR
1678 option\&.
1679 .RE
1680 .RE
1681 .PP
1682 \fBapplication\fR \fIstring\fR
1683 .RS 4
1684 No default\&. Must be the name of an application if
1685 \fIprogram\fR
1686 is set to
1687 \fIAPPLICATION\fR\&. See APPLICATION SECTION below\&.
1688 .RE
1689 .PP
1690 \fBscript\fR \fIstring\fR
1691 .RS 4
1692 No default\&. Must be the name of a script\&. You can have many script\&. See SCRIPT SECTION below\&.
1693 .RE
1694 .PP
1695 \fBproperty\fR [\fBappend\fR] \fIstring\fR \fIstring\fR+
1696 .RS 4
1697 These options can set various properties, they can be used by third party software to store information in the configuration file\&. Both strings are quoted; the first string contains the name of the property to set, and the others contains its values\&.
1698 \fBappend\fR
1699 keyword append the values to the list of values for that property\&.
1700 .RE
1701 .PP
1702 \fBrecord\fR \fIboolean\fR
1703 .RS 4
1704 Default:
1705 \fByes\fR\&. Whether to ask the backup program to update its database (e\&.g\&.
1706 /etc/dumpdates
1707 for DUMP or
1708 /usr/local/var/amanda/gnutar\-lists
1709 for GNUTAR) of time stamps\&. This is normally enabled for daily backups and turned off for periodic archival runs\&.
1710 .RE
1711 .PP
1712 \fBskip\-full\fR \fIboolean\fR
1713 .RS 4
1714 Default:
1715 \fBno\fR\&. If
1716 \fBtrue\fR
1717 and
1718 \fBplanner\fR
1719 has scheduled a full backup, these disks will be skipped, and full backups should be run off\-line on these days\&. It was reported that Amanda only schedules level 1 incrementals in this configuration; this is probably a bug\&.
1720 .RE
1721 .PP
1722 \fBskip\-incr\fR \fIboolean\fR
1723 .RS 4
1724 Default:
1725 \fBno\fR\&. If
1726 \fBtrue\fR
1727 and
1728 \fBplanner\fR
1729 has scheduled an incremental backup, these disks will be skipped\&.
1730 .RE
1731 .PP
1732 \fBssh\-keys\fR \fIstring\fR
1733 .RS 4
1734 Default: not set\&. The key file the ssh auth will use, it must be the private key\&. If this parameter is not specified, then the default ssh key will be used\&.
1735 .RE
1736 .PP
1737 \fBstarttime\fR \fIint\fR
1738 .RS 4
1739 Default: not set\&. Backup of these disks will not start until after this time of day\&. The value should be hh*100+mm, e\&.g\&. 6:30PM (18:30) would be entered as
1740 1830\&.
1741 .RE
1742 .PP
1743 \fBstrategy\fR [ \fBstandard\fR | \fBnofull\fR | \fBnoinc\fR | \fBskip\fR | \fBincronly\fR ]
1744 .RS 4
1745 Default:
1746 \fBstandard\fR\&. Strategy to use when planning what level of backup to run next\&. Values are:
1747 .PP
1748 \fBstandard\fR
1749 .RS 4
1750 The standard Amanda schedule\&.
1751 .RE
1752 .PP
1753 \fBnofull\fR
1754 .RS 4
1755 Never do full backups, only level 1 incrementals\&.
1756 .RE
1757 .PP
1758 \fBnoinc\fR
1759 .RS 4
1760 Never do incremental backups, only full dumps\&.
1761 .RE
1762 .PP
1763 \fBskip\fR
1764 .RS 4
1765 Treat this DLE as if it doesn\*(Aqt exist (useful to disable DLEs when sharing the
1766 \fIdisklist\fR
1767 file between multiple configurations)\&. Skipped DLEs will not be checked or dumped, and will not be matched by disklist expressions\&.
1768 .RE
1769 .PP
1770 \fBincronly\fR
1771 .RS 4
1772 Only do incremental dumps\&.
1773 \fBamadmin force\fR
1774 should be used to tell Amanda that a full dump has been performed off\-line, so that it resets to level 1\&.
1775 .RE
1776 .RE
1777 .PP
1778 \fBallow\-split\fR \fIbool\fR
1779 .RS 4
1780 Default: true\&. If true, then dumps with this dumptype can be split on the storage media\&. If false, then the dump will be written in a single file on the media\&. See "Dump Splitting Configuration" below\&.
1781 .RE
1782 .PP
1783 \fBtape\-splitsize\fR \fIint\fR
1784 .RS 4
1785 Deprecated\&. See "Dump Splitting Configuration" below\&.
1786 .sp
1787 Default: not set\&. Split dump file on tape into pieces of a specified size\&. The default unit is Kbytes if it is not specified\&.
1788 .RE
1789 .PP
1790 \fBsplit\-diskbuffer\fR \fIstring\fR
1791 .RS 4
1792 .PP
1793 Deprecated\&. See "Dump Splitting Configuration" below\&.
1794 Default: not set\&. When dumping a split dump in PORT\-WRITE mode (usually meaning "no holding disk"), buffer the split chunks to a file in the directory specified by this option\&.
1795 .RE
1796 .PP
1797 \fBfallback\-splitsize\fR \fIint\fR
1798 .RS 4
1799 Deprecated\&. See "Dump Splitting Configuration" below\&.
1800 .sp
1801 Default:
1802 \fI10M\fR\&. This specifies the part size used when no
1803 \fBsplit\-diskbuffer\fR
1804 is specified, or when it is too small or does not exist, and thus the maximum amount of memory consumed for in\-memory splitting\&. The default unit is Kbytes if it is not specified\&.
1805 .RE
1806 .PP
1807 \fBrecovery\-limit\fR [ \fBserver\fR | \fBsame\-host\fR | \fIstring\fR ]*
1808 .RS 4
1809 Default: global value\&. This parameter overrides the global
1810 \fBrecovery\-limit\fR
1811 parameter for DLEs of this dumptype\&.
1812 .RE
1813 .PP
1814 \fBdump\-limit\fR [ \fBserver\fR | \fBsame\-host\fR ]*
1815 .RS 4
1816 Default:
1817 \fBserver\fR\&. Specify which host can initiate a backup of the dle\&. With
1818 \fBserver\fR, the server can initiate a backup with the
1819 \fBamdump\fR
1820 command\&. With
1821 \fBsame\-host\fR, the client can initiate a backup with the
1822 \fBamdump_client\fR
1823 command\&.
1824 .RE
1825 .PP
1826 The following
1827 \fBdumptype\fR
1828 entries are predefined by Amanda:
1829 .nf
1830 define dumptype "no\-compress" {
1831     compress none
1832 }
1833 define dumptype "compress\-fast" {
1834     compress client fast
1835 }
1836 define dumptype "compress\-best" {
1837     compress client best
1838 }
1839 define dumptype "srvcompress" {
1840     compress server fast
1841 }
1842 define dumptype "bsd\-auth" {
1843     auth "bsd"
1844 }
1845 define dumptype "bsdtcp\-auth" {
1846     auth "bsdtcp"
1847 }
1848 define dumptype "no\-record" {
1849     record no
1850 }
1851 define dumptype "no\-hold" {
1852     holdingdisk no
1853 }
1854 define dumptype "no\-full" {
1855     skip\-full yes
1856
1857 .fi
1858 .PP
1859 In addition to options in a
1860 \fBdumptype\fR
1861 section, one or more other
1862 \fBdumptype\fR
1863 names may be supplied as identifiers, which make this
1864 \fBdumptype\fR
1865 inherit options from other previously defined
1866 \fBdumptype\fRs\&. For instance, two sections might be the same except for the
1867 \fBrecord\fR
1868 option:
1869 .nf
1870 define dumptype "normal" {
1871     comment "Normal backup, no compression, do indexing"
1872     no\-compress
1873     index yes
1874     maxdumps 2
1875 }
1876 define dumptype "testing" {
1877     comment "Test backup, no compression, do indexing, no recording"
1878     "normal"
1879     record no
1880 }
1881 .fi
1882 .PP
1883 Amanda provides a
1884 \fBdumptype\fR
1885 named
1886 \fIglobal\fR
1887 in the sample
1888 \fBamanda\&.conf\fR
1889 file that all
1890 \fBdumptype\fRs should reference\&. This provides an easy place to make changes that will affect every
1891 \fBdumptype\fR, although you must be careful that every dumptype explicitly inherits from the
1892 \fIglobal\fR
1893 dumptype \- Amanda does not do so automatically\&.
1894 .SH "TAPETYPE SECTION"
1895 .PP
1896 The
1897 \fBamanda\&.conf\fR
1898 file may define multiple types of tape media and devices\&. The information is entered in a
1899 \fBtapetype\fR
1900 section, which looks like this in the config file:
1901 .nf
1902 define tapetype "\fIname\fR" {
1903     \fItapetype\-option\fR \fItapetype\-value\fR
1904     \&.\&.\&.
1905 }
1906 .fi
1907 .PP
1908 The { must appear at the end of a line, and the } on its own line\&.
1909 .PP
1910 \fIName\fR
1911 is the name of this type of tape medium/device\&. It is referenced from the
1912 \fBtapetype\fR
1913 option in the main part of the config file\&.
1914 .PP
1915 The tapetype options and values are:
1916 .PP
1917 \fBcomment\fR \fIstring\fR
1918 .RS 4
1919 Default: not set\&. A comment string describing this set of tape information\&.
1920 .RE
1921 .PP
1922 \fBfilemark\fR \fIint\fR
1923 .RS 4
1924 Default:
1925 \fI1 kbytes\fR\&. How large a file mark (tape mark) is, measured in kbytes\&. If the size is only known in some linear measurement (e\&.g\&. inches), convert it to kbytes using the device density\&.
1926 .RE
1927 .PP
1928 \fBlength\fR \fIint\fR
1929 .RS 4
1930 Default:
1931 \fI2000 kbytes\fR\&. How much data will fit on a tape, expressed in kbytes\&.
1932 .sp
1933 Note that this value is only used by Amanda to schedule which backups will be run\&. Once the backups start, Amanda will continue to write to a tape until it gets an error, regardless of what value is entered for
1934 \fBlength\fR
1935 (but see
1936 \fBamanda-devices\fR(7)
1937 for exceptions)\&.
1938 .RE
1939 .PP
1940 \fBblocksize\fR \fIint\fR
1941 .RS 4
1942 Default:
1943 \fI32 kbytes\fR\&. How much data will be written in each tape record, expressed in kbytes\&. This is similar to the
1944 \fIBLOCK_SIZE\fR
1945 device property, but if the blocksize is not a multiple of 1024 bytes, then this parameter cannot be used to specify it, and the property must be used instead\&.
1946 .RE
1947 .PP
1948 \fBreadblocksize\fR \fIint\fR
1949 .RS 4
1950 Default:
1951 \fI32 kytes\fR
1952 How much data will be read in each tape record\&. This can be used to override a device\*(Aqs block size for reads only\&. This may be useful, for example, in reading a tape written with a 256k block size when Amanda is configured to use 128k blocks\&. This unusual feature is not supported by all operating systems and tape devices\&.
1953 .sp
1954 The default unit is Kbytes if it is not specified\&.
1955 .RE
1956 .PP
1957 \fBpart\-size\fR \fIint\fR
1958 .RS 4
1959 Default: none\&. This is the size (in KB if no units are specified) of each split part written to the volume\&. It is reduced to
1960 \fBpart\-cache\-max\-size\fR
1961 when part caching is required\&. If this is set to zero, then no splitting will take place; in this case, some devices can span dumps from volume to volume, while others will cause the entire dump to fail if they encounter end\-of\-medium before the dump is complete\&. See "Dump Splitting Configuration" below\&.
1962 .RE
1963 .PP
1964 \fBpart\-cache\-type\fR [ \fBnone\fR | \fBdisk\fR | \fBmemory\fR ]
1965 .RS 4
1966 Default: none\&. When part caching is required, this parameter specifies the type of caching that will be used\&. The options include no caching (\fBnone\fR), in which case a failed part will cause the entire dump to fail; on\-disk caching (\fBdisk\fR), for which
1967 \fBpart\-cache\-dir\fR
1968 must be set properly; and in\-memory caching (\fBmemory\fR), which on most systems severely restrains the size of the part that can be written\&. See "Dump Splitting Configuration" below\&.
1969 .RE
1970 .PP
1971 \fBpart\-cache\-dir\fR \fIstring\fR
1972 .RS 4
1973 Default: none\&. The directory in which part\-cache files can be written when caching on disk\&. See "Dump Splitting Configuration" below\&.
1974 .RE
1975 .PP
1976 \fBpart\-cache\-max\-size\fR \fIint\fR
1977 .RS 4
1978 Default: none\&. The maximum part size to use when caching is in effect\&. This is used to limit the part size when disk or memory space for caching is constrained\&. This value must be greater than zero\&.
1979 .RE
1980 .PP
1981 \fBspeed\fR \fIint\fR
1982 .RS 4
1983 Default:
1984 \fI200 bps\fR\&. How fast the drive will accept data, in bytes per second\&. This parameter is NOT currently used by Amanda\&.
1985 .RE
1986 .PP
1987 \fBlbl\-templ\fR \fIstring\fR
1988 .RS 4
1989 Default: not set\&. A PostScript template file used by
1990 \fBamreport\fR
1991 to generate labels\&. Several sample files are provided with the Amanda sources in the
1992 \fIexample\fR
1993 directory\&. See the
1994 \fBamreport\fR(8)
1995 man page for more information\&.
1996 .RE
1997 .PP
1998 In addition to options, another
1999 \fBtapetype\fR
2000 name may be supplied as an identifier, which makes this
2001 \fBtapetype\fR
2002 inherit options from another
2003 \fBtapetype\fR\&. For instance, the only difference between a DLT4000 tape drive using Compact\-III tapes and one using Compact\-IV tapes is the length of the tape\&. So they could be entered as:
2004 .nf
2005 define tapetype "DLT4000\-III" {
2006     comment "DLT4000 tape drives with Compact\-III tapes"
2007     length 12500 mbytes         # 10 Gig tapes with some compression
2008     filemark 2000 kbytes
2009     speed 1536 kps
2010 }
2011 define tapetype "DLT4000\-IV" {
2012     "DLT4000\-III"
2013     comment "DLT4000 tape drives with Compact\-IV tapes"
2014     length 25000 mbytes         # 20 Gig tapes with some compression
2015 }
2016 .fi
2017 .SH "INTERFACE SECTION"
2018 .PP
2019 The
2020 \fBamanda\&.conf\fR
2021 file may define multiple types of network interfaces\&. The information is entered in an
2022 \fBinterface\fR
2023 section, which looks like this:
2024 .nf
2025 define interface "\fIname\fR" {
2026     \fIinterface\-option\fR \fIinterface\-value\fR
2027     \&.\&.\&.
2028 }
2029 .fi
2030 .PP
2031 The { must appear at the end of a line, and the } on its own line\&.
2032 .PP
2033 \fIname\fR
2034 is the name of this type of network interface\&. It is referenced from the
2035 \fIdisklist\fR
2036 file\&.
2037 .PP
2038 Note that these sections define network interface characteristics, not the actual interface that will be used\&. Nor do they impose limits on the bandwidth that will actually be taken up by Amanda\&. Amanda computes the estimated bandwidth each file system backup will take based on the estimated size and time, then compares that plus any other running backups with the limit as another of the criteria when deciding whether to start the backup\&. Once a backup starts, Amanda will use as much of the network as it can leaving throttling up to the operating system and network hardware\&.
2039 .PP
2040 The interface options and values are:
2041 .PP
2042 \fBcomment\fR \fIstring\fR
2043 .RS 4
2044 Default: not set\&. A comment string describing this set of network information\&.
2045 .RE
2046 .PP
2047 \fBuse\fR \fIint\fR
2048 .RS 4
2049 Default:
2050 \fI80000 Kbps\fR\&. The speed of the interface in Kbytes per second\&.
2051 .RE
2052 .PP
2053 In addition to options, another
2054 \fBinterface\fR
2055 name may be supplied as an identifier, which makes this
2056 \fBinterface\fR
2057 inherit options from another
2058 \fBinterface\fR\&. At the moment, this is of little use\&.
2059 .SH "APPLICATION SECTION"
2060 .PP
2061 The
2062 \fBamanda\&.conf\fR
2063 file may define multiple types of application\&. The information is entered in a
2064 \fBapplication\fR
2065 section, which looks like this:
2066 .nf
2067 define application "\fIname\fR" {
2068     \fIapplication\-option\fR \fIapplication\-value\fR
2069     \&.\&.\&.
2070 }
2071 .fi
2072 .PP
2073 The { must appear at the end of a line, and the } on its own line\&.
2074 .PP
2075 \fIname\fR
2076 is the name of this type of application\&. It is referenced from the
2077 \fIdumptype\fR
2078 .PP
2079 The application options and values are:
2080 .PP
2081 \fBclient\-name\fR \fIstring\fR
2082 .RS 4
2083 No default, specifies an application name that is in the amanda\-client\&.conf on the client\&. The setting from that application will be merged with the current application\&. If
2084 \fBclient\-name\fR
2085 is set then it is an error if that application is not defined on the client\&.
2086 .sp
2087 If
2088 \fBclient\-name\fR
2089 is not set then the merge is done with the application that have the name equal to the plugin\&. eg\&. if the plugin is \*(Aqamgtar\*(Aq, then the setting from the application \*(Aqamgtar\*(Aq is used if it is defined\&.
2090 .RE
2091 .PP
2092 \fBcomment\fR \fIstring\fR
2093 .RS 4
2094 Default: not set\&. A comment string describing this application\&.
2095 .RE
2096 .PP
2097 \fBplugin\fR \fIstring\fR
2098 .RS 4
2099 No default\&. Must be set to the name of the program\&. This program must be in the
2100 \fI$libexecdir/amanda/application\fR
2101 directory on the client\&.
2102 .RE
2103 .PP
2104 \fBproperty\fR [\fBappend\fR] [\fBpriority\fR] \fIstring\fR \fIstring\fR+
2105 .RS 4
2106 No default\&. You can set property for the application, each application have a different set of property\&. Both strings are quoted; the first string contains the name of the property to set, and the others contains its values\&.
2107 \fBappend\fR
2108 keyword append the values to the list of values for that property\&.
2109 \fBpriority\fR
2110 keyword disallow the setting of that property on the client\&.
2111 .RE
2112 .SH "SCRIPT SECTION"
2113 .PP
2114 The
2115 \fBamanda\&.conf\fR
2116 file may define multiple types of script\&. The information is entered in a
2117 \fBscript\fR
2118 section, which looks like this:
2119 .nf
2120 define script "\fIname\fR" {
2121     \fIscript\-option\fR \fIscript\-value\fR
2122     \&.\&.\&.
2123 }
2124 .fi
2125 .PP
2126 The { must appear at the end of a line, and the } on its own line\&.
2127 .PP
2128 \fIname\fR
2129 is the name of this type of script\&. It is referenced from the
2130 \fIdumptype\fR
2131 .PP
2132 The script options and values are:
2133 .PP
2134 \fBclient\-name\fR \fIstring\fR
2135 .RS 4
2136 No default, specifies a script name that is in the amanda\-client\&.conf on the client\&. The setting from that script will be merged with the currect script\&. If
2137 \fBclient\-name\fR
2138 is set then it is an error if that script is not defined on the client\&.
2139 .sp
2140 If
2141 \fBclient\-name\fR
2142 is not set then the merge is done with the script that have the name equal to the plugin\&. eg\&. if the plugin is \*(Aqamlog\-script\*(Aq, then the setting from the script \*(Aqamlog\-script\*(Aq is used\&.
2143 .RE
2144 .PP
2145 \fBcomment\fR \fIstring\fR
2146 .RS 4
2147 Default: not set\&. A comment string describing this script\&.
2148 .RE
2149 .PP
2150 \fBplugin\fR \fIstring\fR
2151 .RS 4
2152 No default\&. Must be set to the name of the program\&. This program must be in the
2153 \fI$libexecdir/amanda/application\fR
2154 directory on the client and/or server\&.
2155 .RE
2156 .PP
2157 \fBorder\fR \fIint\fR
2158 .RS 4
2159 Default:
2160 \fI5000\fR\&. Scripts are executed in that order, it is useful if you have many scripts and they must be executed in a spefific order\&.
2161 .RE
2162 .PP
2163 \fBsingle\-execution\fR \fIboolean\fR
2164 .RS 4
2165 Default:
2166 \fIno\fR\&. The script is executed for each dle\&. If
2167 \fIyes\fR, the script is executed one time only\&.
2168 .RE
2169 .PP
2170 \fBexecute\-where\fR [ \fBclient\fR | \fBserver\fR ]
2171 .RS 4
2172 Default:
2173 \fBclient\fR\&. Where the script must be executed, on the client or server\&.
2174 .RE
2175 .PP
2176 \fBexecute\-on\fR \fIexecute_on\fR [,\fIexecute_on\fR]*
2177 .RS 4
2178 No default\&. When the script must be executed, you can specify many of them:
2179 .PP
2180 \fBpre\-amcheck\fR
2181 .RS 4
2182 Execute before the amcheck command for all dle\&. Can only be run on server\&.
2183 .RE
2184 .PP
2185 \fBpre\-dle\-amcheck\fR
2186 .RS 4
2187 Execute before the amcheck command for the dle\&.
2188 .RE
2189 .PP
2190 \fBpre\-host\-amcheck\fR
2191 .RS 4
2192 Execute before the amcheck command for all dle for the client\&.
2193 .RE
2194 .PP
2195 \fBpost\-amcheck\fR
2196 .RS 4
2197 Execute after the amcheck command for all dle\&. Can only be run on server\&.
2198 .RE
2199 .PP
2200 \fBpost\-dle\-amcheck\fR
2201 .RS 4
2202 Execute after the amcheck command for the dle\&.
2203 .RE
2204 .PP
2205 \fBpost\-host\-amcheck\fR
2206 .RS 4
2207 Execute after the amcheck command for all dle for the client\&.
2208 .RE
2209 .PP
2210 \fBpre\-estimate\fR
2211 .RS 4
2212 Execute before the estimate command for all dle\&. Can only be run on server\&.
2213 .RE
2214 .PP
2215 \fBpre\-dle\-estimate\fR
2216 .RS 4
2217 Execute before the estimate command for the dle\&.
2218 .RE
2219 .PP
2220 \fBpre\-host\-estimate\fR
2221 .RS 4
2222 Execute before the estimate command for all dle for the client\&.
2223 .RE
2224 .PP
2225 \fBpost\-estimate\fR
2226 .RS 4
2227 Execute after the estimate command for all dle\&. Can only be run on server\&.
2228 .RE
2229 .PP
2230 \fBpost\-dle\-estimate\fR
2231 .RS 4
2232 Execute after the estimate command for the dle\&.
2233 .RE
2234 .PP
2235 \fBpost\-host\-estimate\fR
2236 .RS 4
2237 Execute after the estimate command for all dle for the client\&.
2238 .RE
2239 .PP
2240 \fBpre\-backup\fR
2241 .RS 4
2242 Execute before the backup command for all dle\&. Can only be run on server\&.
2243 .RE
2244 .PP
2245 \fBpre\-dle\-backup\fR
2246 .RS 4
2247 Execute before the backup command for the dle\&.
2248 .RE
2249 .PP
2250 \fBpre\-host\-backup\fR
2251 .RS 4
2252 Execute before the backup command for all dle for the client\&. It can\*(Aqt be run on client, it must be run on server
2253 .RE
2254 .PP
2255 \fBpost\-backup\fR
2256 .RS 4
2257 Execute after the backup command for all dle\&. Can only be run on server\&.
2258 .RE
2259 .PP
2260 \fBpost\-dle\-backup\fR
2261 .RS 4
2262 Execute after the backup command for the dle\&.
2263 .RE
2264 .PP
2265 \fBpost\-host\-backup\fR
2266 .RS 4
2267 Execute after the backup command for all dle for the client\&. It can\*(Aqt be run on client, it must be run on server
2268 .RE
2269 .PP
2270 \fBpre\-recover\fR
2271 .RS 4
2272 Execute before any level is recovered\&.
2273 .RE
2274 .PP
2275 \fBpost\-recover\fR
2276 .RS 4
2277 Execute after all levels are recovered\&.
2278 .RE
2279 .PP
2280 \fBpre\-level\-recover\fR
2281 .RS 4
2282 Execute before each level recovery\&.
2283 .RE
2284 .PP
2285 \fBpost\-level\-recover\fR
2286 .RS 4
2287 Execute after each level recovery\&.
2288 .RE
2289 .PP
2290 \fBinter\-level\-recover\fR
2291 .RS 4
2292 Execute between two levels of recovery\&.
2293 .RE
2294 .sp
2295 If you recover level 0 and 2 of the disk /usr with amrecover, it will execute:
2296 .nf
2297 script \-\-pre\-recover
2298 script \-\-pre\-level\-recover \-\-level 0
2299 #recovering level 0
2300 script \-\-post\-level\-recover \-\-level 0
2301 script \-\-inter\-level\-recover \-\-level 0 \-\-level 2
2302 script \-\-pre\-level\-recover \-\-level 2
2303 #recovering level 2
2304 script \-\-post\-level\-recover \-\-level 2
2305 script \-\-post\-recover
2306 .fi
2307 .RE
2308 .PP
2309 \fBproperty\fR [\fBappend\fR] [\fBpriority\fR] \fIstring\fR \fIstring\fR+
2310 .RS 4
2311 No default\&. You can set property for the script, each script have a different set of property\&. Both strings are quoted; the first string contains the name of the property to set, and the others contains its values\&.
2312 \fBappend\fR
2313 keyword append the values to the list of values for that property\&.
2314 \fBpriority\fR
2315 keyword disallow the setting of that property on the client\&.
2316 .RE
2317 .SH "DEVICE SECTION"
2318 .PP
2319 Backend storage devices are specified in
2320 \fBamanda\&.conf\fR
2321 in the form of "device" sections, which look like this:
2322 .nf
2323 define device \fIname\fR {
2324     commend "\fIcomment (optional)\fR"
2325     tapedev "\fIdevice\-specifier\fR"
2326     device\-property "\fIprop\-name\fR" "\fIprop\-value\fR"
2327     \&.\&.\&.
2328 }
2329 .fi
2330 .PP
2331 The { must appear at the end of a line, and the } on its own line\&.
2332 .PP
2333 \fIname\fR
2334 is the user\-specified name of this device\&. It is referenced from the global
2335 \fItapedev\fR
2336 parameter\&. The
2337 \fIdevice\-specifier\fR
2338 specifies the device name to use; see
2339 \fBamanda-devices\fR(7)\&. As with most sections, the
2340 \fIcomment\fR
2341 parmeter is optional and only for the user\*(Aqs convenience\&.
2342 .PP
2343 An arbitrary number of
2344 \fIdevice\-property\fR
2345 parameters can be specified\&. Again, see
2346 \fBamanda-devices\fR(7)
2347 for information on device properties\&.
2348 .SH "CHANGER SECTION"
2349 .PP
2350 Changers are described in
2351 \fBamanda\&.conf\fR
2352 in the form of "changer" sections, which look like this:
2353 .nf
2354 define changer \fIname\fR {
2355     comment "\fIcomment (optional)\fR"
2356     tpchanger "\fIchanger\-spec\fR"
2357     changerdev "\fIdevice\-name\fR"
2358     changerfile "\fIstate\-file\fR"
2359     \&.\&.\&.
2360 }
2361 .fi
2362 .PP
2363 The { must appear at the end of a line, and the } on its own line\&.
2364 .PP
2365 \fIname\fR
2366 is the user\-specified name of this device\&. The remaining parameters are specific to the changer type selected\&.
2367 .PP
2368 See
2369 \fBamanda-changers\fR(7)
2370 for more information on configuring changers\&.
2371 .SH "INTERACTIVITY SECTION"
2372 .PP
2373 The
2374 \fBamanda\&.conf\fR
2375 file may define multiple interactivyt methods, although only one will be used \- that specified by the
2376 \fBinteractivity\fR
2377 parameter\&. The information is entered in a
2378 \fBinteractivity\fR
2379 section, which looks like this:
2380 .nf
2381 define interactivity \fIname\fR {
2382     \fIinteractivity\-option\fR \fIinteractivity\-value\fR
2383     \&.\&.\&.
2384 }
2385 .fi
2386 .PP
2387 The { must appear at the end of a line, and the } on its own line\&.
2388 .PP
2389 \fIname\fR
2390 is the user\-specified name of this interactivity\&. The remaining parameters are specific to the interactivity type selected\&.
2391 .PP
2392 The interactivity options and values are:
2393 .PP
2394 \fBcomment\fR \fIstring\fR
2395 .RS 4
2396 Default: not set\&. A comment string describing this interactivity\&.
2397 .RE
2398 .PP
2399 \fBplugin\fR \fIstring\fR
2400 .RS 4
2401 No default\&. Must be set to the name of the interactivity module, as described in
2402 \fBamanda-interactivity\fR(7)\&.
2403 .RE
2404 .PP
2405 \fBproperty\fR [\fBappend\fR] \fIstring\fR \fIstring\fR+
2406 .RS 4
2407 No default\&. You can set arbitrary properties for the interactivity\&. Each interactivity module has a different set of properties\&. The first string contains the name of the property to set, and the others contains its values\&. All strings should be quoted\&. The
2408 \fBappend\fR
2409 keyword appends the given values to an existing list of values for that property\&.
2410 .RE
2411 .PP
2412 See
2413 \fBamanda-interactivity\fR(7)
2414 for more information on configuring interactivity methods\&.
2415 .SH "TAPERSCAN SECTION"
2416 .PP
2417 The
2418 \fBamanda\&.conf\fR
2419 file may define multiple taperscan methods, although only one will be used \- that specified by the
2420 \fBtaperscan\fR
2421 parameter\&. The information is entered in a
2422 \fBtaperscan\fR
2423 section, which looks like this:
2424 .nf
2425 define taperscan \fIname\fR {
2426     \fItaperscan\-option\fR \fItaperscan\-value\fR
2427     \&.\&.\&.
2428 }
2429 .fi
2430 .PP
2431 The { must appear at the end of a line, and the } on its own line\&.
2432 .PP
2433 \fIname\fR
2434 is the user\-specified name of this taperscan\&. The remaining parameters are specific to the taperscan type selected\&.
2435 .PP
2436 The taperscan options and values are:
2437 .PP
2438 \fBcomment\fR \fIstring\fR
2439 .RS 4
2440 Default: not set\&. A comment string describing this taperscan\&.
2441 .RE
2442 .PP
2443 \fBplugin\fR \fIstring\fR
2444 .RS 4
2445 No default\&. Must be set to the name of the taperscan module\&. See
2446 <man></man>
2447 for a list of defined taperscan modules\&.
2448 .RE
2449 .PP
2450 \fBproperty\fR [\fBappend\fR] \fIstring\fR \fIstring\fR+
2451 .RS 4
2452 No default\&. Operates just like properties for interactivity methods, above\&.
2453 .RE
2454 .PP
2455 See
2456 \fBamanda-taperscan\fR(7)
2457 for more information on configuring taperscan\&.
2458 .SH "DUMP SPLITTING CONFIGURATION"
2459 .PP
2460 Amanda can "split" dumps into parts while writing them to storage media\&. This allows Amanda to recover gracefully from a failure while writing a part to a volume, by simply selecting a new volume and re\-writing the dump from the beginning of the failed part\&. Parts also allow Amanda to seek directly to the required data, although this functionality is not yet used\&.
2461 .PP
2462 In order to support re\-writing from the beginning of a failed part, Amanda must have access to the contents of the part after it has been partially written\&. If the dump is being read from holding disk, then the part contents are availble there\&. Otherwise, the part must be cached, and this can be done memory or on disk\&. In either of the latter cases, the cache must have enough space to hold an entire part\&.
2463 .PP
2464 Because it is common for a single Amanda configuration to use both holding\-disk (FILE\-WRITE) and direct (known as PORT\-WRITE) dumps, Amanda allows the configuration of different split sizes for the two cases\&. This allows, for example, for a part size appropriate to large tapes when performing FILE\-WRITE dumps, with a part size limited by available disk or memory when performing PORT\-WRITE dumps\&.
2465 .PP
2466 Selecting a proper split size is a delicate matter\&. If the parts are too large, substantial storage space may be wasted in failed parts\&. If too small, large dumps will be split into innumerable tiny dumpfiles, adding to restoration complexity; furthermore, an excess of filemarks will cause slower tape drive operation and reduce the usable space on tape\&. A good rule of thumb is 1/10 of the size of a volume of storage media\&.
2467 .PP
2468 In versions of Amanda through 3\&.1\&.*, splitting was controlled by the dumptype parameters
2469 \fBtape\-splitsize\fR,
2470 \fBsplit\-diskbuffer\fR, and
2471 \fBfallback\-splitsize\fR\&. These keywords had confusing and non\-intuitive interactions, and have since been deprecated\&.
2472 .PP
2473 If the deprecated keywords are not present, subsequent versions of Amanda use the dumptype parameter
2474 \fBallow\-split\fR
2475 to control whether a DLE can be split, and the
2476 \fItapetype\fR
2477 parameters
2478 \fBpart\-size\fR,
2479 \fBpart\-cache\-type\fR,
2480 \fBpart\-cache\-dir\fR, and
2481 \fBpart\-cache\-max\-size\fR\&. The
2482 \fBpart\-size\fR
2483 specifies the "normal" part size, while the
2484 \fBpart\-cache\-*\fR
2485 parameters describe how to behave when caching is required (on PORT\-WRITE)\&. Full details on these parameters are given above\&.
2486 .SH "SEE ALSO"
2487 .PP
2488 \fBamanda\fR(8),
2489 \fBamanda-client.conf\fR(5),
2490 \fBamanda-applications\fR(7),
2491 \fBamanda-auth\fR(7),
2492 \fBamanda-changers\fR(7),
2493 \fBamanda-devices\fR(7),
2494 \fBamanda-interactivity\fR(7),
2495 \fBamanda-scripts\fR(7),
2496 \fBamanda-taperscan\fR(7)
2497 .PP
2498 The Amanda Wiki:
2499 : http://wiki.zmanda.com/
2500 .SH "AUTHORS"
2501 .PP
2502 \fBJames da Silva\fR <\&jds@amanda\&.org\&>
2503 .PP
2504 \fBStefan G\&. Weichinger\fR <\&sgw@amanda\&.org\&>