]> arthur.barton.de Git - netatalk.git/blob - man/man5/afp.conf.5.tmpl
Merge remote branch 'sf/develop' into develop
[netatalk.git] / man / man5 / afp.conf.5.tmpl
1 '\" t
2 .\"     Title: afp.conf
3 .\"    Author: [FIXME: author] [see http://docbook.sf.net/el/author]
4 .\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/>
5 .\"      Date: 06 Jun 2012
6 .\"    Manual: Netatalk 3.0
7 .\"    Source: Netatalk 3.0
8 .\"  Language: English
9 .\"
10 .TH "AFP\&.CONF" "5" "06 Jun 2012" "Netatalk 3.0" "Netatalk 3.0"
11 .\" -----------------------------------------------------------------
12 .\" * set default formatting
13 .\" -----------------------------------------------------------------
14 .\" disable hyphenation
15 .nh
16 .\" disable justification (adjust text to left margin only)
17 .ad l
18 .\" -----------------------------------------------------------------
19 .\" * MAIN CONTENT STARTS HERE *
20 .\" -----------------------------------------------------------------
21 .SH "NAME"
22 afp.conf \- Netatalk configuration file
23 .SH "SYNOPSIS"
24 .PP
25 The
26 afp\&.conf
27 file is the configuration file for the
28 \fBNetatalk\fR
29 AFP file server\&.
30 .PP
31 All AFP specific configuration and AFP volume definitions are done via this file\&.
32 .SH "FILE FORMAT"
33 .PP
34 The file consists of sections and parameters\&. A section begins with the name of the section in square brackets and continues until the next section begins\&. Sections contain parameters of the form:
35 .sp
36 .if n \{\
37 .RS 4
38 .\}
39 .nf
40 \fIname\fR = \fIvalue \fR
41       
42 .fi
43 .if n \{\
44 .RE
45 .\}
46 .PP
47 The file is line\-based \- that is, each newline\-terminated line represents either a comment, a section name or a parameter\&.
48 .PP
49 Section and parameter names are case sensitive\&.
50 .PP
51 Only the first equals sign in a parameter is significant\&. Whitespace before or after the first equals sign is discarded\&. Leading, trailing and internal whitespace in section and parameter names is irrelevant\&. Leading and trailing whitespace in a parameter value is discarded\&. Internal whitespace within a parameter value is retained verbatim\&.
52 .PP
53 Any line beginning with a semicolon (\(lq;\(rq) or a hash (\(lq#\(rq) character is ignored, as are lines containing only whitespace\&.
54 .PP
55 Any line ending in a
56 \(lq\e\(rq
57 is continued on the next line in the customary UNIX fashion\&.
58 .PP
59 The values following the equals sign in parameters are all either a string (no quotes needed) or a boolean, which may be given as yes/no, 1/0 or true/false\&. Case is not significant in boolean values, but is preserved in string values\&. Some items such as create masks are numeric\&.
60 .PP
61 The parameter
62 \fBinclude = \fR\fB\fIpath\fR\fR
63 allows you to include one config file inside another\&. The file is included literally, as though typed in place\&. Nested includes are not supported\&.
64 .SH "SECTION DESCRIPTIONS"
65 .PP
66 Each section in the configuration file (except for the [Global] section) describes a shared resource (known as a
67 \(lqvolume\(rq)\&. The section name is the name of the volume and the parameters within the section define the volume attributes and options\&.
68 .PP
69 There are two special sections, [Global] and [Homes], which are described under
70 \fIspecial sections\fR\&. The following notes apply to ordinary section descriptions\&.
71 .PP
72 A volume consists of a directory to which access is being given plus a description of the access rights which are granted to the user of the service\&. For volumes the
73 \fBpath\fR
74 option must specify the directory to share\&.
75 .PP
76 Any volume section without
77 \fBpath\fR
78 option is considered a
79 \fIvol preset\fR
80 which can be selected in other volume sections via the
81 \fBvol preset\fR
82 option and constitutes defaults for the volume\&. For any option speficied both in a preset
83 \fIand\fR
84 in a volume section the volume section setting completly substitutes the preset option\&.
85 .PP
86 The access rights granted by the server are masked by the access rights granted to the specified or guest UNIX user by the host system\&. The server does not grant more access than the host system grants\&.
87 .PP
88 The following sample section defines an AFP volume\&. The user has full access to the path
89 /foo/bar\&. The share is accessed via the share name
90 baz:
91 .sp
92 .if n \{\
93 .RS 4
94 .\}
95 .nf
96 [baz]
97 path = /foo/bar
98       
99 .fi
100 .if n \{\
101 .RE
102 .\}
103 .SH "SPECIAL SECTIONS"
104 .SS "The [Global] section"
105 .PP
106 Parameters in this section apply to the server as a whole\&. Parameters denoted by a (G) below are must be set in this section\&.
107 .SS "The [Homes] section"
108 .PP
109 This section enable sharing of the UNIX server user home directories\&. Specifying an optional
110 \fBpath\fR
111 parameter means that not the whole user home will be shared but the subdirectory
112 \fBpath\fR\&. It is neccessary to define the
113 \fBbasedir regex\fR
114 option\&. It should be a regex which matches the parent directory of the user homes\&. Parameters denoted by a (H) belong to volume sections\&. The optional parameter
115 \fBhome name\fR
116 can be used to change the AFP volume name which
117 \fI$u\'s home\fR
118 by default\&. See below under VARIABLE SUBSTITUTIONS\&.
119 .PP
120 The following example illustrates this\&. Given all user home directories are stored under
121 /home:
122 .sp
123 .if n \{\
124 .RS 4
125 .\}
126 .nf
127 [Homes]
128 path = afp\-data
129 basedir regex = /home
130       
131 .fi
132 .if n \{\
133 .RE
134 .\}
135 .sp
136 For a user
137 \fIjohn\fR
138 this results in an AFP home volume with a path of
139 /home/john/afp\-data\&.
140 .SH "PARAMETERS"
141 .PP
142 Parameters define the specific attributes of sections\&.
143 .PP
144 Some parameters are specific to the [Global] section (e\&.g\&.,
145 \fIlog type\fR)\&. All others are permissible only in volume sections\&. The letter
146 \fIG\fR
147 in parentheses indicates that a parameter is specific to the [Global] section\&. The letter
148 \fIV\fR
149 indicates that a parameter can be specified in a volume specific section\&.
150 .SH "VARIABLE SUBSTITUTIONS"
151 .PP
152 You can use variables in volume names\&. The use of variables in paths is not supported for now\&.
153 .sp
154 .RS 4
155 .ie n \{\
156 \h'-04' 1.\h'+01'\c
157 .\}
158 .el \{\
159 .sp -1
160 .IP "  1." 4.2
161 .\}
162 if you specify an unknown variable, it will not get converted\&.
163 .RE
164 .sp
165 .RS 4
166 .ie n \{\
167 \h'-04' 2.\h'+01'\c
168 .\}
169 .el \{\
170 .sp -1
171 .IP "  2." 4.2
172 .\}
173 if you specify a known variable, but that variable doesn\'t have a value, it will get ignored\&.
174 .RE
175 .PP
176 The variables which can be used for substitutions are:
177 .PP
178 $b
179 .RS 4
180 basename
181 .RE
182 .PP
183 $c
184 .RS 4
185 client\'s ip address
186 .RE
187 .PP
188 $d
189 .RS 4
190 volume pathname on server
191 .RE
192 .PP
193 $f
194 .RS 4
195 full name (contents of the gecos field in the passwd file)
196 .RE
197 .PP
198 $g
199 .RS 4
200 group name
201 .RE
202 .PP
203 $h
204 .RS 4
205 hostname
206 .RE
207 .PP
208 $i
209 .RS 4
210 client\'s ip, without port
211 .RE
212 .PP
213 $s
214 .RS 4
215 server name (this can be the hostname)
216 .RE
217 .PP
218 $u
219 .RS 4
220 user name (if guest, it is the user that guest is running as)
221 .RE
222 .PP
223 $v
224 .RS 4
225 volume name
226 .RE
227 .PP
228 $$
229 .RS 4
230 prints dollar sign ($)
231 .RE
232 .SH "EXPLANATION OF GLOBAL PARAMETERS"
233 .SS "Authentication Options"
234 .PP
235 admin auth user = \fIuser\fR \fB(G)\fR
236 .RS 4
237 Specifying eg "\fBadmin auth user = root\fR" whenever a normal user login fails, afpd will try to authenticate as the specified
238 \fBadmin auth user\fR\&. If this succeeds, a normal session is created for the original connecting user\&. Said differently: if you know the password of
239 \fBadmin auth user\fR, you can authenticate as any other user\&.
240 .RE
241 .PP
242 k5 keytab = \fIpath\fR \fB(G)\fR, k5 service = \fIservice\fR \fB(G)\fR, k5 realm = \fIrealm\fR \fB(G)\fR
243 .RS 4
244 These are required if the server supports the Kerberos 5 authentication UAM\&.
245 .RE
246 .PP
247 ldap auth method = \fInone|simple|sasl\fR \fB(G)\fR
248 .RS 4
249 Authentication method:
250 \fBnone | simple | sasl\fR
251 .PP
252 none
253 .RS 4
254 anonymous LDAP bind
255 .RE
256 .PP
257 simple
258 .RS 4
259 simple LDAP bind
260 .RE
261 .PP
262 sasl
263 .RS 4
264 SASL\&. Not yet supported !
265 .RE
266 .RE
267 .PP
268 ldap auth dn = \fIdn\fR \fB(G)\fR
269 .RS 4
270 Distinguished Name of the user for simple bind\&.
271 .sp
272 .RE
273 .PP
274 ldap auth pw = \fIpassword\fR \fB(G)\fR
275 .RS 4
276 Distinguished Name of the user for simple bind\&.
277 .sp
278 .RE
279 .PP
280 ldap server = \fIhost\fR \fB(G)\fR
281 .RS 4
282 Name or IP address of your LDAP Server\&. This is only needed for explicit ACL support in order to be able to query LDAP for UUIDs\&.
283 .sp
284 You can use
285 \fBafpldaptest\fR(1)
286 to syntactically check your config\&.
287 .RE
288 .PP
289 ldap userbase = \fIbase dn\fR \fB(G)\fR
290 .RS 4
291 DN of the user container in LDAP\&.
292 .sp
293 .RE
294 .PP
295 ldap userscope = \fIscope\fR \fB(G)\fR
296 .RS 4
297 Search scope for user search:
298 \fBbase | one | sub\fR
299 .sp
300 .RE
301 .PP
302 ldap groupbase = \fIbase dn\fR \fB(G)\fR
303 .RS 4
304 DN of the group container in LDAP\&.
305 .sp
306 .RE
307 .PP
308 ldap groupscope = \fIscope\fR \fB(G)\fR
309 .RS 4
310 Search scope for user search:
311 \fBbase | one | sub\fR
312 .sp
313 .RE
314 .PP
315 ldap uuid attr = \fIdn\fR \fB(G)\fR
316 .RS 4
317 Name of the LDAP attribute with the UUIDs\&.
318 .sp
319 Note: this is used both for users and groups\&.
320 .sp
321 .RE
322 .PP
323 ldap name attr = \fIdn\fR \fB(G)\fR
324 .RS 4
325 Name of the LDAP attribute with the users short name\&.
326 .sp
327 .RE
328 .PP
329 ldap uuid string = \fISTRING\fR \fB(G)\fR
330 .RS 4
331 Format of the uuid string in the directory\&. A series of x and \-, where every x denotes a value 0\-9a\-f and every \- is a seperator\&.
332 .sp
333 Default: xxxxxxxx\-xxxx\-xxxx\-xxxx\-xxxxxxxxxxxx
334 .RE
335 .PP
336 ldap group attr = \fIdn\fR \fB(G)\fR
337 .RS 4
338 Name of the LDAP attribute with the groups short name\&.
339 .sp
340 .RE
341 .PP
342 nt domain = \fIDOMAIN\fR \fB(G)\fR, nt separator = \fISEPERATOR\fR \fB(G)\fR
343 .RS 4
344 Use for eg\&. winbind authentication, prepends both strings before the username from login and then tries to authenticate with the result through the availabel and active UAM authentication modules\&.
345 .RE
346 .PP
347 save password = \fIBOOLEAN\fR (default: \fIyes\fR) \fB(G)\fR
348 .RS 4
349 Enables or disables the ability of clients to save passwords locally\&.
350 .RE
351 .PP
352 set password = \fIBOOLEAN\fR (default: \fIno\fR) \fB(G)\fR
353 .RS 4
354 Enables or disables the ability of clients to change their passwords via chooser or the "connect to server" dialog\&.
355 .RE
356 .PP
357 uam list = \fIuam list\fR \fB(G)\fR
358 .RS 4
359 Space or comma separated list of UAMs\&. (The default is "uams_dhx\&.so uams_dhx2\&.so")\&.
360 .sp
361 The most commonly used UAMs are:
362 .PP
363 uams_guest\&.so
364 .RS 4
365 allows guest logins
366 .RE
367 .PP
368 uams_clrtxt\&.so
369 .RS 4
370 (uams_pam\&.so or uams_passwd\&.so) Allow logins with passwords transmitted in the clear\&. (legacy)
371 .RE
372 .PP
373 uams_randum\&.so
374 .RS 4
375 allows Random Number and Two\-Way Random Number Exchange for authentication (requires a separate file containing the passwords, either :ETCDIR:/afppasswd file or the one specified via "\fBpasswd file\fR"\&. See
376 \fBafppasswd\fR(1)
377 for details\&. (legacy)
378 .RE
379 .PP
380 uams_dhx\&.so
381 .RS 4
382 (uams_dhx_pam\&.so or uams_dhx_passwd\&.so) Allow Diffie\-Hellman eXchange (DHX) for authentication\&.
383 .RE
384 .PP
385 uams_dhx2\&.so
386 .RS 4
387 (uams_dhx2_pam\&.so or uams_dhx2_passwd\&.so) Allow Diffie\-Hellman eXchange 2 (DHX2) for authentication\&.
388 .RE
389 .PP
390 uam_gss\&.so
391 .RS 4
392 Allow Kerberos V for authentication (optional)
393 .RE
394 .RE
395 .PP
396 uam path = \fIpath\fR \fB(G)\fR
397 .RS 4
398 Sets the default path for UAMs for this server (default is :LIBDIR:/netatalk)\&.
399 .RE
400 .SS "Charset Options"
401 .PP
402 With OS X Apple introduced the AFP3 protocol\&. One of the big changes was, that AFP3 uses Unicode names encoded as Decomposed UTF\-8 (UTF8\-MAC)\&. Previous AFP/OS versions used charsets like MacRoman, MacCentralEurope, etc\&.
403 .PP
404 To be able to serve AFP3 and older clients at the same time,
405 \fBafpd\fR
406 needs to be able to convert between UTF\-8 and Mac charsets\&. Even OS X clients partly still rely on the mac charset\&. As there\'s no way,
407 \fBafpd\fR
408 can detect the codepage a pre AFP3 client uses, you have to specify it using the
409 \fBmac charset\fR
410 option\&. The default is MacRoman, which should be fine for most western users\&.
411 .PP
412 As
413 \fBafpd\fR
414 needs to interact with UNIX operating system as well, it need\'s to be able to convert from UTF8\-MAC / Mac charset to the UNIX charset\&. By default
415 \fBafpd\fR
416 uses
417 \fIUTF8\fR\&. You can set the UNIX charset using the
418 \fBunix charset\fR
419 option\&. If you\'re using extended characters in the configuration files for
420 \fBafpd\fR, make sure your terminal matches the
421 \fBunix charset\fR\&.
422 .PP
423 mac charset = \fICHARSET\fR \fB(G)/(V)\fR
424 .RS 4
425 Specifies the Mac clients charset, e\&.g\&.
426 \fIMAC_ROMAN\fR\&. This is used to convert strings and filenames to the clients codepage for OS9 and Classic, i\&.e\&. for authentication and AFP messages (SIGUSR2 messaging)\&. This will also be the default for the volumes
427 \fBmac charset\fR\&. Defaults to
428 \fIMAC_ROMAN\fR\&.
429 .RE
430 .PP
431 unix charset = \fICHARSET\fR \fB(G)\fR
432 .RS 4
433 Specifies the servers unix charset, e\&.g\&.
434 \fIISO\-8859\-15\fR
435 or
436 \fIEUC\-JP\fR\&. This is used to convert strings to/from the systems locale, e\&.g\&. for authenthication, server messages and volume names\&. If
437 \fILOCALE\fR
438 is set, the systems locale is used\&. Defaults to
439 \fIUTF8\fR\&.
440 .RE
441 .PP
442 vol charset = \fICHARSET\fR \fB(G)/(V)\fR
443 .RS 4
444 Specifies the encoding of the volumes filesystem\&. By default, it is the same as
445 \fBunix charset\fR\&.
446 .RE
447 .SS "Password Options"
448 .PP
449 passwd file = \fIpath\fR \fB(G)\fR
450 .RS 4
451 Sets the path to the Randnum UAM passwd file for this server (default is :ETCDIR:/afppasswd)\&.
452 .RE
453 .PP
454 passwd minlen = \fInumber\fR \fB(G)\fR
455 .RS 4
456 Sets the minimum password length, if supported by the UAM
457 .RE
458 .SS "Network Options"
459 .PP
460 advertise ssh = \fIBOOLEAN\fR (default: \fIno\fR) \fB(G)\fR
461 .RS 4
462 Allows old Mac OS X clients (10\&.3\&.3\-10\&.4) to automagically establish a tunneled AFP connection through SSH\&. If this option is set, the server\'s answers to client\'s FPGetSrvrInfo requests contain an additional entry\&. It depends on both client\'s settings and a correctly configured and running
463 \fBsshd\fR(8)
464 on the server to let things work\&.
465 .if n \{\
466 .sp
467 .\}
468 .RS 4
469 .it 1 an-trap
470 .nr an-no-space-flag 1
471 .nr an-break-flag 1
472 .br
473 .ps +1
474 \fBNote\fR
475 .ps -1
476 .br
477 Setting this option is not recommended since globally encrypting AFP connections via SSH will increase the server\'s load significantly\&. On the other hand, Apple\'s client side implementation of this feature in MacOS X versions prior to 10\&.3\&.4 contained a security flaw\&.
478 .sp .5v
479 .RE
480 .RE
481 .PP
482 afp listen = \fIip address[:port] [ip adress[:port] \&.\&.\&.]\fR \fB(G)\fR
483 .RS 4
484 Specifies the IP address that the server should advertise
485 \fBand\fR
486 listens to\&. The default is advertise the first IP address of the system, but to listen for any incoming request\&. The network address may be specified either in dotted\-decimal format for IPv4 or in hexadecimal format for IPv6\&.
487 .RE
488 .PP
489 afp port = \fIport number\fR \fB(G)\fR
490 .RS 4
491 Allows a different TCP port to be used for AFP\&. The default is 548\&. Also sets the default port applied when none specified in an
492 \fBafp listen\fR
493 option\&.
494 .RE
495 .PP
496 cnid listen = \fIip address[:port] [ip adress[:port] \&.\&.\&.]\fR \fB(G)\fR
497 .RS 4
498 Specifies the IP address that the CNID server should listen on\&. The default is
499 \fBlocalhost:4700\fR\&.
500 .RE
501 .PP
502 disconnect time = \fInumber\fR \fB(G)\fR
503 .RS 4
504 Keep disconnected AFP sessions for
505 \fInumber\fR
506 hours before dropping them\&. Default is 24 hours\&.
507 .RE
508 .PP
509 dsireadbuf = \fInumber\fR \fB(G)\fR
510 .RS 4
511 Scale factor that determines the size of the DSI/TCP readahead buffer, default is 12\&. This is multiplies with the DSI server quantum (default ~300k) to give the size of the buffer\&. Increasing this value might increase throughput in fast local networks for volume to volume copies\&.
512 \fINote\fR: This buffer is allocated per afpd child process, so specifying large values will eat up large amount of memory (buffer size * number of clients)\&.
513 .RE
514 .PP
515 fqdn = \fIname:port\fR \fB(G)\fR
516 .RS 4
517 Specifies a fully\-qualified domain name, with an optional port\&. This is discarded if the server cannot resolve it\&. This option is not honored by AppleShare clients <= 3\&.8\&.3\&. This option is disabled by default\&. Use with caution as this will involve a second name resolution step on the client side\&. Also note that afpd will advertise this name:port combination but not automatically listen to it\&.
518 .RE
519 .PP
520 hostname = \fIname\fR \fB(G)\fR
521 .RS 4
522 Use this instead of the result from calling hostname for dertermening which IP address to advertise, therfore the hostname is resolved to an IP which is the advertised\&. This is NOT used for listening and it is also overwritten by
523 \fBafp listen\fR\&.
524 .RE
525 .PP
526 max connections = \fInumber\fR \fB(G)\fR
527 .RS 4
528 Sets the maximum number of clients that can simultaneously connect to the server (default is 200)\&.
529 .RE
530 .PP
531 server quantum = \fInumber\fR \fB(G)\fR
532 .RS 4
533 This specifies the DSI server quantum\&. The default value is 303840\&. The maximum value is 0xFFFFFFFFF, the minimum is 32000\&. If you specify a value that is out of range, the default value will be set\&. Do not change this value unless you\'re absolutely sure, what you\'re doing
534 .RE
535 .PP
536 sleep time = \fInumber\fR \fB(G)\fR
537 .RS 4
538 Keep sleeping AFP sessions for
539 \fInumber\fR
540 hours before disconnecting clients in sleep mode\&. Default is 10 hours\&.
541 .RE
542 .PP
543 tcprcvbuf = \fInumber\fR \fB(G)\fR
544 .RS 4
545 Try to set TCP receive buffer using setsockpt()\&. Often OSes impose restrictions on the applications ability to set this value\&.
546 .RE
547 .PP
548 tcpsndbuf = \fInumber\fR \fB(G)\fR
549 .RS 4
550 Try to set TCP send buffer using setsockpt()\&. Often OSes impose restrictions on the applications ability to set this value\&.
551 .RE
552 .PP
553 use sendfile = \fIBOOLEAN\fR (default: \fIyes\fR) \fB(G)\fR
554 .RS 4
555 Whether to use sendfile
556 syscall for sending file data to clients\&.
557 .RE
558 .PP
559 zeroconf = \fIBOOLEAN\fR (default: \fIyes\fR) \fB(G)\fR
560 .RS 4
561 Whether to use automatic Zeroconf
562 service registration if Avahi or mDNSResponder were compiled in\&.
563 .RE
564 .SS "Miscellaneous Options"
565 .PP
566 admin group = \fIgroup\fR \fB(G)\fR
567 .RS 4
568 Allows users of a certain group to be seen as the superuser when they log in\&. This option is disabled by default\&.
569 .RE
570 .PP
571 afp read locks = \fIBOOLEAN\fR (default: \fIno\fR) \fB(G)\fR
572 .RS 4
573 Whether to apply locks to the byte region read in FPRead calls\&. The AFP spec mandates this, but it\'s not really in line with UNIX semantics and is a performance hug\&.
574 .RE
575 .PP
576 basedir regex = \fIregex\fR \fB(H)\fR
577 .RS 4
578 Regular expression which matches the parent directory of the user homes\&. In the simple case this is just a path ie
579 \fBbasedir regex = /home\fR
580 .RE
581 .PP
582 close vol = \fIBOOLEAN\fR (default: \fIno\fR) \fB(G)\fR
583 .RS 4
584 Whether to close volumes possibly opened by clients when they\'re removed from the configuration and the configuration is reloaded\&.
585 .RE
586 .PP
587 cnid server = \fIipaddress[:port]\fR \fB(G)/(V)\fR
588 .RS 4
589 Specifies the IP address and port of a cnid_metad server, required for CNID dbd backend\&. Defaults to localhost:4700\&. The network address may be specified either in dotted\-decimal format for IPv4 or in hexadecimal format for IPv6\&.\-
590 .RE
591 .PP
592 dircachesize = \fInumber\fR \fB(G)\fR
593 .RS 4
594 Maximum possible entries in the directory cache\&. The cache stores directories and files\&. It is used to cache the full path to directories and CNIDs which considerably speeds up directory enumeration\&.
595 .sp
596 Default size is 8192, maximum size is 131072\&. Given value is rounded up to nearest power of 2\&. Each entry takes about 100 bytes, which is not much, but remember that every afpd child process for every connected user has its cache\&.
597 .RE
598 .PP
599 fce listener = \fIhost[:port]\fR \fB(G)\fR
600 .RS 4
601 Enables sending FCE events to the specified
602 \fIhost\fR, default
603 \fIport\fR
604 is 12250 if not specified\&. Specifying mutliple listeners is done by having this option once for each of them\&.
605 .RE
606 .PP
607 fce events = \fIfmod,fdel,ddel,fcre,dcre,tmsz\fR \fB(G)\fR
608 .RS 4
609 Speficies which FCE events are active, default is
610 \fIfmod,fdel,ddel,fcre,dcre\fR\&.
611 .RE
612 .PP
613 fce coalesce = \fIall|delete|create\fR \fB(G)\fR
614 .RS 4
615 Coalesce FCE events\&.
616 .RE
617 .PP
618 fce holdfmod = \fIseconds\fR \fB(G)\fR
619 .RS 4
620 This determines the time delay in seconds which is always waited if another file modification for the same file is done by a client before sending an FCE file modification event (fmod)\&. For example saving a file in Photoshop would generate multiple events by itself because the application is opening, modifying and closing a file mutliple times for every "save"\&. Defautl: 60 seconds\&.
621 .RE
622 .PP
623 guest account = \fIname\fR \fB(G)\fR
624 .RS 4
625 Specifies the user that guests should use (default is "nobody")\&. The name should be quoted\&.
626 .RE
627 .PP
628 home name = \fIname\fR \fB(H)\fR
629 .RS 4
630 AFP user home volume name\&. The default is
631 \fIusers\'s home\fR\&.
632 .RE
633 .PP
634 keep sessions = \fIBOOLEAN\fR (default: \fIno\fR) \fB(G)\fR
635 .RS 4
636 Enable "Continuous AFP Service"\&. This means restarting AFP and CNID service daemons master processes, but keeping the AFP session processes\&. This can be used to install (most) updates to Netatalk without interruping active AFP sessions\&. Existing AFP sessions will still run the version from before updating, but new AFP sessions will run the updated code\&. After enabling this option when sending SIGQUIT to the
637 \fInetatalk\fR
638 service controller process, the AFP and CNID daemons will exit and then the service controller will restart them\&. AFP session processes are notified of the master afpd shutdown, they will then sleep 15\-20 seconds and then try to reconnect their IPC channel to the master afpd process\&. The IPC channel between the AFP master service daemon and the AFP session child is used for keeping session state of AFP sessions in the AFP master process\&. The session state is needed when AFP clients experience eg network outages and try to reconnect to the AFP server\&.
639 .RE
640 .PP
641 login message = \fImessage\fR \fB(G)/(V)\fR
642 .RS 4
643 Sets a message to be displayed when clients logon to the server\&. The message should be in
644 \fBunix charset\fR
645 and should be quoted\&. Extended characters are allowed\&.
646 .RE
647 .PP
648 map acls = \fIBOOLEAN\fR (default: \fIyes\fR) \fB(G)\fR
649 .RS 4
650 Whether to map filesystem ACLs to effective permissions\&.
651 .RE
652 .PP
653 mimic model = \fImodel\fR \fB(G)\fR
654 .RS 4
655 Specifies the icon model that appears on clients\&. Defaults to off\&. Examples: RackMac (same as Xserve), PowerBook, PowerMac, Macmini, iMac, MacBook, MacBookPro, MacBookAir, MacPro, AppleTV1,1, AirPort\&.
656 .RE
657 .PP
658 signature = <text> \fB(G)\fR
659 .RS 4
660 Specify a server signature\&. The maximum length is 16 characters\&. This option is useful for clustered environments, to provide fault isolation etc\&. By default, afpd generate signature and saving it to
661 :STATEDIR:/netatalk/afp_signature\&.conf
662 automatically (based on random number)\&. See also asip\-status\&.pl(1)\&.
663 .RE
664 .PP
665 solaris share reservations = \fIBOOLEAN\fR (default: \fIyes\fR) \fB(G)\fR
666 .RS 4
667 Use share reservations on Solaris\&. Solaris CIFS server uses this too, so this makes a lock coherent multi protocol server\&.
668 .RE
669 .PP
670 vol dbpath = \fIpath\fR \fB(G)\fR
671 .RS 4
672 Sets the database information to be stored in path\&. You have to specifiy a writable location, even if the volume is read only\&. The default is
673 :STATEDIR:/netatalk/CNID/\&.
674 .RE
675 .PP
676 volnamelen = \fInumber\fR \fB(G)\fR
677 .RS 4
678 Max length of UTF8\-MAC volume name for Mac OS X\&. Note that Hangul is especially sensitive to this\&.
679 .sp
680 .if n \{\
681 .RS 4
682 .\}
683 .nf
684 73:  limit of Mac OS X 10\&.1
685 80:  limit of Mac OS X 10\&.4/10\&.5 (default)
686 255: limit of recent Mac OS X
687 .fi
688 .if n \{\
689 .RE
690 .\}
691 .sp
692 Mac OS 9 and earlier are not influenced by this, because Maccharset volume name is always limitted to 27 bytes\&.
693 .RE
694 .PP
695 vol preset = \fIname\fR \fB(G)/(V)\fR
696 .RS 4
697 Use section
698 \fBname\fR
699 as option preset for all volumes (when set in the [Global] section) or for one volume (when set in that volume\'s section)\&.
700 .RE
701 .SS "Logging Options"
702 .PP
703 log file = \fIlogfile\fR \fB(G)\fR
704 .RS 4
705 If not specified Netatalk logs to syslogs daemon facilify\&. Otherwise it logs to
706 \fBlogfile\fR\&.
707 .RE
708 .PP
709 log level = \fItype:level [type:level \&.\&.\&.]\fR \fB(G)\fR, log level = \fItype:level,[type:level, \&.\&.\&.]\fR \fB(G)\fR
710 .RS 4
711 Specify that any message of a loglevel up to the given
712 \fBlog level\fR
713 should be logged\&.
714 .sp
715 By default afpd logs to syslog with a default logging setup equivalent to
716 \fBdefault:note\fR
717 .sp
718 logtypes: default, afpdaemon, logger, uamsdaemon
719 .sp
720 loglevels: severe, error, warn, note, info, debug, debug6, debug7, debug8, debug9, maxdebug
721 .if n \{\
722 .sp
723 .\}
724 .RS 4
725 .it 1 an-trap
726 .nr an-no-space-flag 1
727 .nr an-break-flag 1
728 .br
729 .ps +1
730 \fBNote\fR
731 .ps -1
732 .br
733 Both logtype and loglevels are case insensitive\&.
734 .sp .5v
735 .RE
736 .RE
737 .SS "Debug Parameters"
738 .PP
739 These options are useful for debugging only\&.
740 .PP
741 tickleval = \fInumber\fR \fB(G)\fR
742 .RS 4
743 Sets the tickle timeout interval (in seconds)\&. Defaults to 30\&.
744 .RE
745 .PP
746 timeout = \fInumber\fR \fB(G)\fR
747 .RS 4
748 Specify the number of tickles to send before timing out a connection\&. The default is 4, therefore a connection will timeout after 2 minutes\&.
749 .RE
750 .PP
751 client polling = \fIBOOLEAN\fR (default: \fIno\fR) \fB(G)\fR
752 .RS 4
753 With this option enabled, afpd won\'t advertise that it is capable of server notifications, so that connected clients poll the server every 10 seconds to detect changes in opened server windows\&.
754 \fINote\fR: Depending on the number of simultaneously connected clients and the network\'s speed, this can lead to a significant higher load on your network!
755 .sp
756 Do not use this option any longer as present Netatalk correctly supports server notifications, allowing connected clients to update folder listings in case another client changed the contents\&.
757 .RE
758 .SH "EXPLANATION OF VOLUME PARAMETERS"
759 .SS "Parameters"
760 .PP
761 The section name defines the volume name which is the name that appears in the Chooser or the "connect to server" dialog on Macintoshes to represent the appropriate share\&. No two volumes may have the same name\&. The volume name cannot contain the
762 \':\'
763 character\&. The volume name is mangled if it is very long\&. Mac charset volume name is limited to 27 characters\&. UTF8\-MAC volume name is limited to volnamelen parameter\&.
764 .PP
765 path = \fIPATH\fR \fB(V)\fR
766 .RS 4
767 The path name must be a fully qualified path name, or a path name using either the ~ shell shorthand or any of the substitution variables, which are listed below\&.
768 .sp
769 The volume name is the name that appears in the Chooser ot the "connect to server" dialog on Macintoshes to represent the appropriate share\&. If volumename is unspecified, the last component of pathname is used\&. No two volumes may have the same name\&. If there are spaces in the name, it should be in quotes (i\&.e\&. "File Share")\&. The volume name cannot contain the
770 \':\'
771 character\&. The volume name is mangled if it is very long\&. Mac charset volume name is limited to 27 characters\&. UTF8\-MAC volume name is limited to volnamelen parameter\&.
772 .RE
773 .PP
774 appledouble = \fIea|v2\fR \fB(V)\fR
775 .RS 4
776 Specify the format of the metadata files, which are used for saving Mac resource fork as well\&. Earlier versions used AppleDouble v2, the new default format is
777 \fBea\fR\&.
778 .RE
779 .PP
780 vol size limit = \fIsize in MiB\fR \fB(V)\fR
781 .RS 4
782 Useful for Time Machine: limits the reported volume size, thus preventing Time Machine from using the whole real disk space for backup\&. Example: "vol size limit = 1000" would limit the reported disk space to 1 GB\&.
783 \fBIMPORTANT: \fR
784 This is an approimated calculation taking into accout the contents of Time Machine sparsebundle images\&. Therefor you MUST NOT use this volume to store other content when using this option, because it would NOT be accounted\&. The calculation works by reading the band size from the Info\&.plist XML file of the sparsebundle, reading the bands/ directory counting the number of band files, and then multiplying one with the other\&.
785 .RE
786 .PP
787 valid users = \fIusers/groups\fR \fB(V)\fR
788 .RS 4
789 The allow option allows the users and groups that access a share to be specified\&. Users and groups are specified, delimited by spaces or commas\&. Groups are designated by a @ prefix\&. Example: "valid users = user1 user2 @group"
790 .RE
791 .PP
792 invalid users = \fIusers/groups\fR \fB(V)\fR
793 .RS 4
794 The deny option specifies users and groups who are not allowed access to the share\&. It follows the same format as the "valid users" option\&.
795 .RE
796 .PP
797 hosts allow = \fIIP host address/IP netmask bits [ \&.\&.\&. ]\fR \fB(V)\fR
798 .RS 4
799 Only listed hosts and networks are allowed, all others are rejected\&. The network address may be specified either in dotted\-decimal format for IPv4 or in hexadecimal format for IPv6\&.
800 .sp
801 Example: hosts allow = 10\&.1\&.0\&.0/16 10\&.2\&.1\&.100 2001:0db8:1234::/48
802 .RE
803 .PP
804 hosts deny = \fIIP host address/IP netmask bits [ \&.\&.\&. ]\fR \fB(V)\fR
805 .RS 4
806 Listed hosts and nets are rejected, all others are allowed\&.
807 .sp
808 Example: hosts deny = 192\&.168\&.100/24 10\&.1\&.1\&.1 2001:db8::1428:57ab
809 .RE
810 .PP
811 cnid scheme = \fIbackend\fR \fB(V)\fR
812 .RS 4
813 set the CNID backend to be used for the volume, default is [:DEFAULT_CNID_SCHEME:] available schemes: [:COMPILED_BACKENDS:]
814 .RE
815 .PP
816 ea = \fInone|auto|sys|ad\fR
817 .RS 4
818 Specify how Extended Attributes
819 are stored\&.
820 \fBauto\fR
821 is the default\&.
822 .PP
823 auto
824 .RS 4
825 Try
826 \fBsys\fR
827 (by setting an EA on the shared directory itself), fallback to
828 \fBad\fR\&. Requires writeable volume for perfoming test\&. "\fBread only = yes\fR" overwrites
829 \fBauto\fR
830 with
831 \fBnone\fR\&. Use explicit "\fBea = sys|ad\fR" for read\-only volumes where appropiate\&.
832 .RE
833 .PP
834 sys
835 .RS 4
836 Use filesystem Extended Attributes\&.
837 .RE
838 .PP
839 ad
840 .RS 4
841 Use files in
842 \fI\&.AppleDouble\fR
843 directories\&.
844 .RE
845 .PP
846 none
847 .RS 4
848 No Extended Attributes support\&.
849 .RE
850 .RE
851 .PP
852 mac charset = \fICHARSET\fR \fB(V)\fR
853 .RS 4
854 specifies the Mac client charset for this Volume, e\&.g\&.
855 \fIMAC_ROMAN\fR,
856 \fIMAC_CYRILLIC\fR\&. If not specified the global setting is applied\&. This setting is only required if you need volumes, where the Mac charset differs from the one globally set in the [Global] section\&.
857 .RE
858 .PP
859 casefold = \fBoption\fR
860 .RS 4
861 The casefold option handles, if the case of filenames should be changed\&. The available options are:
862 .sp
863 \fBtolower\fR
864 \- Lowercases names in both directions\&.
865 .sp
866 \fBtoupper\fR
867 \- Uppercases names in both directions\&.
868 .sp
869 \fBxlatelower\fR
870 \- Client sees lowercase, server sees uppercase\&.
871 .sp
872 \fBxlateupper\fR
873 \- Client sees uppercase, server sees lowercase\&.
874 .RE
875 .PP
876 password = \fIpassword\fR \fB(V)\fR
877 .RS 4
878 This option allows you to set a volume password, which can be a maximum of 8 characters long (using ASCII strongly recommended at the time of this writing)\&.
879 .RE
880 .PP
881 file perm = \fImode\fR \fB(V)\fR, directory perm = \fImode\fR \fB(V)\fR
882 .RS 4
883 Add(or) with the client requested permissions:
884 \fBfile perm\fR
885 is for files only,
886 \fBdirectory perm\fR
887 is for directories only\&. Don\'t use with "\fBunix priv = no\fR"\&.
888 .PP
889 \fBExample.\ \&Volume for a collaborative workgroup\fR
890 .sp
891 .if n \{\
892 .RS 4
893 .\}
894 .nf
895 file perm = 0660
896 directory perm = 0770
897 .fi
898 .if n \{\
899 .RE
900 .\}
901
902 .RE
903 .PP
904 umask = \fImode\fR \fB(V)\fR
905 .RS 4
906 set perm mask\&. Don\'t use with "\fBunix priv = no\fR"\&.
907 .RE
908 .PP
909 preexec = \fIcommand\fR \fB(V)\fR
910 .RS 4
911 command to be run when the volume is mounted, ignored for user defined volumes
912 .RE
913 .PP
914 postexec = \fIcommand\fR \fB(V)\fR
915 .RS 4
916 command to be run when the volume is closed, ignored for user defined volumes
917 .RE
918 .PP
919 root preexec = \fIcommand\fR \fB(V)\fR
920 .RS 4
921 command to be run as root when the volume is mounted, ignored for user defined volumes
922 .RE
923 .PP
924 root postexec = \fIcommand\fR \fB(V)\fR
925 .RS 4
926 command to be run as root when the volume is closed, ignored for user defined volumes
927 .RE
928 .PP
929 rolist = \fBusers/groups\fR \fB(V)\fR
930 .RS 4
931 Allows certain users and groups to have read\-only access to a share\&. This follows the allow option format\&.
932 .RE
933 .PP
934 rwlist = \fIusers/groups\fR \fB(V)\fR
935 .RS 4
936 Allows certain users and groups to have read/write access to a share\&. This follows the allow option format\&.
937 .RE
938 .PP
939 veto files = \fIvetoed names\fR \fB(V)\fR
940 .RS 4
941 hide files and directories,where the path matches one of the \'/\' delimited vetoed names\&. The veto string must always be terminated with a \'/\', eg\&. "veto1/", "veto1/veto2/"\&.
942 .RE
943 .SS "Volume options"
944 .PP
945 Boolean volume options\&.
946 .PP
947 acls = \fIBOOLEAN\fR (default: \fIyes\fR) \fB(V)\fR
948 .RS 4
949 Whether to flag volumes as supporting ACLs\&. If ACL support is compiled in, this is yes by default\&.
950 .RE
951 .PP
952 cnid dev = \fIBOOLEAN\fR (default: \fIyes\fR) \fB(V)\fR
953 .RS 4
954 Whether to use the device number in the CNID backends\&. Helps when the device number is not constant across a reboot, eg cluster, \&.\&.\&.
955 .RE
956 .PP
957 convert appledouble = \fIBOOLEAN\fR (default: \fIyes\fR) \fB(V)\fR
958 .RS 4
959 Whether automatic conversion from
960 \fBappledouble = v2\fR
961 to
962 \fBappledouble = ea\fR
963 is performed when accessing filesystems from clients\&. This is generally useful, but costs some performance\&. It\'s recommdable to run
964 \fBdbd\fR
965 on volumes and do the conversion with that\&. Then this option can be set to no\&.
966 .RE
967 .PP
968 invisible dots = \fIBOOLEAN\fR (default: \fIno\fR) \fB(V)\fR
969 .RS 4
970 make dot files invisible\&.
971 .RE
972 .PP
973 network ids = \fIBOOLEAN\fR (default: \fIyes\fR) \fB(V)\fR
974 .RS 4
975 Whether the server support network ids\&. Setting this to
976 \fIno\fR
977 will result in the client not using ACL AFP functions\&.
978 .RE
979 .PP
980 preexec close = \fIBOOLEAN\fR (default: \fIno\fR) \fB(V)\fR
981 .RS 4
982 A non\-zero return code from preexec close the volume being immediately, preventing clients to mount/see the volume in question\&.
983 .RE
984 .PP
985 read only = \fIBOOLEAN\fR (default: \fIno\fR) \fB(V)\fR
986 .RS 4
987 Specifies the share as being read only for all users\&. Overwrites
988 \fBea = auto\fR
989 with
990 \fBea = none\fR
991 .RE
992 .PP
993 root preexec close= \fIBOOLEAN\fR (default: \fIno\fR) \fB(V)\fR
994 .RS 4
995 A non\-zero return code from root_preexec closes the volume immediately, preventing clients to mount/see the volume in question\&.
996 .RE
997 .PP
998 search db = \fIBOOLEAN\fR (default: \fIno\fR) \fB(V)\fR
999 .RS 4
1000 Use fast CNID database namesearch instead of slow recursive filesystem search\&. Relies on a consistent CNID database, ie Samba or local filesystem access lead to inaccurate or wrong results\&. Works only for "dbd" CNID db volumes\&.
1001 .RE
1002 .PP
1003 stat vol = \fIBOOLEAN\fR (default: \fIyes\fR) \fB(V)\fR
1004 .RS 4
1005 Whether to stat volume path when enumerating volumes list, useful for automounting or volumes created by a preexec script\&.
1006 .RE
1007 .PP
1008 time machine = \fIBOOLEAN\fR (default: \fIno\fR) \fB(V)\fR
1009 .RS 4
1010 Whether to enable Time Machine suport for this volume\&.
1011 .RE
1012 .PP
1013 unix priv = \fIBOOLEAN\fR (default: \fIyes\fR) \fB(V)\fR
1014 .RS 4
1015 Whether to use AFP3 UNIX privileges\&. This should be set for OS X clients\&. See also:
1016 \fBfile perm\fR,
1017 \fBdirectory perm\fR
1018 and
1019 \fBumask\fR\&.
1020 .RE
1021 .SH "CNID BACKENDS"
1022 .PP
1023 The AFP protocol mostly refers to files and directories by ID and not by name\&. Netatalk needs a way to store these ID\'s in a persistent way, to achieve this several different CNID backends are available\&. The CNID Databases are by default located in the
1024 :STATEDIR:/netatalk/CNID/(volumename)/\&.AppleDB/
1025 directory\&.
1026 .PP
1027 cdb
1028 .RS 4
1029 "Concurrent database", backend is based on Oracle Berkely DB\&. With this backend several
1030 \fBafpd\fR
1031 deamons access the CNID database directly\&. Berkeley DB locking is used to synchronize access, if more than one
1032 \fBafpd\fR
1033 process is active for a volume\&. The drawback is, that the crash of a single
1034 \fBafpd\fR
1035 process might corrupt the database\&.
1036 .RE
1037 .PP
1038 dbd
1039 .RS 4
1040 Access to the CNID database is restricted to the
1041 \fBcnid_metad\fR
1042 daemon process\&.
1043 \fBafpd\fR
1044 processes communicate with the daemon for database reads and updates\&. If built with Berkeley DB transactions the probability for database corruption is practically zero, but performance can be slower than with
1045 \fBcdb\fR
1046 .RE
1047 .PP
1048 last
1049 .RS 4
1050 This backend is an exception, in terms of ID persistency\&. ID\'s are only valid for the current session\&. This is basically what
1051 \fBafpd\fR
1052 did in the 1\&.5 (and 1\&.6) versions\&. This backend is still available, as it is useful for e\&.g\&. sharing cdroms\&. Starting with Netatalk 3\&.0, it becomes the
1053 \fIread only mode\fR
1054 automatically\&.
1055 .sp
1056 \fBWarning\fR: It is
1057 \fINOT\fR
1058 recommended to use this backend for volumes anymore, as
1059 \fBafpd\fR
1060 now relies heavily on a persistent ID database\&. Aliases will likely not work and filename mangling is not supported\&.
1061 .RE
1062 .PP
1063 Even though
1064 \fB\&./configure \-\-help\fR
1065 might show that there are other CNID backends available, be warned those are likely broken or mainly used for testing\&. Don\'t use them unless you know what you\'re doing, they may be removed without further notice from future versions\&.
1066 .SH "CHARSET OPTIONS"
1067 .PP
1068 With OS X Apple introduced the AFP3 protocol\&. One of the most important changes was that AFP3 uses unicode names encoded as UTF\-8 decomposed\&. Previous AFP/OS versions used codepages, like MacRoman, MacCentralEurope, etc\&.
1069 .PP
1070 \fBafpd\fR
1071 needs a way to preserve extended macintosh characters, or characters illegal in unix filenames, when saving files on a unix filesystem\&. Earlier versions used the the so called CAP encoding\&. An extended character (>0x7F) would be converted to a :xx sequence, e\&.g\&. the Apple Logo (MacRoman: 0xF0) was saved as
1072 :f0\&. Some special characters will be converted as to :xx notation as well\&. \'/\' will be encoded to
1073 :2f, if
1074 \fBusedots\fR
1075 is not specified, a leading dot \'\&.\' will be encoded as
1076 :2e\&.
1077 .PP
1078 This version now uses UTF\-8 as the default encoding for names\&. \'/\' will be converted to \':\'\&.
1079 .PP
1080 The
1081 \fBvol charset\fR
1082 option will allow you to select another volume encoding\&. E\&.g\&. for western users another useful setting could be vol charset ISO\-8859\-15\&.
1083 \fBafpd\fR
1084 will accept any
1085 \fBiconv\fR(1)
1086 provided charset\&. If a character cannot be converted from the
1087 \fBmac charset\fR
1088 to the selected
1089 \fBvol charset\fR, afpd will save it as a CAP encoded character\&. For AFP3 clients,
1090 \fBafpd\fR
1091 will convert the UTF\-8
1092 character to
1093 \fBmac charset\fR
1094 first\&. If this conversion fails, you\'ll receive a \-50 error on the mac\&.
1095 .PP
1096 \fINote\fR: Whenever you can, please stick with the default UTF\-8 volume format\&.
1097 .SH "SEE ALSO"
1098 .PP
1099 \fBafpd\fR(8),
1100 \fBafppasswd\fR(5),
1101 \fBafp_signature.conf\fR(5),
1102 \fBcnid_metad\fR(8)