The default of 'announce version' is 4.9, not 4.5
[Samba.git] / docs / manpages / smb.conf.5
blobc9ba0d996519fa6dc67c1109e0cacd56f7d0f1fd
1 .\" This manpage has been automatically generated by docbook2man-spec
2 .\" from a DocBook document.  docbook2man-spec can be found at:
3 .\" <http://shell.ipoline.com/~elmert/hacks/docbook2X/> 
4 .\" Please send any bug reports, improvements, comments, patches, 
5 .\" etc. to Steve Cheng <steve@ggi-project.org>.
6 .TH "SMB.CONF" "5" "15 October 2002" "" ""
7 .SH NAME
8 smb.conf \- The configuration file for the Samba suite
9 .SH "SYNOPSIS"
10 .PP
11 The \fIsmb.conf\fR file is a configuration 
12 file for the Samba suite. \fIsmb.conf\fR contains 
13 runtime configuration information for the Samba programs. The
14 \fIsmb.conf\fR file is designed to be configured and 
15 administered by the \fBswat(8)\fR
16  program. The complete description of the file format and 
17 possible parameters held within are here for reference purposes.
18 .SH "FILE FORMAT"
19 .PP
20 The file consists of sections and parameters. A section 
21 begins with the name of the section in square brackets and continues 
22 until the next section begins. Sections contain parameters of the 
23 form
24 .PP
25 \fIname\fR = \fIvalue
26 \fR.PP
27 The file is line-based - that is, each newline-terminated 
28 line represents either a comment, a section name or a parameter.
29 .PP
30 Section and parameter names are not case sensitive.
31 .PP
32 Only the first equals sign in a parameter is significant. 
33 Whitespace before or after the first equals sign is discarded.
34 Leading, trailing and internal whitespace in section and parameter 
35 names is irrelevant. Leading and trailing whitespace in a parameter 
36 value is discarded. Internal whitespace within a parameter value 
37 is retained verbatim.
38 .PP
39 Any line beginning with a semicolon (';') or a hash ('#') 
40 character is ignored, as are lines containing only whitespace.
41 .PP
42 Any line ending in a '\\' is continued
43 on the next line in the customary UNIX fashion.
44 .PP
45 The values following the equals sign in parameters are all 
46 either a string (no quotes needed) or a boolean, which may be given 
47 as yes/no, 0/1 or true/false. Case is not significant in boolean 
48 values, but is preserved in string values. Some items such as 
49 create modes are numeric.
50 .SH "SECTION DESCRIPTIONS"
51 .PP
52 Each section in the configuration file (except for the
53 [global] section) describes a shared resource (known
54 as a "share"). The section name is the name of the 
55 shared resource and the parameters within the section define 
56 the shares attributes.
57 .PP
58 There are three special sections, [global],
59 [homes] and [printers], which are
60 described under \fBspecial sections\fR. The
61 following notes apply to ordinary section descriptions.
62 .PP
63 A share consists of a directory to which access is being 
64 given plus a description of the access rights which are granted 
65 to the user of the service. Some housekeeping options are 
66 also specifiable.
67 .PP
68 Sections are either file share services (used by the 
69 client as an extension of their native file systems) or 
70 printable services (used by the client to access print services 
71 on the host running the server).
72 .PP
73 Sections may be designated \fBguest\fR services,
74 in which case no password is required to access them. A specified 
75 UNIX \fBguest account\fR is used to define access
76 privileges in this case.
77 .PP
78 Sections other than guest services will require a password 
79 to access them. The client provides the username. As older clients 
80 only provide passwords and not usernames, you may specify a list 
81 of usernames to check against the password using the "user =" 
82 option in the share definition. For modern clients such as 
83 Windows 95/98/ME/NT/2000, this should not be necessary.
84 .PP
85 Note that the access rights granted by the server are 
86 masked by the access rights granted to the specified or guest 
87 UNIX user by the host system. The server does not grant more
88 access than the host system grants.
89 .PP
90 The following sample section defines a file space share. 
91 The user has write access to the path \fI/home/bar\fR. 
92 The share is accessed via the share name "foo":
93 .sp
94 .nf
95                 [foo]
96                 path = /home/bar
97                 read only = no
98         
99         
103 The following sample section defines a printable share. 
104 The share is readonly, but printable. That is, the only write 
105 access permitted is via calls to open, write to and close a 
106 spool file. The \fBguest ok\fR parameter means 
107 access will be permitted as the default guest user (specified 
108 elsewhere):
111                 [aprinter]
112                 path = /usr/spool/public
113                 read only = yes
114                 printable = yes
115                 guest ok = yes
116         
117         
120 .SH "SPECIAL SECTIONS"
121 .SS "THE  GLOBAL  SECTION"
123 parameters in this section apply to the server 
124 as a whole, or are defaults for sections which do not 
125 specifically define certain items. See the notes
126 under PARAMETERS for more information.
127 .SS "THE  HOMES  SECTION"
129 If a section called homes is included in the 
130 configuration file, services connecting clients to their 
131 home directories can be created on the fly by the server.
133 When the connection request is made, the existing 
134 sections are scanned. If a match is found, it is used. If no 
135 match is found, the requested section name is treated as a 
136 user name and looked up in the local password file. If the 
137 name exists and the correct password has been given, a share is 
138 created by cloning the [homes] section.
140 Some modifications are then made to the newly 
141 created share:
142 .TP 0.2i
143 \(bu
144 The share name is changed from homes to 
145 the located username.
146 .TP 0.2i
147 \(bu
148 If no path was given, the path is set to
149 the user's home directory.
151 If you decide to use a \fBpath =\fR line 
152 in your [homes] section then you may find it useful 
153 to use the %S macro. For example :
156 \fBpath = /data/pchome/%S\fR
159 would be useful if you have different home directories 
160 for your PCs than for UNIX access.
163 This is a fast and simple way to give a large number 
164 of clients access to their home directories with a minimum 
165 of fuss.
168 A similar process occurs if the requested section 
169 name is "homes", except that the share name is not 
170 changed to that of the requesting user. This method of using
171 the [homes] section works well if different users share 
172 a client PC.
175 The [homes] section can specify all the parameters 
176 a normal service section can specify, though some make more sense 
177 than others. The following is a typical and suitable [homes]
178 section:
182                                 [homes]
183                         read only = no
184                 
185                 
189 An important point is that if guest access is specified 
190 in the [homes] section, all home directories will be 
191 visible to all clients \fBwithout a password\fR. 
192 In the very unlikely event that this is actually desirable, it 
193 would be wise to also specify \fBread only
194 access\fR.
197 Note that the \fBbrowseable\fR flag for 
198 auto home directories will be inherited from the global browseable 
199 flag, not the [homes] browseable flag. This is useful as 
200 it means setting \fBbrowseable = no\fR in
201 the [homes] section will hide the [homes] share but make
202 any auto home directories visible.
204 .SS "THE  PRINTERS  SECTION"
206 This section works like [homes], 
207 but for printers.
209 If a [printers] section occurs in the 
210 configuration file, users are able to connect to any printer 
211 specified in the local host's printcap file.
213 When a connection request is made, the existing sections 
214 are scanned. If a match is found, it is used. If no match is found, 
215 but a [homes] section exists, it is used as described
216 above. Otherwise, the requested section name is treated as a
217 printer name and the appropriate printcap file is scanned to see 
218 if the requested section name is a valid printer share name. If 
219 a match is found, a new printer share is created by cloning 
220 the [printers] section.
222 A few modifications are then made to the newly created 
223 share:
224 .TP 0.2i
225 \(bu
226 The share name is set to the located printer 
227 name
228 .TP 0.2i
229 \(bu
230 If no printer name was given, the printer name 
231 is set to the located printer name
232 .TP 0.2i
233 \(bu
234 If the share does not permit guest access and 
235 no username was given, the username is set to the located 
236 printer name.
238 Note that the [printers] service MUST be 
239 printable - if you specify otherwise, the server will refuse 
240 to load the configuration file.
243 Typically the path specified would be that of a 
244 world-writeable spool directory with the sticky bit set on 
245 it. A typical [printers] entry would look like 
246 this:
250                 [printers]
251                         path = /usr/spool/public
252                         guest ok = yes
253                         printable = yes 
254                 
258 All aliases given for a printer in the printcap file 
259 are legitimate printer names as far as the server is concerned. 
260 If your printing subsystem doesn't work like that, you will have 
261 to set up a pseudo-printcap. This is a file consisting of one or 
262 more lines like this:
266                                 alias|alias|alias|alias...    
267                 
268                 
272 Each alias should be an acceptable printer name for 
273 your printing subsystem. In the [global] section, specify 
274 the new file as your printcap. The server will then only recognize 
275 names found in your pseudo-printcap, which of course can contain 
276 whatever aliases you like. The same technique could be used 
277 simply to limit access to a subset of your local printers.
280 An alias, by the way, is defined as any component of the 
281 first entry of a printcap record. Records are separated by newlines,
282 components (if there are more than one) are separated by vertical 
283 bar symbols ('|').
286 NOTE: On SYSV systems which use lpstat to determine what 
287 printers are defined on the system you may be able to use
288 "printcap name = lpstat" to automatically obtain a list 
289 of printers. See the "printcap name" option 
290 for more details.
292 .SH "PARAMETERS"
294 parameters define the specific attributes of sections.
296 Some parameters are specific to the [global] section
297 (e.g., \fBsecurity\fR). Some parameters are usable 
298 in all sections (e.g., \fBcreate mode\fR). All others 
299 are permissible only in normal sections. For the purposes of the 
300 following descriptions the [homes] and [printers]
301 sections will be considered normal. The letter \fBG\fR 
302 in parentheses indicates that a parameter is specific to the
303 [global] section. The letter \fBS\fR
304 indicates that a parameter can be specified in a service specific
305 section. Note that all \fBS\fR parameters can also be specified in 
306 the [global] section - in which case they will define
307 the default behavior for all services.
309 parameters are arranged here in alphabetical order - this may 
310 not create best bedfellows, but at least you can find them! Where
311 there are synonyms, the preferred synonym is described, others refer 
312 to the preferred synonym.
313 .SH "VARIABLE SUBSTITUTIONS"
315 Many of the strings that are settable in the config file 
316 can take substitutions. For example the option "path =
317 /tmp/%u" would be interpreted as "path = 
318 /tmp/john" if the user connected with the username john.
320 These substitutions are mostly noted in the descriptions below, 
321 but there are some general substitutions which apply whenever they 
322 might be relevant. These are:
324 \fB%S\fR
325 the name of the current service, if any.
327 \fB%P\fR
328 the root directory of the current service, 
329 if any.
331 \fB%u\fR
332 user name of the current service, if any.
334 \fB%g\fR
335 primary group name of %u.
337 \fB%U\fR
338 session user name (the user name that the client 
339 wanted, not necessarily the same as the one they got).
341 \fB%G\fR
342 primary group name of %U.
344 \fB%H\fR
345 the home directory of the user given 
346 by %u.
348 \fB%v\fR
349 the Samba version.
351 \fB%h\fR
352 the Internet hostname that Samba is running 
355 \fB%m\fR
356 the NetBIOS name of the client machine 
357 (very useful).
359 \fB%L\fR
360 the NetBIOS name of the server. This allows you 
361 to change your config based on what the client calls you. Your 
362 server can have a "dual personality".
364 Note that this paramater is not available when Samba listens
365 on port 445, as clients no longer send this information 
367 \fB%M\fR
368 the Internet name of the client machine.
370 \fB%N\fR
371 the name of your NIS home directory server. 
372 This is obtained from your NIS auto.map entry. If you have 
373 not compiled Samba with the \fB--with-automount\fR 
374 option then this value will be the same as %L.
376 \fB%p\fR
377 the path of the service's home directory, 
378 obtained from your NIS auto.map entry. The NIS auto.map entry 
379 is split up as "%N:%p".
381 \fB%R\fR
382 the selected protocol level after 
383 protocol negotiation. It can be one of CORE, COREPLUS, 
384 LANMAN1, LANMAN2 or NT1.
386 \fB%d\fR
387 The process id of the current server
388 process.
390 \fB%a\fR
391 the architecture of the remote
392 machine. Only some are recognized, and those may not be 
393 100% reliable. It currently recognizes Samba, WfWg, Win95,
394 WinNT and Win2k. Anything else will be known as 
395 "UNKNOWN". If it gets it wrong then sending a level 
396 3 log to samba@samba.org
397  <URL:mailto:samba@samba.org> should allow it to be fixed.
399 \fB%I\fR
400 The IP address of the client machine.
402 \fB%T\fR
403 the current date and time.
405 \fB%$(\fIenvvar\fB)\fR
406 The value of the environment variable
407 \fIenvar\fR.
409 There are some quite creative things that can be done 
410 with these substitutions and other smb.conf options.
412 .SH "NAME MANGLING"
414 Samba supports "name mangling" so that DOS and 
415 Windows clients can use files that don't conform to the 8.3 format. 
416 It can also be set to adjust the case of 8.3 format filenames.
418 There are several options that control the way mangling is 
419 performed, and they are grouped here rather than listed separately. 
420 For the defaults look at the output of the testparm program. 
422 All of these options can be set separately for each service 
423 (or globally, of course). 
425 The options are: 
427 \fBmangling method\fR
428 controls the algorithm used for the generating
429 the mangled names. Can take two different values, "hash" and
430 "hash2". "hash" is the default and is the algorithm that has been
431 used in Samba for many years. "hash2" is a newer and considered
432 a better algorithm (generates less collisions) in the names.
433 However, many Win32 applications store the
434 mangled names and so changing to the new algorithm must not be done
435 lightly as these applications may break unless reinstalled.
436 New installations of Samba may set the default to hash2.
437 Default \fBhash\fR.
439 \fBmangle case = yes/no\fR
440 controls if names that have characters that 
441 aren't of the "default" case are mangled. For example, 
442 if this is yes then a name like "Mail" would be mangled. 
443 Default \fBno\fR.
445 \fBcase sensitive = yes/no\fR
446 controls whether filenames are case sensitive. If 
447 they aren't then Samba must do a filename search and match on passed 
448 names. Default \fBno\fR.
450 \fBdefault case = upper/lower\fR
451 controls what the default case is for new 
452 filenames. Default \fBlower\fR.
454 \fBpreserve case = yes/no\fR
455 controls if new files are created with the 
456 case that the client passes, or if they are forced to be the 
457 "default" case. Default \fByes\fR.
459 \fBshort preserve case = yes/no\fR
460 controls if new files which conform to 8.3 syntax,
461 that is all in upper case and of suitable length, are created 
462 upper case, or if they are forced to be the "default" 
463 case. This option can be use with "preserve case = yes" 
464 to permit long filenames to retain their case, while short names 
465 are lowercased. Default \fByes\fR.
467 By default, Samba 2.2 has the same semantics as a Windows 
468 NT server, in that it is case insensitive but case preserving.
470 .SH "NOTE ABOUT USERNAME/PASSWORD VALIDATION"
472 There are a number of ways in which a user can connect 
473 to a service. The server uses the following steps in determining 
474 if it will allow a connection to a specified service. If all the 
475 steps fail, then the connection request is rejected. However, if one of the 
476 steps succeeds, then the following steps are not checked.
478 If the service is marked "guest only = yes" and the
479 server is running with share-level security ("security = share")
480 then steps 1 to 5 are skipped.
481 .IP 1. 
482 If the client has passed a username/password 
483 pair and that username/password pair is validated by the UNIX 
484 system's password programs then the connection is made as that 
485 username. Note that this includes the 
486 \\\\server\\service%\fIusername\fR method of passing 
487 a username.
488 .IP 2. 
489 If the client has previously registered a username 
490 with the system and now supplies a correct password for that 
491 username then the connection is allowed.
492 .IP 3. 
493 The client's NetBIOS name and any previously 
494 used user names are checked against the supplied password, if 
495 they match then the connection is allowed as the corresponding 
496 user.
497 .IP 4. 
498 If the client has previously validated a
499 username/password pair with the server and the client has passed 
500 the validation token then that username is used. 
501 .IP 5. 
502 If a "user = " field is given in the
503 \fIsmb.conf\fR file for the service and the client 
504 has supplied a password, and that password matches (according to 
505 the UNIX system's password checking) with one of the usernames 
506 from the "user =" field then the connection is made as 
507 the username in the "user =" line. If one 
508 of the username in the "user =" list begins with a
509 \&'@' then that name expands to a list of names in 
510 the group of the same name.
511 .IP 6. 
512 If the service is a guest service then a 
513 connection is made as the username given in the "guest 
514 account =" for the service, irrespective of the 
515 supplied password.
516 .SH "COMPLETE LIST OF GLOBAL PARAMETERS"
518 Here is a list of all global parameters. See the section of 
519 each parameter for details. Note that some are synonyms.
520 .TP 0.2i
521 \(bu
522 \fIadd printer command\fR
523 .TP 0.2i
524 \(bu
525 \fIadd share command\fR
526 .TP 0.2i
527 \(bu
528 \fIadd user script\fR
529 .TP 0.2i
530 \(bu
531 \fIallow trusted domains\fR
532 .TP 0.2i
533 \(bu
534 \fIannounce as\fR
535 .TP 0.2i
536 \(bu
537 \fIannounce version\fR
538 .TP 0.2i
539 \(bu
540 \fIauto services\fR
541 .TP 0.2i
542 \(bu
543 \fIbind interfaces only\fR
544 .TP 0.2i
545 \(bu
546 \fIbrowse list\fR
547 .TP 0.2i
548 \(bu
549 \fIchange notify timeout\fR
550 .TP 0.2i
551 \(bu
552 \fIchange share command\fR
553 .TP 0.2i
554 \(bu
555 \fIcharacter set\fR
556 .TP 0.2i
557 \(bu
558 \fIclient code page\fR
559 .TP 0.2i
560 \(bu
561 \fIcode page directory\fR
562 .TP 0.2i
563 \(bu
564 \fIcoding system\fR
565 .TP 0.2i
566 \(bu
567 \fIconfig file\fR
568 .TP 0.2i
569 \(bu
570 \fIdeadtime\fR
571 .TP 0.2i
572 \(bu
573 \fIdebug hires timestamp\fR
574 .TP 0.2i
575 \(bu
576 \fIdebug pid\fR
577 .TP 0.2i
578 \(bu
579 \fIdebug timestamp\fR
580 .TP 0.2i
581 \(bu
582 \fIdebug uid\fR
583 .TP 0.2i
584 \(bu
585 \fIdebuglevel\fR
586 .TP 0.2i
587 \(bu
588 \fIdefault\fR
589 .TP 0.2i
590 \(bu
591 \fIdefault service\fR
592 .TP 0.2i
593 \(bu
594 \fIdelete printer command\fR
595 .TP 0.2i
596 \(bu
597 \fIdelete share command\fR
598 .TP 0.2i
599 \(bu
600 \fIdelete user script\fR
601 .TP 0.2i
602 \(bu
603 \fIdfree command\fR
604 .TP 0.2i
605 \(bu
606 \fIdisable spoolss\fR
607 .TP 0.2i
608 \(bu
609 \fIdns proxy\fR
610 .TP 0.2i
611 \(bu
612 \fIdomain admin group\fR
613 .TP 0.2i
614 \(bu
615 \fIdomain guest group\fR
616 .TP 0.2i
617 \(bu
618 \fIdomain logons\fR
619 .TP 0.2i
620 \(bu
621 \fIdomain master\fR
622 .TP 0.2i
623 \(bu
624 \fIencrypt passwords\fR
625 .TP 0.2i
626 \(bu
627 \fIenhanced browsing\fR
628 .TP 0.2i
629 \(bu
630 \fIenumports command\fR
631 .TP 0.2i
632 \(bu
633 \fIgetwd cache\fR
634 .TP 0.2i
635 \(bu
636 \fIhide local users\fR
637 .TP 0.2i
638 \(bu
639 \fIhide unreadable\fR
640 .TP 0.2i
641 \(bu
642 \fIhomedir map\fR
643 .TP 0.2i
644 \(bu
645 \fIhost msdfs\fR
646 .TP 0.2i
647 \(bu
648 \fIhosts equiv\fR
649 .TP 0.2i
650 \(bu
651 \fIinterfaces\fR
652 .TP 0.2i
653 \(bu
654 \fIkeepalive\fR
655 .TP 0.2i
656 \(bu
657 \fIkernel oplocks\fR
658 .TP 0.2i
659 \(bu
660 \fIlanman auth\fR
661 .TP 0.2i
662 \(bu
663 \fIlarge readwrite\fR
664 .TP 0.2i
665 \(bu
666 \fIldap admin dn\fR
667 .TP 0.2i
668 \(bu
669 \fIldap filter\fR
670 .TP 0.2i
671 \(bu
672 \fIldap port\fR
673 .TP 0.2i
674 \(bu
675 \fIldap server\fR
676 .TP 0.2i
677 \(bu
678 \fIldap ssl\fR
679 .TP 0.2i
680 \(bu
681 \fIldap suffix\fR
682 .TP 0.2i
683 \(bu
684 \fIlm announce\fR
685 .TP 0.2i
686 \(bu
687 \fIlm interval\fR
688 .TP 0.2i
689 \(bu
690 \fIload printers\fR
691 .TP 0.2i
692 \(bu
693 \fIlocal master\fR
694 .TP 0.2i
695 \(bu
696 \fIlock dir\fR
697 .TP 0.2i
698 \(bu
699 \fIlock directory\fR
700 .TP 0.2i
701 \(bu
702 \fIlock spin count\fR
703 .TP 0.2i
704 \(bu
705 \fIlock spin time\fR
706 .TP 0.2i
707 \(bu
708 \fIpid directory\fR
709 .TP 0.2i
710 \(bu
711 \fIlog file\fR
712 .TP 0.2i
713 \(bu
714 \fIlog level\fR
715 .TP 0.2i
716 \(bu
717 \fIlogon drive\fR
718 .TP 0.2i
719 \(bu
720 \fIlogon home\fR
721 .TP 0.2i
722 \(bu
723 \fIlogon path\fR
724 .TP 0.2i
725 \(bu
726 \fIlogon script\fR
727 .TP 0.2i
728 \(bu
729 \fIlpq cache time\fR
730 .TP 0.2i
731 \(bu
732 \fImachine password timeout\fR
733 .TP 0.2i
734 \(bu
735 \fImangled stack\fR
736 .TP 0.2i
737 \(bu
738 \fImangling method\fR
739 .TP 0.2i
740 \(bu
741 \fImap to guest\fR
742 .TP 0.2i
743 \(bu
744 \fImax disk size\fR
745 .TP 0.2i
746 \(bu
747 \fImax log size\fR
748 .TP 0.2i
749 \(bu
750 \fImax mux\fR
751 .TP 0.2i
752 \(bu
753 \fImax open files\fR
754 .TP 0.2i
755 \(bu
756 \fImax protocol\fR
757 .TP 0.2i
758 \(bu
759 \fImax smbd processes\fR
760 .TP 0.2i
761 \(bu
762 \fImax ttl\fR
763 .TP 0.2i
764 \(bu
765 \fImax wins ttl\fR
766 .TP 0.2i
767 \(bu
768 \fImax xmit\fR
769 .TP 0.2i
770 \(bu
771 \fImessage command\fR
772 .TP 0.2i
773 \(bu
774 \fImin passwd length\fR
775 .TP 0.2i
776 \(bu
777 \fImin password length\fR
778 .TP 0.2i
779 \(bu
780 \fImin protocol\fR
781 .TP 0.2i
782 \(bu
783 \fImin wins ttl\fR
784 .TP 0.2i
785 \(bu
786 \fIname resolve order\fR
787 .TP 0.2i
788 \(bu
789 \fInetbios aliases\fR
790 .TP 0.2i
791 \(bu
792 \fInetbios name\fR
793 .TP 0.2i
794 \(bu
795 \fInetbios scope\fR
796 .TP 0.2i
797 \(bu
798 \fInis homedir\fR
799 .TP 0.2i
800 \(bu
801 \fInt pipe support\fR
802 .TP 0.2i
803 \(bu
804 \fInt smb support\fR
805 .TP 0.2i
806 \(bu
807 \fInt status support\fR
808 .TP 0.2i
809 \(bu
810 \fInull passwords\fR
811 .TP 0.2i
812 \(bu
813 \fIobey pam restrictions\fR
814 .TP 0.2i
815 \(bu
816 \fIoplock break wait time\fR
817 .TP 0.2i
818 \(bu
819 \fIos level\fR
820 .TP 0.2i
821 \(bu
822 \fIos2 driver map\fR
823 .TP 0.2i
824 \(bu
825 \fIpam password change\fR
826 .TP 0.2i
827 \(bu
828 \fIpanic action\fR
829 .TP 0.2i
830 \(bu
831 \fIpasswd chat\fR
832 .TP 0.2i
833 \(bu
834 \fIpasswd chat debug\fR
835 .TP 0.2i
836 \(bu
837 \fIpasswd program\fR
838 .TP 0.2i
839 \(bu
840 \fIpassword level\fR
841 .TP 0.2i
842 \(bu
843 \fIpassword server\fR
844 .TP 0.2i
845 \(bu
846 \fIprefered master\fR
847 .TP 0.2i
848 \(bu
849 \fIpreferred master\fR
850 .TP 0.2i
851 \(bu
852 \fIpreload\fR
853 .TP 0.2i
854 \(bu
855 \fIprintcap\fR
856 .TP 0.2i
857 \(bu
858 \fIprintcap name\fR
859 .TP 0.2i
860 \(bu
861 \fIprinter driver file\fR
862 .TP 0.2i
863 \(bu
864 \fIprotocol\fR
865 .TP 0.2i
866 \(bu
867 \fIread bmpx\fR
868 .TP 0.2i
869 \(bu
870 \fIread raw\fR
871 .TP 0.2i
872 \(bu
873 \fIread size\fR
874 .TP 0.2i
875 \(bu
876 \fIremote announce\fR
877 .TP 0.2i
878 \(bu
879 \fIremote browse sync\fR
880 .TP 0.2i
881 \(bu
882 \fIrestrict anonymous\fR
883 .TP 0.2i
884 \(bu
885 \fIroot\fR
886 .TP 0.2i
887 \(bu
888 \fIroot dir\fR
889 .TP 0.2i
890 \(bu
891 \fIroot directory\fR
892 .TP 0.2i
893 \(bu
894 \fIsecurity\fR
895 .TP 0.2i
896 \(bu
897 \fIserver string\fR
898 .TP 0.2i
899 \(bu
900 \fIshow add printer wizard\fR
901 .TP 0.2i
902 \(bu
903 \fIsmb passwd file\fR
904 .TP 0.2i
905 \(bu
906 \fIsocket address\fR
907 .TP 0.2i
908 \(bu
909 \fIsocket options\fR
910 .TP 0.2i
911 \(bu
912 \fIsource environment\fR
913 .TP 0.2i
914 \(bu
915 \fIssl\fR
916 .TP 0.2i
917 \(bu
918 \fIssl CA certDir\fR
919 .TP 0.2i
920 \(bu
921 \fIssl CA certFile\fR
922 .TP 0.2i
923 \(bu
924 \fIssl ciphers\fR
925 .TP 0.2i
926 \(bu
927 \fIssl client cert\fR
928 .TP 0.2i
929 \(bu
930 \fIssl client key\fR
931 .TP 0.2i
932 \(bu
933 \fIssl compatibility\fR
934 .TP 0.2i
935 \(bu
936 \fIssl egd socket\fR
937 .TP 0.2i
938 \(bu
939 \fIssl entropy bytes\fR
940 .TP 0.2i
941 \(bu
942 \fIssl entropy file\fR
943 .TP 0.2i
944 \(bu
945 \fIssl hosts\fR
946 .TP 0.2i
947 \(bu
948 \fIssl hosts resign\fR
949 .TP 0.2i
950 \(bu
951 \fIssl require clientcert\fR
952 .TP 0.2i
953 \(bu
954 \fIssl require servercert\fR
955 .TP 0.2i
956 \(bu
957 \fIssl server cert\fR
958 .TP 0.2i
959 \(bu
960 \fIssl server key\fR
961 .TP 0.2i
962 \(bu
963 \fIssl version\fR
964 .TP 0.2i
965 \(bu
966 \fIstat cache\fR
967 .TP 0.2i
968 \(bu
969 \fIstat cache size\fR
970 .TP 0.2i
971 \(bu
972 \fIstrip dot\fR
973 .TP 0.2i
974 \(bu
975 \fIsyslog\fR
976 .TP 0.2i
977 \(bu
978 \fIsyslog only\fR
979 .TP 0.2i
980 \(bu
981 \fItemplate homedir\fR
982 .TP 0.2i
983 \(bu
984 \fItemplate shell\fR
985 .TP 0.2i
986 \(bu
987 \fItime offset\fR
988 .TP 0.2i
989 \(bu
990 \fItime server\fR
991 .TP 0.2i
992 \(bu
993 \fItimestamp logs\fR
994 .TP 0.2i
995 \(bu
996 \fItotal print jobs\fR
997 .TP 0.2i
998 \(bu
999 \fIunix extensions\fR
1000 .TP 0.2i
1001 \(bu
1002 \fIunix password sync\fR
1003 .TP 0.2i
1004 \(bu
1005 \fIupdate encrypted\fR
1006 .TP 0.2i
1007 \(bu
1008 \fIuse mmap\fR
1009 .TP 0.2i
1010 \(bu
1011 \fIuse rhosts\fR
1012 .TP 0.2i
1013 \(bu
1014 \fIusername level\fR
1015 .TP 0.2i
1016 \(bu
1017 \fIusername map\fR
1018 .TP 0.2i
1019 \(bu
1020 \fIutmp\fR
1021 .TP 0.2i
1022 \(bu
1023 \fIutmp directory\fR
1024 .TP 0.2i
1025 \(bu
1026 \fIvalid chars\fR
1027 .TP 0.2i
1028 \(bu
1029 \fIwinbind cache time\fR
1030 .TP 0.2i
1031 \(bu
1032 \fIwinbind enum users\fR
1033 .TP 0.2i
1034 \(bu
1035 \fIwinbind enum groups\fR
1036 .TP 0.2i
1037 \(bu
1038 \fIwinbind gid\fR
1039 .TP 0.2i
1040 \(bu
1041 \fIwinbind separator\fR
1042 .TP 0.2i
1043 \(bu
1044 \fIwinbind uid\fR
1045 .TP 0.2i
1046 \(bu
1047 \fIwinbind use default domain\fR
1048 .TP 0.2i
1049 \(bu
1050 \fIwins hook\fR
1051 .TP 0.2i
1052 \(bu
1053 \fIwins proxy\fR
1054 .TP 0.2i
1055 \(bu
1056 \fIwins server\fR
1057 .TP 0.2i
1058 \(bu
1059 \fIwins support\fR
1060 .TP 0.2i
1061 \(bu
1062 \fIworkgroup\fR
1063 .TP 0.2i
1064 \(bu
1065 \fIwrite raw\fR
1066 .SH "COMPLETE LIST OF SERVICE PARAMETERS"
1068 Here is a list of all service parameters. See the section on 
1069 each parameter for details. Note that some are synonyms.
1070 .TP 0.2i
1071 \(bu
1072 \fIadmin users\fR
1073 .TP 0.2i
1074 \(bu
1075 \fIallow hosts\fR
1076 .TP 0.2i
1077 \(bu
1078 \fIavailable\fR
1079 .TP 0.2i
1080 \(bu
1081 \fIblocking locks\fR
1082 .TP 0.2i
1083 \(bu
1084 \fIblock size\fR
1085 .TP 0.2i
1086 \(bu
1087 \fIbrowsable\fR
1088 .TP 0.2i
1089 \(bu
1090 \fIbrowseable\fR
1091 .TP 0.2i
1092 \(bu
1093 \fIcase sensitive\fR
1094 .TP 0.2i
1095 \(bu
1096 \fIcasesignames\fR
1097 .TP 0.2i
1098 \(bu
1099 \fIcomment\fR
1100 .TP 0.2i
1101 \(bu
1102 \fIcopy\fR
1103 .TP 0.2i
1104 \(bu
1105 \fIcreate mask\fR
1106 .TP 0.2i
1107 \(bu
1108 \fIcreate mode\fR
1109 .TP 0.2i
1110 \(bu
1111 \fIcsc policy\fR
1112 .TP 0.2i
1113 \(bu
1114 \fIdefault case\fR
1115 .TP 0.2i
1116 \(bu
1117 \fIdefault devmode\fR
1118 .TP 0.2i
1119 \(bu
1120 \fIdelete readonly\fR
1121 .TP 0.2i
1122 \(bu
1123 \fIdelete veto files\fR
1124 .TP 0.2i
1125 \(bu
1126 \fIdeny hosts\fR
1127 .TP 0.2i
1128 \(bu
1129 \fIdirectory\fR
1130 .TP 0.2i
1131 \(bu
1132 \fIdirectory mask\fR
1133 .TP 0.2i
1134 \(bu
1135 \fIdirectory mode\fR
1136 .TP 0.2i
1137 \(bu
1138 \fIdirectory security mask\fR
1139 .TP 0.2i
1140 \(bu
1141 \fIdont descend\fR
1142 .TP 0.2i
1143 \(bu
1144 \fIdos filemode\fR
1145 .TP 0.2i
1146 \(bu
1147 \fIdos filetime resolution\fR
1148 .TP 0.2i
1149 \(bu
1150 \fIdos filetimes\fR
1151 .TP 0.2i
1152 \(bu
1153 \fIexec\fR
1154 .TP 0.2i
1155 \(bu
1156 \fIfake directory create times\fR
1157 .TP 0.2i
1158 \(bu
1159 \fIfake oplocks\fR
1160 .TP 0.2i
1161 \(bu
1162 \fIfollow symlinks\fR
1163 .TP 0.2i
1164 \(bu
1165 \fIforce create mode\fR
1166 .TP 0.2i
1167 \(bu
1168 \fIforce directory mode\fR
1169 .TP 0.2i
1170 \(bu
1171 \fIforce directory security mode\fR
1172 .TP 0.2i
1173 \(bu
1174 \fIforce group\fR
1175 .TP 0.2i
1176 \(bu
1177 \fIforce security mode\fR
1178 .TP 0.2i
1179 \(bu
1180 \fIforce unknown acl user\fR
1181 .TP 0.2i
1182 \(bu
1183 \fIforce user\fR
1184 .TP 0.2i
1185 \(bu
1186 \fIfstype\fR
1187 .TP 0.2i
1188 \(bu
1189 \fIgroup\fR
1190 .TP 0.2i
1191 \(bu
1192 \fIguest account\fR
1193 .TP 0.2i
1194 \(bu
1195 \fIguest ok\fR
1196 .TP 0.2i
1197 \(bu
1198 \fIguest only\fR
1199 .TP 0.2i
1200 \(bu
1201 \fIhide dot files\fR
1202 .TP 0.2i
1203 \(bu
1204 \fIhide files\fR
1205 .TP 0.2i
1206 \(bu
1207 \fIhosts allow\fR
1208 .TP 0.2i
1209 \(bu
1210 \fIhosts deny\fR
1211 .TP 0.2i
1212 \(bu
1213 \fIinclude\fR
1214 .TP 0.2i
1215 \(bu
1216 \fIinherit acls\fR
1217 .TP 0.2i
1218 \(bu
1219 \fIinherit permissions\fR
1220 .TP 0.2i
1221 \(bu
1222 \fIinvalid users\fR
1223 .TP 0.2i
1224 \(bu
1225 \fIlevel2 oplocks\fR
1226 .TP 0.2i
1227 \(bu
1228 \fIlocking\fR
1229 .TP 0.2i
1230 \(bu
1231 \fIlppause command\fR
1232 .TP 0.2i
1233 \(bu
1234 \fIlpq command\fR
1235 .TP 0.2i
1236 \(bu
1237 \fIlpresume command\fR
1238 .TP 0.2i
1239 \(bu
1240 \fIlprm command\fR
1241 .TP 0.2i
1242 \(bu
1243 \fImagic output\fR
1244 .TP 0.2i
1245 \(bu
1246 \fImagic script\fR
1247 .TP 0.2i
1248 \(bu
1249 \fImangle case\fR
1250 .TP 0.2i
1251 \(bu
1252 \fImangled map\fR
1253 .TP 0.2i
1254 \(bu
1255 \fImangled names\fR
1256 .TP 0.2i
1257 \(bu
1258 \fImangling char\fR
1259 .TP 0.2i
1260 \(bu
1261 \fImap archive\fR
1262 .TP 0.2i
1263 \(bu
1264 \fImap hidden\fR
1265 .TP 0.2i
1266 \(bu
1267 \fImap system\fR
1268 .TP 0.2i
1269 \(bu
1270 \fImax connections\fR
1271 .TP 0.2i
1272 \(bu
1273 \fImax print jobs\fR
1274 .TP 0.2i
1275 \(bu
1276 \fImin print space\fR
1277 .TP 0.2i
1278 \(bu
1279 \fImsdfs root\fR
1280 .TP 0.2i
1281 \(bu
1282 \fInt acl support\fR
1283 .TP 0.2i
1284 \(bu
1285 \fIonly guest\fR
1286 .TP 0.2i
1287 \(bu
1288 \fIonly user\fR
1289 .TP 0.2i
1290 \(bu
1291 \fIoplock contention limit\fR
1292 .TP 0.2i
1293 \(bu
1294 \fIoplocks\fR
1295 .TP 0.2i
1296 \(bu
1297 \fIpath\fR
1298 .TP 0.2i
1299 \(bu
1300 \fIposix locking\fR
1301 .TP 0.2i
1302 \(bu
1303 \fIpostexec\fR
1304 .TP 0.2i
1305 \(bu
1306 \fIpostscript\fR
1307 .TP 0.2i
1308 \(bu
1309 \fIpreexec\fR
1310 .TP 0.2i
1311 \(bu
1312 \fIpreexec close\fR
1313 .TP 0.2i
1314 \(bu
1315 \fIpreserve case\fR
1316 .TP 0.2i
1317 \(bu
1318 \fIprint command\fR
1319 .TP 0.2i
1320 \(bu
1321 \fIprint ok\fR
1322 .TP 0.2i
1323 \(bu
1324 \fIprintable\fR
1325 .TP 0.2i
1326 \(bu
1327 \fIprinter\fR
1328 .TP 0.2i
1329 \(bu
1330 \fIprinter admin\fR
1331 .TP 0.2i
1332 \(bu
1333 \fIprinter driver\fR
1334 .TP 0.2i
1335 \(bu
1336 \fIprinter driver location\fR
1337 .TP 0.2i
1338 \(bu
1339 \fIprinter name\fR
1340 .TP 0.2i
1341 \(bu
1342 \fIprinting\fR
1343 .TP 0.2i
1344 \(bu
1345 \fIprofile acls\fR
1346 .TP 0.2i
1347 \(bu
1348 \fIpublic\fR
1349 .TP 0.2i
1350 \(bu
1351 \fIqueuepause command\fR
1352 .TP 0.2i
1353 \(bu
1354 \fIqueueresume command\fR
1355 .TP 0.2i
1356 \(bu
1357 \fIread list\fR
1358 .TP 0.2i
1359 \(bu
1360 \fIread only\fR
1361 .TP 0.2i
1362 \(bu
1363 \fIroot postexec\fR
1364 .TP 0.2i
1365 \(bu
1366 \fIroot preexec\fR
1367 .TP 0.2i
1368 \(bu
1369 \fIroot preexec close\fR
1370 .TP 0.2i
1371 \(bu
1372 \fIsecurity mask\fR
1373 .TP 0.2i
1374 \(bu
1375 \fIset directory\fR
1376 .TP 0.2i
1377 \(bu
1378 \fIshare modes\fR
1379 .TP 0.2i
1380 \(bu
1381 \fIshort preserve case\fR
1382 .TP 0.2i
1383 \(bu
1384 \fIstatus\fR
1385 .TP 0.2i
1386 \(bu
1387 \fIstrict allocate\fR
1388 .TP 0.2i
1389 \(bu
1390 \fIstrict locking\fR
1391 .TP 0.2i
1392 \(bu
1393 \fIstrict sync\fR
1394 .TP 0.2i
1395 \(bu
1396 \fIsync always\fR
1397 .TP 0.2i
1398 \(bu
1399 \fIuse client driver\fR
1400 .TP 0.2i
1401 \(bu
1402 \fIuse sendfile\fR
1403 .TP 0.2i
1404 \(bu
1405 \fIuser\fR
1406 .TP 0.2i
1407 \(bu
1408 \fIusername\fR
1409 .TP 0.2i
1410 \(bu
1411 \fIusers\fR
1412 .TP 0.2i
1413 \(bu
1414 \fIvalid users\fR
1415 .TP 0.2i
1416 \(bu
1417 \fIveto files\fR
1418 .TP 0.2i
1419 \(bu
1420 \fIveto oplock files\fR
1421 .TP 0.2i
1422 \(bu
1423 \fIvfs object\fR
1424 .TP 0.2i
1425 \(bu
1426 \fIvfs options\fR
1427 .TP 0.2i
1428 \(bu
1429 \fIvolume\fR
1430 .TP 0.2i
1431 \(bu
1432 \fIwide links\fR
1433 .TP 0.2i
1434 \(bu
1435 \fIwritable\fR
1436 .TP 0.2i
1437 \(bu
1438 \fIwrite cache size\fR
1439 .TP 0.2i
1440 \(bu
1441 \fIwrite list\fR
1442 .TP 0.2i
1443 \(bu
1444 \fIwrite ok\fR
1445 .TP 0.2i
1446 \(bu
1447 \fIwriteable\fR
1448 .SH "EXPLANATION OF EACH PARAMETER"
1450 \fBadd printer command (G)\fR
1451 With the introduction of MS-RPC based printing
1452 support for Windows NT/2000 clients in Samba 2.2, The MS Add
1453 Printer Wizard (APW) icon is now also available in the 
1454 "Printers..." folder displayed a share listing. The APW
1455 allows for printers to be add remotely to a Samba or Windows 
1456 NT/2000 print server.
1458 For a Samba host this means that the printer must be 
1459 physically added to the underlying printing system. The \fIadd 
1460 printer command\fR defines a script to be run which 
1461 will perform the necessary operations for adding the printer
1462 to the print system and to add the appropriate service definition 
1463 to the \fIsmb.conf\fR file in order that it can be 
1464 shared by \fBsmbd(8)\fR
1467 The \fIadd printer command\fR is
1468 automatically invoked with the following parameter (in 
1469 order:
1471 .TP 0.2i
1472 \(bu
1473 \fIprinter name\fR
1474 .TP 0.2i
1475 \(bu
1476 \fIshare name\fR
1477 .TP 0.2i
1478 \(bu
1479 \fIport name\fR
1480 .TP 0.2i
1481 \(bu
1482 \fIdriver name\fR
1483 .TP 0.2i
1484 \(bu
1485 \fIlocation\fR
1486 .TP 0.2i
1487 \(bu
1488 \fIWindows 9x driver location\fR
1491 All parameters are filled in from the PRINTER_INFO_2 structure sent 
1492 by the Windows NT/2000 client with one exception. The "Windows 9x
1493 driver location" parameter is included for backwards compatibility
1494 only. The remaining fields in the structure are generated from answers
1495 to the APW questions.
1498 Once the \fIadd printer command\fR has 
1499 been executed, \fBsmbd\fR will reparse the \fI smb.conf\fR to determine if the share defined by the APW
1500 exists. If the sharename is still invalid, then \fBsmbd
1501 \fRwill return an ACCESS_DENIED error to the client.
1504 See also \fI delete printer command\fR, \fIprinting\fR,
1505 \fIshow add
1506 printer wizard\fR
1509 Default: \fBnone\fR
1512 Example: \fBaddprinter command = /usr/bin/addprinter
1513 \fR.PP
1515 \fBadd share command (G)\fR
1516 Samba 2.2.0 introduced the ability to dynamically 
1517 add and delete shares via the Windows NT 4.0 Server Manager. The 
1518 \fIadd share command\fR is used to define an 
1519 external program or script which will add a new service definition 
1520 to \fIsmb.conf\fR. In order to successfully 
1521 execute the \fIadd share command\fR, \fBsmbd\fR
1522 requires that the administrator be connected using a root account (i.e. 
1523 uid == 0).
1525 When executed, \fBsmbd\fR will automatically invoke the 
1526 \fIadd share command\fR with four parameters.
1528 .TP 0.2i
1529 \(bu
1530 \fIconfigFile\fR - the location 
1531 of the global \fIsmb.conf\fR file. 
1532 .TP 0.2i
1533 \(bu
1534 \fIshareName\fR - the name of the new 
1535 share.
1536 .TP 0.2i
1537 \(bu
1538 \fIpathName\fR - path to an **existing**
1539 directory on disk.
1540 .TP 0.2i
1541 \(bu
1542 \fIcomment\fR - comment string to associate 
1543 with the new share.
1546 This parameter is only used for add file shares. To add printer shares, 
1547 see the \fIadd printer 
1548 command\fR.
1551 See also \fIchange share 
1552 command\fR, \fIdelete share
1553 command\fR.
1556 Default: \fBnone\fR
1559 Example: \fBadd share command = /usr/local/bin/addshare\fR
1562 \fBadd user script (G)\fR
1563 This is the full pathname to a script that will 
1564 be run \fBAS ROOT\fR by smbd(8)
1565  under special circumstances described below.
1567 Normally, a Samba server requires that UNIX users are 
1568 created for all users accessing files on this server. For sites 
1569 that use Windows NT account databases as their primary user database 
1570 creating these users and keeping the user list in sync with the 
1571 Windows NT PDC is an onerous task. This option allows smbd to create the required UNIX users 
1572 \fBON DEMAND\fR when a user accesses the Samba server.
1574 In order to use this option, smbd 
1575 must \fBNOT\fR be set to \fIsecurity = share\fR
1576 and \fIadd user script\fR
1577 must be set to a full pathname for a script that will create a UNIX 
1578 user given one argument of \fI%u\fR, which expands into 
1579 the UNIX user name to create.
1581 When the Windows user attempts to access the Samba server, 
1582 at login (session setup in the SMB protocol) time,  smbd contacts the \fIpassword server\fR and 
1583 attempts to authenticate the given user with the given password. If the 
1584 authentication succeeds then \fBsmbd\fR 
1585 attempts to find a UNIX user in the UNIX password database to map the 
1586 Windows user into. If this lookup fails, and \fIadd user script
1587 \fRis set then \fBsmbd\fR will
1588 call the specified script \fBAS ROOT\fR, expanding 
1589 any \fI%u\fR argument to be the user name to create.
1591 If this script successfully creates the user then \fBsmbd
1592 \fRwill continue on as though the UNIX user
1593 already existed. In this way, UNIX users are dynamically created to
1594 match existing Windows NT accounts.
1596 See also \fI security\fR,  \fIpassword server\fR, 
1597 \fIdelete user 
1598 script\fR.
1600 Default: \fBadd user script = <empty string>
1602 Example: \fBadd user script = /usr/local/samba/bin/add_user 
1603 %u\fR
1605 \fBadmin users (S)\fR
1606 This is a list of users who will be granted 
1607 administrative privileges on the share. This means that they 
1608 will do all file operations as the super-user (root).
1610 You should use this option very carefully, as any user in 
1611 this list will be able to do anything they like on the share, 
1612 irrespective of file permissions.
1614 Default: \fBno admin users\fR
1616 Example: \fBadmin users = jason\fR
1618 \fBallow hosts (S)\fR
1619 Synonym for  \fIhosts allow\fR.
1621 \fBallow trusted domains (G)\fR
1622 This option only takes effect when the \fIsecurity\fR option is set to 
1623 server or domain. 
1624 If it is set to no, then attempts to connect to a resource from 
1625 a domain or workgroup other than the one which smbd is running 
1626 in will fail, even if that domain is trusted by the remote server 
1627 doing the authentication.
1629 This is useful if you only want your Samba server to 
1630 serve resources to users in the domain it is a member of. As 
1631 an example, suppose that there are two domains DOMA and DOMB. DOMB 
1632 is trusted by DOMA, which contains the Samba server. Under normal 
1633 circumstances, a user with an account in DOMB can then access the 
1634 resources of a UNIX account with the same account name on the 
1635 Samba server even if they do not have an account in DOMA. This 
1636 can make implementing a security boundary difficult.
1638 Default: \fBallow trusted domains = yes\fR
1640 \fBannounce as (G)\fR
1641 This specifies what type of server 
1642 \fBnmbd\fR 
1643 will announce itself as, to a network neighborhood browse 
1644 list. By default this is set to Windows NT. The valid options 
1645 are : "NT Server" (which can also be written as "NT"), 
1646 "NT Workstation", "Win95" or "WfW" meaning Windows NT Server, 
1647 Windows NT Workstation, Windows 95 and Windows for Workgroups 
1648 respectively. Do not change this parameter unless you have a 
1649 specific need to stop Samba appearing as an NT server as this 
1650 may prevent Samba servers from participating as browser servers 
1651 correctly.
1653 Default: \fBannounce as = NT Server\fR
1655 Example: \fBannounce as = Win95\fR
1657 \fBannounce version (G)\fR
1658 This specifies the major and minor version numbers 
1659 that nmbd will use when announcing itself as a server. The default 
1660 is 4.9. Do not change this parameter unless you have a specific 
1661 need to set a Samba server to be a downlevel server.
1663 Default: \fBannounce version = 4.9\fR
1665 Example: \fBannounce version = 2.0\fR
1667 \fBauto services (G)\fR
1668 This is a synonym for the  \fIpreload\fR.
1670 \fBavailable (S)\fR
1671 This parameter lets you "turn off" a service. If 
1672 \fIavailable = no\fR, then \fBALL\fR 
1673 attempts to connect to the service will fail. Such failures are 
1674 logged.
1676 Default: \fBavailable = yes\fR
1678 \fBbind interfaces only (G)\fR
1679 This global parameter allows the Samba admin 
1680 to limit what interfaces on a machine will serve SMB requests. If 
1681 affects file service smbd(8) and 
1682 name service nmbd(8) in slightly 
1683 different ways.
1685 For name service it causes \fBnmbd\fR to bind 
1686 to ports 137 and 138 on the interfaces listed in the interfaces parameter. \fBnmbd
1687 \fRalso binds to the "all addresses" interface (0.0.0.0) 
1688 on ports 137 and 138 for the purposes of reading broadcast messages. 
1689 If this option is not set then \fBnmbd\fR will service 
1690 name requests on all of these sockets. If \fIbind interfaces
1691 only\fR is set then \fBnmbd\fR will check the 
1692 source address of any packets coming in on the broadcast sockets 
1693 and discard any that don't match the broadcast addresses of the 
1694 interfaces in the \fIinterfaces\fR parameter list. 
1695 As unicast packets are received on the other sockets it allows 
1696 \fBnmbd\fR to refuse to serve names to machines that 
1697 send packets that arrive through any interfaces not listed in the
1698 \fIinterfaces\fR list. IP Source address spoofing
1699 does defeat this simple check, however so it must not be used
1700 seriously as a security feature for \fBnmbd\fR.
1702 For file service it causes smbd(8)
1703 to bind only to the interface list given in the  interfaces parameter. This restricts the networks that 
1704 \fBsmbd\fR will serve to packets coming in those 
1705 interfaces. Note that you should not use this parameter for machines 
1706 that are serving PPP or other intermittent or non-broadcast network 
1707 interfaces as it will not cope with non-permanent interfaces.
1709 If \fIbind interfaces only\fR is set then 
1710 unless the network address \fB127.0.0.1\fR is added 
1711 to the \fIinterfaces\fR parameter list \fBsmbpasswd(8)\fR 
1712 and \fBswat(8)\fR may 
1713 not work as expected due to the reasons covered below.
1715 To change a users SMB password, the \fBsmbpasswd\fR
1716 by default connects to the \fBlocalhost - 127.0.0.1\fR 
1717 address as an SMB client to issue the password change request. If 
1718 \fIbind interfaces only\fR is set then unless the 
1719 network address \fB127.0.0.1\fR is added to the
1720 \fIinterfaces\fR parameter list then \fB smbpasswd\fR will fail to connect in it's default mode. 
1721 \fBsmbpasswd\fR can be forced to use the primary IP interface 
1722 of the local host by using its  \fI-r remote machine\fR
1723  parameter, with \fIremote machine\fR set 
1724 to the IP name of the primary interface of the local host.
1726 The \fBswat\fR status page tries to connect with
1727 \fBsmbd\fR and \fBnmbd\fR at the address 
1728 \fB127.0.0.1\fR to determine if they are running. 
1729 Not adding \fB127.0.0.1\fR will cause \fB smbd\fR and \fBnmbd\fR to always show
1730 "not running" even if they really are. This can prevent \fB swat\fR from starting/stopping/restarting \fBsmbd\fR
1731 and \fBnmbd\fR.
1733 Default: \fBbind interfaces only = no\fR
1735 \fBblock size (S)\fR
1736 This parameter controls the behavior of smbd(8) when reporting disk free sizes.
1737 By default, this reports a disk block size of 1024 bytes.
1739 Changing this parameter may have some effect on the
1740 efficiency of client writes, this is not yet confirmed. This
1741 parameter was added to allow advanced administrators to change
1742 it (usually to a higher value) and test the effect it has on
1743 client write performance without re-compiling the code. As this
1744 is an experimental option it may be removed in a future release.
1746 Changing this option does not change the disk free reporting
1747 size, just the block size unit reported to the client.
1749 Default: \fBblock size = 1024\fR
1751 Example: \fBblock size = 65536\fR
1753 \fBblocking locks (S)\fR
1754 This parameter controls the behavior of smbd(8) when given a request by a client 
1755 to obtain a byte range lock on a region of an open file, and the 
1756 request has a time limit associated with it.
1758 If this parameter is set and the lock range requested 
1759 cannot be immediately satisfied, Samba 2.2 will internally 
1760 queue the lock request, and periodically attempt to obtain 
1761 the lock until the timeout period expires.
1763 If this parameter is set to no, then 
1764 Samba 2.2 will behave as previous versions of Samba would and 
1765 will fail the lock request immediately if the lock range 
1766 cannot be obtained.
1768 Default: \fBblocking locks = yes\fR
1770 \fBbrowsable (S)\fR
1771 See the \fI browseable\fR.
1773 \fBbrowse list (G)\fR
1774 This controls whether  \fBsmbd(8)\fR will serve a browse list to 
1775 a client doing a \fBNetServerEnum\fR call. Normally 
1776 set to yes. You should never need to change 
1777 this.
1779 Default: \fBbrowse list = yes\fR
1781 \fBbrowseable (S)\fR
1782 This controls whether this share is seen in 
1783 the list of available shares in a net view and in the browse list.
1785 Default: \fBbrowseable = yes\fR
1787 \fBcase sensitive (S)\fR
1788 See the discussion in the section NAME MANGLING.
1790 Default: \fBcase sensitive = no\fR
1792 \fBcasesignames (S)\fR
1793 Synonym for case 
1794 sensitive.
1796 \fBchange notify timeout (G)\fR
1797 This SMB allows a client to tell a server to 
1798 "watch" a particular directory for any changes and only reply to
1799 the SMB request when a change has occurred. Such constant scanning of
1800 a directory is expensive under UNIX, hence an  \fBsmbd(8)\fR daemon only performs such a scan 
1801 on each requested directory once every \fIchange notify 
1802 timeout\fR seconds.
1804 Default: \fBchange notify timeout = 60\fR
1806 Example: \fBchange notify timeout = 300\fR
1808 Would change the scan time to every 5 minutes.
1810 \fBchange share command (G)\fR
1811 Samba 2.2.0 introduced the ability to dynamically 
1812 add and delete shares via the Windows NT 4.0 Server Manager. The 
1813 \fIchange share command\fR is used to define an 
1814 external program or script which will modify an existing service definition 
1815 in \fIsmb.conf\fR. In order to successfully 
1816 execute the \fIchange share command\fR, \fBsmbd\fR
1817 requires that the administrator be connected using a root account (i.e. 
1818 uid == 0).
1820 When executed, \fBsmbd\fR will automatically invoke the 
1821 \fIchange share command\fR with four parameters.
1823 .TP 0.2i
1824 \(bu
1825 \fIconfigFile\fR - the location 
1826 of the global \fIsmb.conf\fR file. 
1827 .TP 0.2i
1828 \(bu
1829 \fIshareName\fR - the name of the new 
1830 share.
1831 .TP 0.2i
1832 \(bu
1833 \fIpathName\fR - path to an **existing**
1834 directory on disk.
1835 .TP 0.2i
1836 \(bu
1837 \fIcomment\fR - comment string to associate 
1838 with the new share.
1841 This parameter is only used modify existing file shares definitions. To modify 
1842 printer shares, use the "Printers..." folder as seen when browsing the Samba host.
1845 See also \fIadd share
1846 command\fR, \fIdelete 
1847 share command\fR.
1850 Default: \fBnone\fR
1853 Example: \fBchange share command = /usr/local/bin/addshare\fR
1856 \fBcharacter set (G)\fR
1857 This allows smbd to map incoming filenames 
1858 from a DOS Code page (see the client 
1859 code page parameter) to several built in UNIX character sets. 
1860 The built in code page translations are:
1862 .TP 0.2i
1863 \(bu
1864 ISO8859-1 : Western European 
1865 UNIX character set. The parameter \fIclient code page\fR
1866 \fBMUST\fR be set to code page 850 if the 
1867 \fIcharacter set\fR parameter is set to
1868 ISO8859-1 in order for the conversion to the 
1869 UNIX character set to be done correctly.
1870 .TP 0.2i
1871 \(bu
1872 ISO8859-2 : Eastern European 
1873 UNIX character set. The parameter \fIclient code page
1874 \fR\fBMUST\fR be set to code page 852 if 
1875 the \fI character set\fR parameter is set 
1876 to ISO8859-2 in order for the conversion 
1877 to the UNIX character set to be done correctly. 
1878 .TP 0.2i
1879 \(bu
1880 ISO8859-5 : Russian Cyrillic 
1881 UNIX character set. The parameter \fIclient code page
1882 \fR\fBMUST\fR be set to code page 
1883 866 if the \fIcharacter set \fR parameter is 
1884 set to ISO8859-5 in order for the conversion 
1885 to the UNIX character set to be done correctly. 
1886 .TP 0.2i
1887 \(bu
1888 ISO8859-7 : Greek UNIX 
1889 character set. The parameter \fIclient code page
1890 \fR\fBMUST\fR be set to code page 
1891 737 if the \fIcharacter set\fR parameter is 
1892 set to ISO8859-7 in order for the conversion 
1893 to the UNIX character set to be done correctly.
1894 .TP 0.2i
1895 \(bu
1896 KOI8-R : Alternate mapping 
1897 for Russian Cyrillic UNIX character set. The parameter 
1898 \fIclient code page\fR \fBMUST\fR 
1899 be set to code page 866 if the \fIcharacter set\fR 
1900 parameter is set to KOI8-R in order for the 
1901 conversion to the UNIX character set to be done correctly.
1904 \fBBUG\fR. These MSDOS code page to UNIX character 
1905 set mappings should be dynamic, like the loading of MS DOS code pages, 
1906 not static.
1909 Normally this parameter is not set, meaning no filename 
1910 translation is done.
1913 Default: \fBcharacter set = <empty string>\fR
1916 Example: \fBcharacter set = ISO8859-1\fR
1919 \fBclient code page (G)\fR
1920 This parameter specifies the DOS code page 
1921 that the clients accessing Samba are using. To determine what code 
1922 page a Windows or DOS client is using, open a DOS command prompt 
1923 and type the command \fBchcp\fR. This will output 
1924 the code page. The default for USA MS-DOS, Windows 95, and
1925 Windows NT releases is code page 437. The default for western 
1926 European releases of the above operating systems is code page 850.
1928 This parameter tells smbd(8) 
1929 which of the \fIcodepage.XXX
1930 \fRfiles to dynamically load on startup. These files,
1931 described more fully in the manual page  \fBmake_smbcodepage(1)\fR tell \fB smbd\fR how to map lower to upper case characters to provide 
1932 the case insensitivity of filenames that Windows clients expect.
1934 Samba currently ships with the following code page files :
1936 .TP 0.2i
1937 \(bu
1938 Code Page 437 - MS-DOS Latin US
1939 .TP 0.2i
1940 \(bu
1941 Code Page 737 - Windows '95 Greek
1942 .TP 0.2i
1943 \(bu
1944 Code Page 850 - MS-DOS Latin 1
1945 .TP 0.2i
1946 \(bu
1947 Code Page 852 - MS-DOS Latin 2
1948 .TP 0.2i
1949 \(bu
1950 Code Page 861 - MS-DOS Icelandic
1951 .TP 0.2i
1952 \(bu
1953 Code Page 866 - MS-DOS Cyrillic
1954 .TP 0.2i
1955 \(bu
1956 Code Page 932 - MS-DOS Japanese SJIS
1957 .TP 0.2i
1958 \(bu
1959 Code Page 936 - MS-DOS Simplified Chinese
1960 .TP 0.2i
1961 \(bu
1962 Code Page 949 - MS-DOS Korean Hangul
1963 .TP 0.2i
1964 \(bu
1965 Code Page 950 - MS-DOS Traditional Chinese
1968 Thus this parameter may have any of the values 437, 737, 850, 852,
1969 861, 932, 936, 949, or 950. If you don't find the codepage you need,
1970 read the comments in one of the other codepage files and the
1971 \fBmake_smbcodepage(1)\fR man page and write one. Please 
1972 remember to donate it back to the Samba user community.
1975 This parameter co-operates with the \fIvalid
1976 chars\fR parameter in determining what characters are
1977 valid in filenames and how capitalization is done. If you set both
1978 this parameter and the \fIvalid chars\fR parameter
1979 the \fIclient code page\fR parameter 
1980 \fBMUST\fR be set before the \fIvalid 
1981 chars\fR parameter in the \fIsmb.conf\fR
1982 file. The \fIvalid chars\fR string will then 
1983 augment the character settings in the \fIclient code page\fR 
1984 parameter.
1987 If not set, \fIclient code page\fR defaults 
1988 to 850.
1991 See also : \fIvalid 
1992 chars\fR,  \fIcode page directory\fR
1995 Default: \fBclient code page = 850\fR
1998 Example: \fBclient code page = 936\fR
2001 \fBcode page directory (G)\fR
2002 Define the location of the various client code page
2003 files.
2005 See also \fIclient
2006 code page\fR
2008 Default: \fBcode page directory = ${prefix}/lib/codepages
2010 Example: \fBcode page directory = /usr/share/samba/codepages
2011 \fR.TP
2012 \fBcoding system (G)\fR
2013 This parameter is used to determine how incoming 
2014 Shift-JIS Japanese characters are mapped from the incoming \fIclient code page\fR
2015 used by the client, into file names in the UNIX filesystem. 
2016 Only useful if \fIclient code page\fR is set to 
2017 932 (Japanese Shift-JIS). The options are :
2019 .TP 0.2i
2020 \(bu
2021 SJIS - Shift-JIS. Does no 
2022 conversion of the incoming filename.
2023 .TP 0.2i
2024 \(bu
2025 JIS8, J8BB, J8BH, J8@B, 
2026 J8@J, J8@H  - Convert from incoming Shift-JIS to eight 
2027 bit JIS code with different shift-in, shift out codes.
2028 .TP 0.2i
2029 \(bu
2030 JIS7, J7BB, J7BH, J7@B, J7@J, 
2031 J7@H  - Convert from incoming Shift-JIS to seven bit 
2032 JIS code with different shift-in, shift out codes.
2033 .TP 0.2i
2034 \(bu
2035 JUNET, JUBB, JUBH, JU@B, JU@J, JU@H  
2036 - Convert from incoming Shift-JIS to JUNET code with different shift-in, 
2037 shift out codes.
2038 .TP 0.2i
2039 \(bu
2040 EUC - Convert an incoming 
2041 Shift-JIS character to EUC code.
2042 .TP 0.2i
2043 \(bu
2044 HEX - Convert an incoming 
2045 Shift-JIS character to a 3 byte hex representation, i.e. 
2046 :AB.
2047 .TP 0.2i
2048 \(bu
2049 CAP - Convert an incoming 
2050 Shift-JIS character to the 3 byte hex representation used by 
2051 the Columbia AppleTalk Program (CAP), i.e. :AB. 
2052 This is used for compatibility between Samba and CAP.
2055 Default: \fBcoding system = <empty value>\fR
2058 \fBcomment (S)\fR
2059 This is a text field that is seen next to a share 
2060 when a client does a queries the server, either via the network 
2061 neighborhood or via \fBnet view\fR to list what shares 
2062 are available.
2064 If you want to set the string that is displayed next to the 
2065 machine name then see the \fI server string\fR parameter.
2067 Default: \fBNo comment string\fR
2069 Example: \fBcomment = Fred's Files\fR
2071 \fBconfig file (G)\fR
2072 This allows you to override the config file 
2073 to use, instead of the default (usually \fIsmb.conf\fR). 
2074 There is a chicken and egg problem here as this option is set 
2075 in the config file!
2077 For this reason, if the name of the config file has changed 
2078 when the parameters are loaded then it will reload them from 
2079 the new config file.
2081 This option takes the usual substitutions, which can 
2082 be very useful.
2084 If the config file doesn't exist then it won't be loaded 
2085 (allowing you to special case the config files of just a few 
2086 clients).
2088 Example: \fBconfig file = /usr/local/samba/lib/smb.conf.%m
2089 \fR.TP
2090 \fBcopy (S)\fR
2091 This parameter allows you to "clone" service 
2092 entries. The specified service is simply duplicated under the 
2093 current service's name. Any parameters specified in the current 
2094 section will override those in the section being copied.
2096 This feature lets you set up a 'template' service and 
2097 create similar services easily. Note that the service being 
2098 copied must occur earlier in the configuration file than the 
2099 service doing the copying.
2101 Default: \fBno value\fR
2103 Example: \fBcopy = otherservice\fR
2105 \fBcreate mask (S)\fR
2106 A synonym for this parameter is 
2107 \fIcreate mode\fR
2110 When a file is created, the necessary permissions are 
2111 calculated according to the mapping from DOS modes to UNIX 
2112 permissions, and the resulting UNIX mode is then bit-wise 'AND'ed 
2113 with this parameter. This parameter may be thought of as a bit-wise 
2114 MASK for the UNIX modes of a file. Any bit \fBnot\fR 
2115 set here will be removed from the modes set on a file when it is 
2116 created.
2118 The default value of this parameter removes the 
2119 \&'group' and 'other' write and execute bits from the UNIX modes.
2121 Following this Samba will bit-wise 'OR' the UNIX mode created 
2122 from this parameter with the value of the \fIforce create mode\fR
2123 parameter which is set to 000 by default.
2125 This parameter does not affect directory modes. See the 
2126 parameter \fIdirectory mode
2127 \fRfor details.
2129 See also the \fIforce 
2130 create mode\fR parameter for forcing particular mode 
2131 bits to be set on created files. See also the  \fIdirectory mode\fR parameter for masking 
2132 mode bits on created directories. See also the  \fIinherit permissions\fR parameter.
2134 Note that this parameter does not apply to permissions
2135 set by Windows NT/2000 ACL editors. If the administrator wishes to enforce
2136 a mask on access control lists also, they need to set the \fIsecurity mask\fR.
2138 Default: \fBcreate mask = 0744\fR
2140 Example: \fBcreate mask = 0775\fR
2142 \fBcreate mode (S)\fR
2143 This is a synonym for \fI create mask\fR.
2145 \fBcsc policy (S)\fR
2146 This stands for \fBclient-side caching 
2147 policy\fR, and specifies how clients capable of offline
2148 caching will cache the files in the share. The valid values
2149 are: manual, documents, programs, disable.
2151 These values correspond to those used on Windows
2152 servers.
2154 For example, shares containing roaming profiles can have
2155 offline caching disabled using \fBcsc policy = disable
2156 \fR\&.
2158 Default: \fBcsc policy = manual\fR
2160 Example: \fBcsc policy = programs\fR
2162 \fBdeadtime (G)\fR
2163 The value of the parameter (a decimal integer) 
2164 represents the number of minutes of inactivity before a connection 
2165 is considered dead, and it is disconnected. The deadtime only takes 
2166 effect if the number of open files is zero.
2168 This is useful to stop a server's resources being 
2169 exhausted by a large number of inactive connections.
2171 Most clients have an auto-reconnect feature when a 
2172 connection is broken so in most cases this parameter should be 
2173 transparent to users.
2175 Using this parameter with a timeout of a few minutes 
2176 is recommended for most systems.
2178 A deadtime of zero indicates that no auto-disconnection 
2179 should be performed.
2181 Default: \fBdeadtime = 0\fR
2183 Example: \fBdeadtime = 15\fR
2185 \fBdebug hires timestamp (G)\fR
2186 Sometimes the timestamps in the log messages 
2187 are needed with a resolution of higher that seconds, this 
2188 boolean parameter adds microsecond resolution to the timestamp 
2189 message header when turned on.
2191 Note that the parameter \fI debug timestamp\fR must be on for this to have an 
2192 effect.
2194 Default: \fBdebug hires timestamp = no\fR
2196 \fBdebug pid (G)\fR
2197 When using only one log file for more then one 
2198 forked smbdprocess there may be hard to follow which process 
2199 outputs which message. This boolean parameter is adds the process-id 
2200 to the timestamp message headers in the logfile when turned on.
2202 Note that the parameter \fI debug timestamp\fR must be on for this to have an 
2203 effect.
2205 Default: \fBdebug pid = no\fR
2207 \fBdebug timestamp (G)\fR
2208 Samba 2.2 debug log messages are timestamped 
2209 by default. If you are running at a high  \fIdebug level\fR these timestamps
2210 can be distracting. This boolean parameter allows timestamping 
2211 to be turned off.
2213 Default: \fBdebug timestamp = yes\fR
2215 \fBdebug uid (G)\fR
2216 Samba is sometimes run as root and sometime 
2217 run as the connected user, this boolean parameter inserts the 
2218 current euid, egid, uid and gid to the timestamp message headers 
2219 in the log file if turned on.
2221 Note that the parameter \fI debug timestamp\fR must be on for this to have an 
2222 effect.
2224 Default: \fBdebug uid = no\fR
2226 \fBdebuglevel (G)\fR
2227 Synonym for \fI log level\fR.
2229 \fBdefault (G)\fR
2230 A synonym for \fI default service\fR.
2232 \fBdefault case (S)\fR
2233 See the section on  NAME MANGLING. Also note the  \fIshort preserve case\fR parameter.
2235 Default: \fBdefault case = lower\fR
2237 \fBdefault devmode (S)\fR
2238 This parameter is only applicable to printable services. When smbd is serving
2239 Printer Drivers to Windows NT/2k/XP clients, each printer on the Samba
2240 server has a Device Mode which defines things such as paper size and
2241 orientation and duplex settings. The device mode can only correctly be
2242 generated by the printer driver itself (which can only be executed on a
2243 Win32 platform). Because smbd is unable to execute the driver code
2244 to generate the device mode, the default behavior is to set this field
2245 to NULL.
2247 Most problems with serving printer drivers to Windows NT/2k/XP clients
2248 can be traced to a problem with the generated device mode. Certain drivers
2249 will do things such as crashing the client's Explorer.exe with a NULL devmode.
2250 However, other printer drivers can cause the client's spooler service
2251 (spoolsv.exe) to die if the devmode was not created by the driver itself
2252 (i.e. smbd generates a default devmode).
2254 This parameter should be used with care and tested with the printer
2255 driver in question. It is better to leave the device mode to NULL
2256 and let the Windows client set the correct values. Because drivers do not
2257 do this all the time, setting \fBdefault devmode = yes\fR
2258 will instruct smbd to generate a default one.
2260 For more information on Windows NT/2k printing and Device Modes,
2261 see the MSDN documentation <URL:http://msdn.microsoft.com/>.
2263 Default: \fBdefault devmode = no\fR
2265 \fBdefault service (G)\fR
2266 This parameter specifies the name of a service
2267 which will be connected to if the service actually requested cannot
2268 be found. Note that the square brackets are \fBNOT\fR
2269 given in the parameter value (see example below).
2271 There is no default value for this parameter. If this 
2272 parameter is not given, attempting to connect to a nonexistent 
2273 service results in an error.
2275 Typically the default service would be a  \fIguest ok\fR,  \fIread-only\fR service.
2277 Also note that the apparent service name will be changed 
2278 to equal that of the requested service, this is very useful as it 
2279 allows you to use macros like \fI%S\fR to make 
2280 a wildcard service.
2282 Note also that any "_" characters in the name of the service 
2283 used in the default service will get mapped to a "/". This allows for
2284 interesting things.
2286 Example:
2290 [global]
2291         default service = pub
2292         
2293 [pub]
2294         path = /%S
2295                 
2299 \fBdelete printer command (G)\fR
2300 With the introduction of MS-RPC based printer
2301 support for Windows NT/2000 clients in Samba 2.2, it is now 
2302 possible to delete printer at run time by issuing the 
2303 DeletePrinter() RPC call.
2305 For a Samba host this means that the printer must be 
2306 physically deleted from underlying printing system. The \fI deleteprinter command\fR defines a script to be run which 
2307 will perform the necessary operations for removing the printer
2308 from the print system and from \fIsmb.conf\fR.
2310 The \fIdelete printer command\fR is 
2311 automatically called with only one parameter: \fI "printer name"\fR.
2313 Once the \fIdelete printer command\fR has 
2314 been executed, \fBsmbd\fR will reparse the \fI smb.conf\fR to associated printer no longer exists. 
2315 If the sharename is still valid, then \fBsmbd
2316 \fRwill return an ACCESS_DENIED error to the client.
2318 See also \fI add printer command\fR, \fIprinting\fR,
2319 \fIshow add
2320 printer wizard\fR
2322 Default: \fBnone\fR
2324 Example: \fBdeleteprinter command = /usr/bin/removeprinter
2325 \fR.TP
2326 \fBdelete readonly (S)\fR
2327 This parameter allows readonly files to be deleted. 
2328 This is not normal DOS semantics, but is allowed by UNIX.
2330 This option may be useful for running applications such 
2331 as rcs, where UNIX file ownership prevents changing file 
2332 permissions, and DOS semantics prevent deletion of a read only file.
2334 Default: \fBdelete readonly = no\fR
2336 \fBdelete share command (G)\fR
2337 Samba 2.2.0 introduced the ability to dynamically 
2338 add and delete shares via the Windows NT 4.0 Server Manager. The 
2339 \fIdelete share command\fR is used to define an 
2340 external program or script which will remove an existing service 
2341 definition from \fIsmb.conf\fR. In order to successfully 
2342 execute the \fIdelete share command\fR, \fBsmbd\fR
2343 requires that the administrator be connected using a root account (i.e. 
2344 uid == 0).
2346 When executed, \fBsmbd\fR will automatically invoke the 
2347 \fIdelete share command\fR with two parameters.
2349 .TP 0.2i
2350 \(bu
2351 \fIconfigFile\fR - the location 
2352 of the global \fIsmb.conf\fR file. 
2353 .TP 0.2i
2354 \(bu
2355 \fIshareName\fR - the name of 
2356 the existing service.
2359 This parameter is only used to remove file shares. To delete printer shares, 
2360 see the \fIdelete printer 
2361 command\fR.
2364 See also \fIadd share
2365 command\fR, \fIchange 
2366 share command\fR.
2369 Default: \fBnone\fR
2372 Example: \fBdelete share command = /usr/local/bin/delshare\fR
2375 \fBdelete user script (G)\fR
2376 This is the full pathname to a script that will 
2377 be run \fBAS ROOT\fR by  \fBsmbd(8)\fR under special circumstances 
2378 described below.
2380 Normally, a Samba server requires that UNIX users are 
2381 created for all users accessing files on this server. For sites 
2382 that use Windows NT account databases as their primary user database 
2383 creating these users and keeping the user list in sync with the 
2384 Windows NT PDC is an onerous task. This option allows \fB smbd\fR to delete the required UNIX users \fBON 
2385 DEMAND\fR when a user accesses the Samba server and the 
2386 Windows NT user no longer exists.
2388 In order to use this option, \fBsmbd\fR must be 
2389 set to \fIsecurity = domain\fR or \fIsecurity =
2390 user\fR and \fIdelete user script\fR 
2391 must be set to a full pathname for a script 
2392 that will delete a UNIX user given one argument of \fI%u\fR, 
2393 which expands into the UNIX user name to delete.
2395 When the Windows user attempts to access the Samba server, 
2396 at \fBlogin\fR (session setup in the SMB protocol) 
2397 time, \fBsmbd\fR contacts the  \fIpassword server\fR and attempts to authenticate 
2398 the given user with the given password. If the authentication fails 
2399 with the specific Domain error code meaning that the user no longer 
2400 exists then \fBsmbd\fR attempts to find a UNIX user in 
2401 the UNIX password database that matches the Windows user account. If 
2402 this lookup succeeds, and \fIdelete user script\fR is 
2403 set then \fBsmbd\fR will all the specified script 
2404 \fBAS ROOT\fR, expanding any \fI%u\fR 
2405 argument to be the user name to delete.
2407 This script should delete the given UNIX username. In this way, 
2408 UNIX users are dynamically deleted to match existing Windows NT 
2409 accounts.
2411 See also security = domain,
2412 \fIpassword server\fR
2413 , \fIadd user script\fR
2416 Default: \fBdelete user script = <empty string>
2418 Example: \fBdelete user script = /usr/local/samba/bin/del_user 
2419 %u\fR
2421 \fBdelete veto files (S)\fR
2422 This option is used when Samba is attempting to 
2423 delete a directory that contains one or more vetoed directories 
2424 (see the \fIveto files\fR
2425 option). If this option is set to no (the default) then if a vetoed 
2426 directory contains any non-vetoed files or directories then the 
2427 directory delete will fail. This is usually what you want.
2429 If this option is set to yes, then Samba 
2430 will attempt to recursively delete any files and directories within 
2431 the vetoed directory. This can be useful for integration with file 
2432 serving systems such as NetAtalk which create meta-files within 
2433 directories you might normally veto DOS/Windows users from seeing 
2434 (e.g. \fI.AppleDouble\fR)
2436 Setting \fBdelete veto files = yes\fR allows these 
2437 directories to be transparently deleted when the parent directory 
2438 is deleted (so long as the user has permissions to do so).
2440 See also the \fIveto 
2441 files\fR parameter.
2443 Default: \fBdelete veto files = no\fR
2445 \fBdeny hosts (S)\fR
2446 Synonym for \fIhosts 
2447 deny\fR.
2449 \fBdfree command (G)\fR
2450 The \fIdfree command\fR setting should 
2451 only be used on systems where a problem occurs with the internal 
2452 disk space calculations. This has been known to happen with Ultrix, 
2453 but may occur with other operating systems. The symptom that was 
2454 seen was an error of "Abort Retry Ignore" at the end of each 
2455 directory listing.
2457 This setting allows the replacement of the internal routines to
2458 calculate the total disk space and amount available with an external
2459 routine. The example below gives a possible script that might fulfill
2460 this function.
2462 The external program will be passed a single parameter indicating 
2463 a directory in the filesystem being queried. This will typically consist
2464 of the string \fI./\fR. The script should return two 
2465 integers in ASCII. The first should be the total disk space in blocks, 
2466 and the second should be the number of available blocks. An optional 
2467 third return value can give the block size in bytes. The default 
2468 blocksize is 1024 bytes.
2470 Note: Your script should \fBNOT\fR be setuid or 
2471 setgid and should be owned by (and writeable only by) root!
2473 Default: \fBBy default internal routines for 
2474 determining the disk capacity and remaining space will be used.
2476 Example: \fBdfree command = /usr/local/samba/bin/dfree
2478 Where the script dfree (which must be made executable) could be:
2483                 #!/bin/sh
2484                 df $1 | tail -1 | awk '{print $2" "$4}'
2485                 
2489 or perhaps (on Sys V based systems):
2494                 #!/bin/sh
2495                 /usr/bin/df -k $1 | tail -1 | awk '{print $3" "$5}'
2496                 
2500 Note that you may have to replace the command names 
2501 with full path names on some systems.
2503 \fBdirectory (S)\fR
2504 Synonym for \fIpath
2505 \fR\&.
2507 \fBdirectory mask (S)\fR
2508 This parameter is the octal modes which are 
2509 used when converting DOS modes to UNIX modes when creating UNIX 
2510 directories.
2512 When a directory is created, the necessary permissions are 
2513 calculated according to the mapping from DOS modes to UNIX permissions, 
2514 and the resulting UNIX mode is then bit-wise 'AND'ed with this 
2515 parameter. This parameter may be thought of as a bit-wise MASK for 
2516 the UNIX modes of a directory. Any bit \fBnot\fR set 
2517 here will be removed from the modes set on a directory when it is 
2518 created.
2520 The default value of this parameter removes the 'group' 
2521 and 'other' write bits from the UNIX mode, allowing only the 
2522 user who owns the directory to modify it.
2524 Following this Samba will bit-wise 'OR' the UNIX mode 
2525 created from this parameter with the value of the \fIforce directory mode
2526 \fRparameter. This parameter is set to 000 by 
2527 default (i.e. no extra mode bits are added).
2529 Note that this parameter does not apply to permissions
2530 set by Windows NT/2000 ACL editors. If the administrator wishes to enforce
2531 a mask on access control lists also, they need to set the \fIdirectory security mask\fR.
2533 See the \fIforce 
2534 directory mode\fR parameter to cause particular mode 
2535 bits to always be set on created directories.
2537 See also the \fIcreate mode
2538 \fRparameter for masking mode bits on created files, 
2539 and the \fIdirectory 
2540 security mask\fR parameter.
2542 Also refer to the \fI inherit permissions\fR parameter.
2544 Default: \fBdirectory mask = 0755\fR
2546 Example: \fBdirectory mask = 0775\fR
2548 \fBdirectory mode (S)\fR
2549 Synonym for \fI directory mask\fR
2551 \fBdirectory security mask (S)\fR
2552 This parameter controls what UNIX permission bits 
2553 can be modified when a Windows NT client is manipulating the UNIX 
2554 permission on a directory using the native NT security dialog 
2555 box.
2557 This parameter is applied as a mask (AND'ed with) to 
2558 the changed permission bits, thus preventing any bits not in 
2559 this mask from being modified. Essentially, zero bits in this 
2560 mask may be treated as a set of bits the user is not allowed 
2561 to change.
2563 If not set explicitly this parameter is set to 0777
2564 meaning a user is allowed to modify all the user/group/world
2565 permissions on a directory.
2567 \fBNote\fR that users who can access the 
2568 Samba server through other means can easily bypass this restriction, 
2569 so it is primarily useful for standalone "appliance" systems. 
2570 Administrators of most normal systems will probably want to leave
2571 it as the default of 0777.
2573 See also the \fI force directory security mode\fR, \fIsecurity mask\fR, 
2574 \fIforce security mode
2575 \fRparameters.
2577 Default: \fBdirectory security mask = 0777\fR
2579 Example: \fBdirectory security mask = 0700\fR
2581 \fBdisable spoolss (G)\fR
2582 Enabling this parameter will disables Samba's support
2583 for the SPOOLSS set of MS-RPC's and will yield identical behavior
2584 as Samba 2.0.x. Windows NT/2000 clients will downgrade to using
2585 Lanman style printing commands. Windows 9x/ME will be uneffected by
2586 the parameter. However, this will also disable the ability to upload
2587 printer drivers to a Samba server via the Windows NT Add Printer
2588 Wizard or by using the NT printer properties dialog window. It will
2589 also disable the capability of Windows NT/2000 clients to download
2590 print drivers from the Samba host upon demand.
2591 \fBBe very careful about enabling this parameter.\fR
2593 See also use client driver
2595 Default : \fBdisable spoolss = no\fR
2597 \fBdns proxy (G)\fR
2598 Specifies that nmbd(8) 
2599 when acting as a WINS server and finding that a NetBIOS name has not 
2600 been registered, should treat the NetBIOS name word-for-word as a DNS 
2601 name and do a lookup with the DNS server for that name on behalf of 
2602 the name-querying client.
2604 Note that the maximum length for a NetBIOS name is 15 
2605 characters, so the DNS name (or DNS alias) can likewise only be 
2606 15 characters, maximum.
2608 \fBnmbd\fR spawns a second copy of itself to do the
2609 DNS name lookup requests, as doing a name lookup is a blocking 
2610 action.
2612 See also the parameter \fI wins support\fR.
2614 Default: \fBdns proxy = yes\fR
2616 \fBdomain admin group (G)\fR
2617 This parameter is intended as a temporary solution
2618 to enable users to be a member of the "Domain Admins" group when 
2619 a Samba host is acting as a PDC. A complete solution will be provided
2620 by a system for mapping Windows NT/2000 groups onto UNIX groups.
2621 Please note that this parameter has a somewhat confusing name. It 
2622 accepts a list of usernames and of group names in standard 
2623 \fIsmb.conf\fR notation.
2625 See also \fIdomain
2626 guest group\fR, \fIdomain
2627 logons\fR
2629 Default: \fBno domain administrators\fR
2631 Example: \fBdomain admin group = root @wheel\fR
2633 \fBdomain guest group (G)\fR
2634 This parameter is intended as a temporary solution
2635 to enable users to be a member of the "Domain Guests" group when 
2636 a Samba host is acting as a PDC. A complete solution will be provided
2637 by a system for mapping Windows NT/2000 groups onto UNIX groups.
2638 Please note that this parameter has a somewhat confusing name. It 
2639 accepts a list of usernames and of group names in standard 
2640 \fIsmb.conf\fR notation.
2642 See also \fIdomain
2643 admin group\fR, \fIdomain
2644 logons\fR
2646 Default: \fBno domain guests\fR
2648 Example: \fBdomain guest group = nobody @guest\fR
2650 \fBdomain logons (G)\fR
2651 If set to yes, the Samba server will serve 
2652 Windows 95/98 Domain logons for the  \fIworkgroup\fR it is in. Samba 2.2 also 
2653 has limited capability to act as a domain controller for Windows 
2654 NT 4 Domains. For more details on setting up this feature see 
2655 the Samba-PDC-HOWTO included in the \fIhtmldocs/\fR
2656 directory shipped with the source code.
2658 Default: \fBdomain logons = no\fR
2660 \fBdomain master (G)\fR
2661 Tell \fB nmbd(8)\fR to enable WAN-wide browse list
2662 collation. Setting this option causes \fBnmbd\fR to
2663 claim a special domain specific NetBIOS name that identifies 
2664 it as a domain master browser for its given  \fIworkgroup\fR. Local master browsers 
2665 in the same \fIworkgroup\fR on broadcast-isolated 
2666 subnets will give this \fBnmbd\fR their local browse lists, 
2667 and then ask \fBsmbd(8)\fR 
2668 for a complete copy of the browse list for the whole wide area 
2669 network. Browser clients will then contact their local master browser, 
2670 and will receive the domain-wide browse list, instead of just the list 
2671 for their broadcast-isolated subnet.
2673 Note that Windows NT Primary Domain Controllers expect to be 
2674 able to claim this \fIworkgroup\fR specific special 
2675 NetBIOS name that identifies them as domain master browsers for 
2676 that \fIworkgroup\fR by default (i.e. there is no 
2677 way to prevent a Windows NT PDC from attempting to do this). This 
2678 means that if this parameter is set and \fBnmbd\fR claims 
2679 the special name for a \fIworkgroup\fR before a Windows 
2680 NT PDC is able to do so then cross subnet browsing will behave 
2681 strangely and may fail.
2683 If \fBdomain logons = yes\fR
2684 , then the default behavior is to enable the \fIdomain 
2685 master\fR parameter. If \fIdomain logons\fR is 
2686 not enabled (the default setting), then neither will \fIdomain 
2687 master\fR be enabled by default.
2689 Default: \fBdomain master = auto\fR
2691 \fBdont descend (S)\fR
2692 There are certain directories on some systems 
2693 (e.g., the \fI/proc\fR tree under Linux) that are either not 
2694 of interest to clients or are infinitely deep (recursive). This 
2695 parameter allows you to specify a comma-delimited list of directories 
2696 that the server should always show as empty.
2698 Note that Samba can be very fussy about the exact format 
2699 of the "dont descend" entries. For example you may need \fI ./proc\fR instead of just \fI/proc\fR. 
2700 Experimentation is the best policy :-) 
2702 Default: \fBnone (i.e., all directories are OK 
2703 to descend)\fR
2705 Example: \fBdont descend = /proc,/dev\fR
2707 \fBdos filemode (S)\fR
2708 The default behavior in Samba is to provide 
2709 UNIX-like behavior where only the owner of a file/directory is 
2710 able to change the permissions on it. However, this behavior
2711 is often confusing to DOS/Windows users. Enabling this parameter 
2712 allows a user who has write access to the file (by whatever 
2713 means) to modify the permissions on it. Note that a user
2714 belonging to the group owning the file will not be allowed to
2715 change permissions if the group is only granted read access.
2716 Ownership of the file/directory is not changed, only the permissions 
2717 are modified.
2719 Default: \fBdos filemode = no\fR
2721 \fBdos filetime resolution (S)\fR
2722 Under the DOS and Windows FAT filesystem, the finest 
2723 granularity on time resolution is two seconds. Setting this parameter 
2724 for a share causes Samba to round the reported time down to the 
2725 nearest two second boundary when a query call that requires one second 
2726 resolution is made to \fBsmbd(8)\fR
2729 This option is mainly used as a compatibility option for Visual 
2730 C++ when used against Samba shares. If oplocks are enabled on a 
2731 share, Visual C++ uses two different time reading calls to check if a 
2732 file has changed since it was last read. One of these calls uses a
2733 one-second granularity, the other uses a two second granularity. As
2734 the two second call rounds any odd second down, then if the file has a
2735 timestamp of an odd number of seconds then the two timestamps will not
2736 match and Visual C++ will keep reporting the file has changed. Setting
2737 this option causes the two timestamps to match, and Visual C++ is
2738 happy.
2740 Default: \fBdos filetime resolution = no\fR
2742 \fBdos filetimes (S)\fR
2743 Under DOS and Windows, if a user can write to a 
2744 file they can change the timestamp on it. Under POSIX semantics, 
2745 only the owner of the file or root may change the timestamp. By 
2746 default, Samba runs with POSIX semantics and refuses to change the 
2747 timestamp on a file if the user \fBsmbd\fR is acting 
2748 on behalf of is not the file owner. Setting this option to  yes allows DOS semantics and smbd will change the file 
2749 timestamp as DOS requires.
2751 Default: \fBdos filetimes = no\fR
2753 \fBencrypt passwords (G)\fR
2754 This boolean controls whether encrypted passwords 
2755 will be negotiated with the client. Note that Windows NT 4.0 SP3 and 
2756 above and also Windows 98 will by default expect encrypted passwords 
2757 unless a registry entry is changed. To use encrypted passwords in 
2758 Samba see the file ENCRYPTION.txt in the Samba documentation 
2759 directory \fIdocs/\fR shipped with the source code.
2761 In order for encrypted passwords to work correctly
2762 \fBsmbd(8)\fR must either 
2763 have access to a local \fIsmbpasswd(5)
2764 \fR program for information on how to set up 
2765 and maintain this file), or set the security = [server|domain] parameter which 
2766 causes \fBsmbd\fR to authenticate against another 
2767 server.
2769 Default: \fBencrypt passwords = no\fR
2771 \fBenhanced browsing (G)\fR
2772 This option enables a couple of enhancements to 
2773 cross-subnet browse propagation that have been added in Samba 
2774 but which are not standard in Microsoft implementations. 
2776 The first enhancement to browse propagation consists of a regular
2777 wildcard query to a Samba WINS server for all Domain Master Browsers,
2778 followed by a browse synchronization with each of the returned
2779 DMBs. The second enhancement consists of a regular randomised browse
2780 synchronization with all currently known DMBs.
2782 You may wish to disable this option if you have a problem with empty
2783 workgroups not disappearing from browse lists. Due to the restrictions
2784 of the browse protocols these enhancements can cause a empty workgroup
2785 to stay around forever which can be annoying.
2787 In general you should leave this option enabled as it makes
2788 cross-subnet browse propagation much more reliable.
2790 Default: \fBenhanced browsing = yes\fR
2792 \fBenumports command (G)\fR
2793 The concept of a "port" is fairly foreign
2794 to UNIX hosts. Under Windows NT/2000 print servers, a port
2795 is associated with a port monitor and generally takes the form of
2796 a local port (i.e. LPT1:, COM1:, FILE:) or a remote port
2797 (i.e. LPD Port Monitor, etc...). By default, Samba has only one
2798 port defined--"Samba Printer Port". Under 
2799 Windows NT/2000, all printers must have a valid port name. 
2800 If you wish to have a list of ports displayed (\fBsmbd
2801 \fRdoes not use a port name for anything) other than 
2802 the default "Samba Printer Port", you 
2803 can define \fIenumports command\fR to point to
2804 a program which should generate a list of ports, one per line,
2805 to standard output. This listing will then be used in response
2806 to the level 1 and 2 EnumPorts() RPC.
2808 Default: \fBno enumports command\fR
2810 Example: \fBenumports command = /usr/bin/listports
2811 \fR.TP
2812 \fBexec (S)\fR
2813 This is a synonym for  \fIpreexec\fR.
2815 \fBfake directory create times (S)\fR
2816 NTFS and Windows VFAT file systems keep a create 
2817 time for all files and directories. This is not the same as the 
2818 ctime - status change time - that Unix keeps, so Samba by default 
2819 reports the earliest of the various times Unix does keep. Setting 
2820 this parameter for a share causes Samba to always report midnight 
2821 1-1-1980 as the create time for directories.
2823 This option is mainly used as a compatibility option for 
2824 Visual C++ when used against Samba shares. Visual C++ generated 
2825 makefiles have the object directory as a dependency for each object 
2826 file, and a make rule to create the directory. Also, when NMAKE 
2827 compares timestamps it uses the creation time when examining a 
2828 directory. Thus the object directory will be created if it does not 
2829 exist, but once it does exist it will always have an earlier 
2830 timestamp than the object files it contains.
2832 However, Unix time semantics mean that the create time 
2833 reported by Samba will be updated whenever a file is created or 
2834 or deleted in the directory. NMAKE finds all object files in 
2835 the object directory. The timestamp of the last one built is then 
2836 compared to the timestamp of the object directory. If the 
2837 directory's timestamp if newer, then all object files
2838 will be rebuilt. Enabling this option 
2839 ensures directories always predate their contents and an NMAKE build 
2840 will proceed as expected.
2842 Default: \fBfake directory create times = no\fR
2844 \fBfake oplocks (S)\fR
2845 Oplocks are the way that SMB clients get permission 
2846 from a server to locally cache file operations. If a server grants 
2847 an oplock (opportunistic lock) then the client is free to assume 
2848 that it is the only one accessing the file and it will aggressively 
2849 cache file data. With some oplock types the client may even cache 
2850 file open/close operations. This can give enormous performance benefits.
2852 When you set \fBfake oplocks = yes\fR, \fBsmbd(8)\fR will
2853 always grant oplock requests no matter how many clients are using 
2854 the file.
2856 It is generally much better to use the real \fIoplocks\fR support rather 
2857 than this parameter.
2859 If you enable this option on all read-only shares or 
2860 shares that you know will only be accessed from one client at a 
2861 time such as physically read-only media like CDROMs, you will see 
2862 a big performance improvement on many operations. If you enable 
2863 this option on shares where multiple clients may be accessing the 
2864 files read-write at the same time you can get data corruption. Use 
2865 this option carefully!
2867 Default: \fBfake oplocks = no\fR
2869 \fBfollow symlinks (S)\fR
2870 This parameter allows the Samba administrator 
2871 to stop \fBsmbd(8)\fR 
2872 from following symbolic links in a particular share. Setting this 
2873 parameter to no prevents any file or directory 
2874 that is a symbolic link from being followed (the user will get an 
2875 error). This option is very useful to stop users from adding a 
2876 symbolic link to \fI/etc/passwd\fR in their home 
2877 directory for instance. However it will slow filename lookups 
2878 down slightly.
2880 This option is enabled (i.e. \fBsmbd\fR will 
2881 follow symbolic links) by default.
2883 Default: \fBfollow symlinks = yes\fR
2885 \fBforce create mode (S)\fR
2886 This parameter specifies a set of UNIX mode bit 
2887 permissions that will \fBalways\fR be set on a 
2888 file created by Samba. This is done by bitwise 'OR'ing these bits onto 
2889 the mode bits of a file that is being created or having its 
2890 permissions changed. The default for this parameter is (in octal) 
2891 000. The modes in this parameter are bitwise 'OR'ed onto the file 
2892 mode after the mask set in the \fIcreate mask\fR 
2893 parameter is applied.
2895 See also the parameter \fIcreate 
2896 mask\fR for details on masking mode bits on files.
2898 See also the \fIinherit 
2899 permissions\fR parameter.
2901 Default: \fBforce create mode = 000\fR
2903 Example: \fBforce create mode = 0755\fR
2905 would force all created files to have read and execute 
2906 permissions set for 'group' and 'other' as well as the 
2907 read/write/execute bits set for the 'user'.
2909 \fBforce directory mode (S)\fR
2910 This parameter specifies a set of UNIX mode bit 
2911 permissions that will \fBalways\fR be set on a directory 
2912 created by Samba. This is done by bitwise 'OR'ing these bits onto the 
2913 mode bits of a directory that is being created. The default for this 
2914 parameter is (in octal) 0000 which will not add any extra permission 
2915 bits to a created directory. This operation is done after the mode 
2916 mask in the parameter \fIdirectory mask\fR is 
2917 applied.
2919 See also the parameter \fI directory mask\fR for details on masking mode bits 
2920 on created directories.
2922 See also the \fI inherit permissions\fR parameter.
2924 Default: \fBforce directory mode = 000\fR
2926 Example: \fBforce directory mode = 0755\fR
2928 would force all created directories to have read and execute
2929 permissions set for 'group' and 'other' as well as the
2930 read/write/execute bits set for the 'user'.
2932 \fBforce directory\fR
2933 This parameter controls what UNIX permission bits 
2934 can be modified when a Windows NT client is manipulating the UNIX 
2935 permission on a directory using the native NT security dialog box.
2937 This parameter is applied as a mask (OR'ed with) to the 
2938 changed permission bits, thus forcing any bits in this mask that 
2939 the user may have modified to be on. Essentially, one bits in this 
2940 mask may be treated as a set of bits that, when modifying security 
2941 on a directory, the user has always set to be 'on'.
2943 If not set explicitly this parameter is 000, which 
2944 allows a user to modify all the user/group/world permissions on a 
2945 directory without restrictions.
2947 \fBNote\fR that users who can access the 
2948 Samba server through other means can easily bypass this restriction, 
2949 so it is primarily useful for standalone "appliance" systems. 
2950 Administrators of most normal systems will probably want to leave
2951 it set as 0000.
2953 See also the \fI directory security mask\fR,  \fIsecurity mask\fR, 
2954 \fIforce security mode
2955 \fRparameters.
2957 Default: \fBforce directory security mode = 0\fR
2959 Example: \fBforce directory security mode = 700\fR
2961 \fBforce group (S)\fR
2962 This specifies a UNIX group name that will be 
2963 assigned as the default primary group for all users connecting 
2964 to this service. This is useful for sharing files by ensuring 
2965 that all access to files on service will use the named group for 
2966 their permissions checking. Thus, by assigning permissions for this 
2967 group to the files and directories within this service the Samba 
2968 administrator can restrict or allow sharing of these files.
2970 In Samba 2.0.5 and above this parameter has extended 
2971 functionality in the following way. If the group name listed here 
2972 has a '+' character prepended to it then the current user accessing 
2973 the share only has the primary group default assigned to this group 
2974 if they are already assigned as a member of that group. This allows 
2975 an administrator to decide that only users who are already in a 
2976 particular group will create files with group ownership set to that 
2977 group. This gives a finer granularity of ownership assignment. For 
2978 example, the setting \fIforce group = +sys\fR means 
2979 that only users who are already in group sys will have their default
2980 primary group assigned to sys when accessing this Samba share. All
2981 other users will retain their ordinary primary group.
2983 If the \fIforce user
2984 \fRparameter is also set the group specified in 
2985 \fIforce group\fR will override the primary group
2986 set in \fIforce user\fR.
2988 See also \fIforce 
2989 user\fR.
2991 Default: \fBno forced group\fR
2993 Example: \fBforce group = agroup\fR
2995 \fBforce security mode (S)\fR
2996 This parameter controls what UNIX permission 
2997 bits can be modified when a Windows NT client is manipulating 
2998 the UNIX permission on a file using the native NT security dialog 
2999 box.
3001 This parameter is applied as a mask (OR'ed with) to the 
3002 changed permission bits, thus forcing any bits in this mask that 
3003 the user may have modified to be on. Essentially, one bits in this 
3004 mask may be treated as a set of bits that, when modifying security 
3005 on a file, the user has always set to be 'on'.
3007 If not set explicitly this parameter is set to 0,
3008 and allows a user to modify all the user/group/world permissions on a file,
3009 with no restrictions.
3011 \fBNote\fR that users who can access 
3012 the Samba server through other means can easily bypass this restriction, 
3013 so it is primarily useful for standalone "appliance" systems. 
3014 Administrators of most normal systems will probably want to leave
3015 this set to 0000.
3017 See also the \fI force directory security mode\fR,
3018 \fIdirectory security
3019 mask\fR, \fI security mask\fR parameters.
3021 Default: \fBforce security mode = 0\fR
3023 Example: \fBforce security mode = 700\fR
3025 \fBforce unknown acl user (S)\fR
3026 If this parameter is set, a Windows NT ACL that contains
3027 an unknown SID (security descriptor, or representation of a user or group id)
3028 as the owner or group owner of the file will be silently mapped into the
3029 current UNIX uid or gid of the currently connected user.
3031 This is designed to allow Windows NT clients to copy files and
3032 folders containing ACLs that were created locally on the client machine
3033 and contain users local to that machine only (no domain users) to be
3034 copied to a Samba server (usually with XCOPY /O) and have the unknown
3035 userid and groupid of the file owner map to the current connected user.
3036 This can only be fixed correctly when winbindd allows arbitrary mapping
3037 from any Windows NT SID to a UNIX uid or gid.
3039 Try using this parameter when XCOPY /O gives an ACCESS_DENIED error.
3041 See also \fIforce group
3043 Default: \fBFalse\fR
3045 Example: \fBforce unknown acl user = yes\fR
3047 \fBforce user (S)\fR
3048 This specifies a UNIX user name that will be 
3049 assigned as the default user for all users connecting to this service. 
3050 This is useful for sharing files. You should also use it carefully 
3051 as using it incorrectly can cause security problems.
3053 This user name only gets used once a connection is established. 
3054 Thus clients still need to connect as a valid user and supply a 
3055 valid password. Once connected, all file operations will be performed 
3056 as the "forced user", no matter what username the client connected 
3057 as. This can be very useful.
3059 In Samba 2.0.5 and above this parameter also causes the 
3060 primary group of the forced user to be used as the primary group 
3061 for all file activity. Prior to 2.0.5 the primary group was left 
3062 as the primary group of the connecting user (this was a bug).
3064 See also \fIforce group
3066 Default: \fBno forced user\fR
3068 Example: \fBforce user = auser\fR
3070 \fBfstype (S)\fR
3071 This parameter allows the administrator to 
3072 configure the string that specifies the type of filesystem a share 
3073 is using that is reported by \fBsmbd(8)
3074 \fR when a client queries the filesystem type
3075 for a share. The default type is NTFS for 
3076 compatibility with Windows NT but this can be changed to other 
3077 strings such as Samba or FAT
3078 if required.
3080 Default: \fBfstype = NTFS\fR
3082 Example: \fBfstype = Samba\fR
3084 \fBgetwd cache (G)\fR
3085 This is a tuning option. When this is enabled a 
3086 caching algorithm will be used to reduce the time taken for getwd() 
3087 calls. This can have a significant impact on performance, especially 
3088 when the \fIwide links\fR
3089 parameter is set to no.
3091 Default: \fBgetwd cache = yes\fR
3093 \fBgroup (S)\fR
3094 Synonym for \fIforce 
3095 group\fR.
3097 \fBguest account (S)\fR
3098 This is a username which will be used for access 
3099 to services which are specified as \fI guest ok\fR (see below). Whatever privileges this 
3100 user has will be available to any client connecting to the guest service. 
3101 Typically this user will exist in the password file, but will not
3102 have a valid login. The user account "ftp" is often a good choice 
3103 for this parameter. If a username is specified in a given service, 
3104 the specified username overrides this one.
3106 One some systems the default guest account "nobody" may not 
3107 be able to print. Use another account in this case. You should test 
3108 this by trying to log in as your guest user (perhaps by using the 
3109 \fBsu -\fR command) and trying to print using the 
3110 system print command such as \fBlpr(1)\fR or \fB lp(1)\fR.
3112 Default: \fBspecified at compile time, usually 
3113 "nobody"\fR
3115 Example: \fBguest account = ftp\fR
3117 \fBguest ok (S)\fR
3118 If this parameter is yes for 
3119 a service, then no password is required to connect to the service. 
3120 Privileges will be those of the \fI guest account\fR.
3122 See the section below on \fI security\fR for more information about this option.
3124 Default: \fBguest ok = no\fR
3126 \fBguest only (S)\fR
3127 If this parameter is yes for 
3128 a service, then only guest connections to the service are permitted. 
3129 This parameter will have no effect if  \fIguest ok\fR is not set for the service.
3131 See the section below on \fI security\fR for more information about this option.
3133 Default: \fBguest only = no\fR
3135 \fBhide dot files (S)\fR
3136 This is a boolean parameter that controls whether 
3137 files starting with a dot appear as hidden files.
3139 Default: \fBhide dot files = yes\fR
3141 \fBhide files(S)\fR
3142 This is a list of files or directories that are not 
3143 visible but are accessible. The DOS 'hidden' attribute is applied 
3144 to any files or directories that match.
3146 Each entry in the list must be separated by a '/', 
3147 which allows spaces to be included in the entry. '*'
3148 and '?' can be used to specify multiple files or directories 
3149 as in DOS wildcards.
3151 Each entry must be a Unix path, not a DOS path and must 
3152 not include the Unix directory separator '/'.
3154 Note that the case sensitivity option is applicable 
3155 in hiding files.
3157 Setting this parameter will affect the performance of Samba, 
3158 as it will be forced to check all files and directories for a match 
3159 as they are scanned.
3161 See also \fIhide 
3162 dot files\fR, \fI veto files\fR and  \fIcase sensitive\fR.
3164 Default: \fBno file are hidden\fR
3166 Example: \fBhide files =
3167 /.*/DesktopFolderDB/TrashFor%m/resource.frk/\fR
3169 The above example is based on files that the Macintosh 
3170 SMB client (DAVE) available from  
3171 Thursby <URL:http://www.thursby.com> creates for internal use, and also still hides 
3172 all files beginning with a dot.
3174 \fBhide local users(G)\fR
3175 This parameter toggles the hiding of local UNIX 
3176 users (root, wheel, floppy, etc) from remote clients.
3178 Default: \fBhide local users = no\fR
3180 \fBhide unreadable (S)\fR
3181 This parameter prevents clients from seeing the
3182 existance of files that cannot be read. Defaults to off.
3184 Default: \fBhide unreadable = no\fR
3186 \fBhomedir map (G)\fR
3187 If\fInis homedir
3188 \fRis yes, and \fBsmbd(8)\fR is also acting 
3189 as a Win95/98 \fIlogon server\fR then this parameter 
3190 specifies the NIS (or YP) map from which the server for the user's 
3191 home directory should be extracted. At present, only the Sun 
3192 auto.home map format is understood. The form of the map is:
3194 \fBusername server:/some/file/system\fR
3196 and the program will extract the servername from before 
3197 the first ':'. There should probably be a better parsing system 
3198 that copes with different map formats and also Amd (another 
3199 automounter) maps.
3201 \fBNOTE :\fRA working NIS client is required on 
3202 the system for this option to work.
3204 See also \fInis homedir\fR
3205 , \fIdomain logons\fR
3208 Default: \fBhomedir map = <empty string>\fR
3210 Example: \fBhomedir map = amd.homedir\fR
3212 \fBhost msdfs (G)\fR
3213 This boolean parameter is only available 
3214 if Samba has been configured and compiled with the \fB --with-msdfs\fR option. If set to yes, 
3215 Samba will act as a Dfs server, and allow Dfs-aware clients 
3216 to browse Dfs trees hosted on the server.
3218 See also the \fI msdfs root\fR share level parameter. For
3219 more information on setting up a Dfs tree on Samba,
3220 refer to msdfs_setup.html
3222 Default: \fBhost msdfs = no\fR
3224 \fBhosts allow (S)\fR
3225 A synonym for this parameter is \fIallow 
3226 hosts\fR.
3228 This parameter is a comma, space, or tab delimited 
3229 set of hosts which are permitted to access a service.
3231 If specified in the [global] section then it will
3232 apply to all services, regardless of whether the individual 
3233 service has a different setting.
3235 You can specify the hosts by name or IP number. For 
3236 example, you could restrict access to only the hosts on a 
3237 Class C subnet with something like \fBallow hosts = 150.203.5.
3238 \fR\&. The full syntax of the list is described in the man 
3239 page \fIhosts_access(5)\fR. Note that this man
3240 page may not be present on your system, so a brief description will
3241 be given here also.
3243 Note that the localhost address 127.0.0.1 will always 
3244 be allowed access unless specifically denied by a \fIhosts deny\fR option.
3246 You can also specify hosts by network/netmask pairs and 
3247 by netgroup names if your system supports netgroups. The 
3248 \fBEXCEPT\fR keyword can also be used to limit a 
3249 wildcard list. The following examples may provide some help:
3251 Example 1: allow all IPs in 150.203.*.*; except one
3253 \fBhosts allow = 150.203. EXCEPT 150.203.6.66\fR
3255 Example 2: allow hosts that match the given network/netmask
3257 \fBhosts allow = 150.203.15.0/255.255.255.0\fR
3259 Example 3: allow a couple of hosts
3261 \fBhosts allow = lapland, arvidsjaur\fR
3263 Example 4: allow only hosts in NIS netgroup "foonet", but 
3264 deny access from one particular host
3266 \fBhosts allow = @foonet\fR
3268 \fBhosts deny = pirate\fR
3270 Note that access still requires suitable user-level passwords.
3272 See \fBtestparm(1)\fR
3273  for a way of testing your host access to see if it does 
3274 what you expect.
3276 Default: \fBnone (i.e., all hosts permitted access)
3278 Example: \fBallow hosts = 150.203.5. myhost.mynet.edu.au
3279 \fR.TP
3280 \fBhosts deny (S)\fR
3281 The opposite of \fIhosts allow\fR 
3282 - hosts listed here are \fBNOT\fR permitted access to 
3283 services unless the specific services have their own lists to override 
3284 this one. Where the lists conflict, the \fIallow\fR 
3285 list takes precedence.
3287 Default: \fBnone (i.e., no hosts specifically excluded)
3289 Example: \fBhosts deny = 150.203.4. badhost.mynet.edu.au
3290 \fR.TP
3291 \fBhosts equiv (G)\fR
3292 If this global parameter is a non-null string, 
3293 it specifies the name of a file to read for the names of hosts 
3294 and users who will be allowed access without specifying a password.
3296 This is not be confused with  \fIhosts allow\fR which is about hosts 
3297 access to services and is more useful for guest services. \fI hosts equiv\fR may be useful for NT clients which will 
3298 not supply passwords to Samba.
3300 \fBNOTE :\fR The use of \fIhosts equiv
3301 \fRcan be a major security hole. This is because you are 
3302 trusting the PC to supply the correct username. It is very easy to 
3303 get a PC to supply a false username. I recommend that the 
3304 \fIhosts equiv\fR option be only used if you really 
3305 know what you are doing, or perhaps on a home network where you trust 
3306 your spouse and kids. And only if you \fBreally\fR trust 
3307 them :-).
3309 Default: \fBno host equivalences\fR
3311 Example: \fBhosts equiv = /etc/hosts.equiv\fR
3313 \fBinclude (G)\fR
3314 This allows you to include one config file 
3315 inside another. The file is included literally, as though typed 
3316 in place.
3318 It takes the standard substitutions, except \fI%u
3319 \fR, \fI%P\fR and \fI%S\fR.
3321 Default: \fBno file included\fR
3323 Example: \fBinclude = /usr/local/samba/lib/admin_smb.conf
3324 \fR.TP
3325 \fBinherit acls (S)\fR
3326 This parameter can be used to ensure
3327 that if default acls exist on parent directories,
3328 they are always honored when creating a subdirectory.
3329 The default behavior is to use the mode specified
3330 when creating the directory. Enabling this option
3331 sets the mode to 0777, thus guaranteeing that 
3332 default directory acls are propagated.
3334 Default: \fBinherit acls = no\fR
3336 \fBinherit permissions (S)\fR
3337 The permissions on new files and directories 
3338 are normally governed by \fI create mask\fR,  \fIdirectory mask\fR, \fIforce create mode\fR
3339 and \fIforce 
3340 directory mode\fR but the boolean inherit 
3341 permissions parameter overrides this.
3343 New directories inherit the mode of the parent directory,
3344 including bits such as setgid.
3346 New files inherit their read/write bits from the parent 
3347 directory. Their execute bits continue to be determined by
3348 \fImap archive\fR
3349 , \fImap hidden\fR
3350 and \fImap system\fR
3351 as usual.
3353 Note that the setuid bit is \fBnever\fR set via 
3354 inheritance (the code explicitly prohibits this).
3356 This can be particularly useful on large systems with 
3357 many users, perhaps several thousand, to allow a single [homes] 
3358 share to be used flexibly by each user.
3360 See also \fIcreate mask
3361 \fR, \fI directory mask\fR,  \fIforce create mode\fR and \fIforce directory mode\fR
3364 Default: \fBinherit permissions = no\fR
3366 \fBinterfaces (G)\fR
3367 This option allows you to override the default 
3368 network interfaces list that Samba will use for browsing, name 
3369 registration and other NBT traffic. By default Samba will query 
3370 the kernel for the list of all active interfaces and use any 
3371 interfaces except 127.0.0.1 that are broadcast capable.
3373 The option takes a list of interface strings. Each string 
3374 can be in any of the following forms:
3376 .TP 0.2i
3377 \(bu
3378 a network interface name (such as eth0). 
3379 This may include shell-like wildcards so eth* will match 
3380 any interface starting with the substring "eth"
3381 .TP 0.2i
3382 \(bu
3383 an IP address. In this case the netmask is 
3384 determined from the list of interfaces obtained from the 
3385 kernel
3386 .TP 0.2i
3387 \(bu
3388 an IP/mask pair. 
3389 .TP 0.2i
3390 \(bu
3391 a broadcast/mask pair.
3394 The "mask" parameters can either be a bit length (such 
3395 as 24 for a C class network) or a full netmask in dotted 
3396 decimal form.
3399 The "IP" parameters above can either be a full dotted 
3400 decimal IP address or a hostname which will be looked up via 
3401 the OS's normal hostname resolution mechanisms.
3404 For example, the following line:
3407 \fBinterfaces = eth0 192.168.2.10/24 192.168.3.10/255.255.255.0
3408 \fR.PP
3410 would configure three network interfaces corresponding 
3411 to the eth0 device and IP addresses 192.168.2.10 and 192.168.3.10. 
3412 The netmasks of the latter two interfaces would be set to 255.255.255.0.
3415 See also \fIbind 
3416 interfaces only\fR.
3419 Default: \fBall active interfaces except 127.0.0.1 
3420 that are broadcast capable\fR
3423 \fBinvalid users (S)\fR
3424 This is a list of users that should not be allowed 
3425 to login to this service. This is really a \fBparanoid\fR 
3426 check to absolutely ensure an improper setting does not breach 
3427 your security.
3429 A name starting with a '@' is interpreted as an NIS 
3430 netgroup first (if your system supports NIS), and then as a UNIX 
3431 group if the name was not found in the NIS netgroup database.
3433 A name starting with '+' is interpreted only 
3434 by looking in the UNIX group database. A name starting with 
3435 \&'&' is interpreted only by looking in the NIS netgroup database 
3436 (this requires NIS to be working on your system). The characters 
3437 \&'+' and '&' may be used at the start of the name in either order 
3438 so the value \fI+&group\fR means check the 
3439 UNIX group database, followed by the NIS netgroup database, and 
3440 the value \fI&+group\fR means check the NIS
3441 netgroup database, followed by the UNIX group database (the 
3442 same as the '@' prefix).
3444 The current servicename is substituted for \fI%S\fR. 
3445 This is useful in the [homes] section.
3447 See also \fIvalid users
3448 \fR\&.
3450 Default: \fBno invalid users\fR
3452 Example: \fBinvalid users = root fred admin @wheel
3453 \fR.TP
3454 \fBkeepalive (G)\fR
3455 The value of the parameter (an integer) represents 
3456 the number of seconds between \fIkeepalive\fR 
3457 packets. If this parameter is zero, no keepalive packets will be 
3458 sent. Keepalive packets, if sent, allow the server to tell whether 
3459 a client is still present and responding.
3461 Keepalives should, in general, not be needed if the socket 
3462 being used has the SO_KEEPALIVE attribute set on it (see \fIsocket options\fR). 
3463 Basically you should only use this option if you strike difficulties.
3465 Default: \fBkeepalive = 300\fR
3467 Example: \fBkeepalive = 600\fR
3469 \fBkernel oplocks (G)\fR
3470 For UNIXes that support kernel based \fIoplocks\fR
3471 (currently only IRIX and the Linux 2.4 kernel), this parameter 
3472 allows the use of them to be turned on or off.
3474 Kernel oplocks support allows Samba \fIoplocks
3475 \fRto be broken whenever a local UNIX process or NFS operation 
3476 accesses a file that \fBsmbd(8)\fR
3477  has oplocked. This allows complete data consistency between 
3478 SMB/CIFS, NFS and local file access (and is a \fBvery\fR 
3479 cool feature :-).
3481 This parameter defaults to on, but is translated
3482 to a no-op on systems that no not have the necessary kernel support.
3483 You should never need to touch this parameter.
3485 See also the \fIoplocks\fR
3486 and \fIlevel2 oplocks
3487 \fRparameters.
3489 Default: \fBkernel oplocks = yes\fR
3491 \fBlanman auth (G)\fR
3492 This parameter determines whether or not smbd will
3493 attempt to authenticate users using the LANMAN password hash.
3494 If disabled, only clients which support NT password hashes (e.g. Windows 
3495 NT/2000 clients, smbclient, etc... but not Windows 95/98 or the MS DOS 
3496 network client) will be able to connect to the Samba host.
3498 Default : \fBlanman auth = yes\fR
3500 \fBlarge readwrite (G)\fR
3501 This parameter determines whether or not smbd
3502 supports the new 64k streaming read and write varient SMB requests introduced
3503 with Windows 2000. Note that due to Windows 2000 client redirector bugs
3504 this requires Samba to be running on a 64-bit capable operating system such
3505 as IRIX, Solaris or a Linux 2.4 kernel. Can improve performance by 10% with
3506 Windows 2000 clients. Defaults to on. Windows NT 4.0 only supports
3507 read version of this call, and ignores the write version.
3509 Default : \fBlarge readwrite = yes\fR
3511 \fBldap admin dn (G)\fR
3512 This parameter is only available if Samba has been
3513 configure to include the \fB--with-ldapsam\fR option
3514 at compile time. This option should be considered experimental and
3515 under active development.
3517 The \fIldap admin dn\fR defines the Distinguished 
3518 Name (DN) name used by Samba to contact the ldap
3519 server when retreiving user account information. The \fIldap
3520 admin dn\fR is used in conjunction with the admin dn password
3521 stored in the \fIprivate/secrets.tdb\fR file. See the
3522 \fBsmbpasswd(8)\fR man
3523 page for more information on how to accmplish this.
3525 Default : \fBnone\fR
3527 \fBldap filter (G)\fR
3528 This parameter is only available if Samba has been
3529 configure to include the \fB--with-ldapsam\fR option
3530 at compile time. This option should be considered experimental and
3531 under active development.
3533 This parameter specifies the RFC 2254 compliant LDAP search filter.
3534 The default is to match the login name with the uid 
3535 attribute for all entries matching the sambaAccount 
3536 objectclass. Note that this filter should only return one entry.
3538 Default : \fBldap filter = (&(uid=%u)(objectclass=sambaAccount))\fR
3540 \fBldap port (G)\fR
3541 This parameter is only available if Samba has been
3542 configure to include the \fB--with-ldapsam\fR option
3543 at compile time. This option should be considered experimental and
3544 under active development.
3546 This option is used to control the tcp port number used to contact
3547 the \fIldap server\fR.
3548 The default is to use the stand LDAPS port 636.
3550 See Also: ldap ssl
3552 Default : \fBldap port = 636 ; if ldap ssl = on\fR
3554 Default : \fBldap port = 389 ; if ldap ssl = off\fR
3556 \fBldap server (G)\fR
3557 This parameter is only available if Samba has been
3558 configure to include the \fB--with-ldapsam\fR option
3559 at compile time. This option should be considered experimental and
3560 under active development.
3562 This parameter should contains the FQDN of the ldap directory 
3563 server which should be queried to locate user account information.
3565 Default : \fBldap server = localhost\fR
3567 \fBldap ssl (G)\fR
3568 This parameter is only available if Samba has been
3569 configure to include the \fB--with-ldapsam\fR option
3570 at compile time. This option should be considered experimental and
3571 under active development.
3573 This option is used to define whether or not Samba should
3574 use SSL when connecting to the \fIldap
3575 server\fR. This is \fBNOT\fR related to
3576 Samba SSL support which is enabled by specifying the 
3577 \fB--with-ssl\fR option to the \fIconfigure\fR 
3578 script (see \fIssl\fR).
3580 The \fIldap ssl\fR can be set to one of three values:
3581 (a) on - Always use SSL when contacting the 
3582 \fIldap server\fR, (b) off -
3583 Never use SSL when querying the directory, or (c) start_tls 
3584 - Use the LDAPv3 StartTLS extended operation 
3585 (RFC2830) for communicating with the directory server.
3587 Default : \fBldap ssl = on\fR
3589 \fBldap suffix (G)\fR
3590 This parameter is only available if Samba has been
3591 configure to include the \fB--with-ldapsam\fR option
3592 at compile time. This option should be considered experimental and
3593 under active development.
3595 Default : \fBnone\fR
3597 \fBlevel2 oplocks (S)\fR
3598 This parameter controls whether Samba supports
3599 level2 (read-only) oplocks on a share.
3601 Level2, or read-only oplocks allow Windows NT clients 
3602 that have an oplock on a file to downgrade from a read-write oplock 
3603 to a read-only oplock once a second client opens the file (instead 
3604 of releasing all oplocks on a second open, as in traditional, 
3605 exclusive oplocks). This allows all openers of the file that 
3606 support level2 oplocks to cache the file for read-ahead only (ie. 
3607 they may not cache writes or lock requests) and increases performance 
3608 for many accesses of files that are not commonly written (such as 
3609 application .EXE files).
3611 Once one of the clients which have a read-only oplock 
3612 writes to the file all clients are notified (no reply is needed 
3613 or waited for) and told to break their oplocks to "none" and 
3614 delete any read-ahead caches.
3616 It is recommended that this parameter be turned on 
3617 to speed access to shared executables.
3619 For more discussions on level2 oplocks see the CIFS spec.
3621 Currently, if \fIkernel 
3622 oplocks\fR are supported then level2 oplocks are 
3623 not granted (even if this parameter is set to yes). 
3624 Note also, the \fIoplocks\fR
3625 parameter must be set to yes on this share in order for 
3626 this parameter to have any effect.
3628 See also the \fIoplocks\fR
3629 and \fIkernel oplocks\fR
3630 parameters.
3632 Default: \fBlevel2 oplocks = yes\fR
3634 \fBlm announce (G)\fR
3635 This parameter determines if  \fBnmbd(8)\fR will produce Lanman announce 
3636 broadcasts that are needed by OS/2 clients in order for them to see 
3637 the Samba server in their browse list. This parameter can have three 
3638 values, yes, no, or
3639 auto. The default is auto. 
3640 If set to no Samba will never produce these 
3641 broadcasts. If set to yes Samba will produce 
3642 Lanman announce broadcasts at a frequency set by the parameter 
3643 \fIlm interval\fR. If set to auto 
3644 Samba will not send Lanman announce broadcasts by default but will 
3645 listen for them. If it hears such a broadcast on the wire it will 
3646 then start sending them at a frequency set by the parameter 
3647 \fIlm interval\fR.
3649 See also \fIlm interval
3650 \fR\&.
3652 Default: \fBlm announce = auto\fR
3654 Example: \fBlm announce = yes\fR
3656 \fBlm interval (G)\fR
3657 If Samba is set to produce Lanman announce 
3658 broadcasts needed by OS/2 clients (see the  \fIlm announce\fR parameter) then this 
3659 parameter defines the frequency in seconds with which they will be 
3660 made. If this is set to zero then no Lanman announcements will be 
3661 made despite the setting of the \fIlm announce\fR 
3662 parameter.
3664 See also \fIlm 
3665 announce\fR.
3667 Default: \fBlm interval = 60\fR
3669 Example: \fBlm interval = 120\fR
3671 \fBload printers (G)\fR
3672 A boolean variable that controls whether all 
3673 printers in the printcap will be loaded for browsing by default. 
3674 See the printers section for 
3675 more details.
3677 Default: \fBload printers = yes\fR
3679 \fBlocal master (G)\fR
3680 This option allows \fB nmbd(8)\fR to try and become a local master browser 
3681 on a subnet. If set to no then \fB nmbd\fR will not attempt to become a local master browser 
3682 on a subnet and will also lose in all browsing elections. By
3683 default this value is set to yes. Setting this value to yes doesn't
3684 mean that Samba will \fBbecome\fR the local master 
3685 browser on a subnet, just that \fBnmbd\fR will \fB participate\fR in elections for local master browser.
3687 Setting this value to no will cause \fBnmbd\fR
3688 \fBnever\fR to become a local master browser.
3690 Default: \fBlocal master = yes\fR
3692 \fBlock dir (G)\fR
3693 Synonym for \fI lock directory\fR.
3695 \fBlock directory (G)\fR
3696 This option specifies the directory where lock 
3697 files will be placed. The lock files are used to implement the 
3698 \fImax connections\fR
3699 option.
3701 Default: \fBlock directory = ${prefix}/var/locks\fR
3703 Example: \fBlock directory = /var/run/samba/locks\fR
3705 \fBlock spin count (G)\fR
3706 This parameter controls the number of times
3707 that smbd should attempt to gain a byte range lock on the 
3708 behalf of a client request. Experiments have shown that
3709 Windows 2k servers do not reply with a failure if the lock
3710 could not be immediately granted, but try a few more times
3711 in case the lock could later be aquired. This behavior
3712 is used to support PC database formats such as MS Access
3713 and FoxPro.
3715 Default: \fBlock spin count = 2\fR
3717 \fBlock spin time (G)\fR
3718 The time in microseconds that smbd should 
3719 pause before attempting to gain a failed lock. See
3720 \fIlock spin 
3721 count\fR for more details.
3723 Default: \fBlock spin time = 10\fR
3725 \fBlocking (S)\fR
3726 This controls whether or not locking will be 
3727 performed by the server in response to lock requests from the 
3728 client.
3730 If \fBlocking = no\fR, all lock and unlock 
3731 requests will appear to succeed and all lock queries will report 
3732 that the file in question is available for locking.
3734 If \fBlocking = yes\fR, real locking will be performed 
3735 by the server.
3737 This option \fBmay\fR be useful for read-only 
3738 filesystems which \fBmay\fR not need locking (such as 
3739 CDROM drives), although setting this parameter of no 
3740 is not really recommended even in this case.
3742 Be careful about disabling locking either globally or in a 
3743 specific service, as lack of locking may result in data corruption. 
3744 You should never need to set this parameter.
3746 Default: \fBlocking = yes\fR
3748 \fBlog file (G)\fR
3749 This option allows you to override the name 
3750 of the Samba log file (also known as the debug file).
3752 This option takes the standard substitutions, allowing 
3753 you to have separate log files for each user or machine.
3755 Example: \fBlog file = /usr/local/samba/var/log.%m
3756 \fR.TP
3757 \fBlog level (G)\fR
3758 The value of the parameter (an integer) allows 
3759 the debug level (logging level) to be specified in the 
3760 \fIsmb.conf\fR file. This is to give greater 
3761 flexibility in the configuration of the system.
3763 The default will be the log level specified on 
3764 the command line or level zero if none was specified.
3766 Example: \fBlog level = 3\fR
3768 \fBlogon drive (G)\fR
3769 This parameter specifies the local path to 
3770 which the home directory will be connected (see \fIlogon home\fR) 
3771 and is only used by NT Workstations. 
3773 Note that this option is only useful if Samba is set up as a
3774 logon server.
3776 Default: \fBlogon drive = z:\fR
3778 Example: \fBlogon drive = h:\fR
3780 \fBlogon home (G)\fR
3781 This parameter specifies the home directory 
3782 location when a Win95/98 or NT Workstation logs into a Samba PDC. 
3783 It allows you to do 
3785 C:\\> \fBNET USE H: /HOME\fR
3787 from a command prompt, for example.
3789 This option takes the standard substitutions, allowing 
3790 you to have separate logon scripts for each user or machine.
3792 This parameter can be used with Win9X workstations to ensure 
3793 that roaming profiles are stored in a subdirectory of the user's 
3794 home directory. This is done in the following way:
3796 \fBlogon home = \\\\%N\\%U\\profile\fR
3798 This tells Samba to return the above string, with 
3799 substitutions made when a client requests the info, generally 
3800 in a NetUserGetInfo request. Win9X clients truncate the info to
3801 \\\\server\\share when a user does \fBnet use /home\fR
3802 but use the whole string when dealing with profiles.
3804 Note that in prior versions of Samba, the  \fIlogon path\fR was returned rather than 
3805 \fIlogon home\fR. This broke \fBnet use 
3806 /home\fR but allowed profiles outside the home directory. 
3807 The current implementation is correct, and can be used for 
3808 profiles if you use the above trick.
3810 This option is only useful if Samba is set up as a logon 
3811 server.
3813 Default: \fBlogon home = "\\\\%N\\%U"\fR
3815 Example: \fBlogon home = "\\\\remote_smb_server\\%U"\fR
3817 \fBlogon path (G)\fR
3818 This parameter specifies the home directory 
3819 where roaming profiles (NTuser.dat etc files for Windows NT) are 
3820 stored. Contrary to previous versions of these manual pages, it has 
3821 nothing to do with Win 9X roaming profiles. To find out how to 
3822 handle roaming profiles for Win 9X system, see the  \fIlogon home\fR parameter.
3824 This option takes the standard substitutions, allowing you 
3825 to have separate logon scripts for each user or machine. It also 
3826 specifies the directory from which the "Application Data", 
3827 (\fIdesktop\fR, \fIstart menu\fR,
3828 \fInetwork neighborhood\fR, \fIprograms\fR 
3829 and other folders, and their contents, are loaded and displayed on 
3830 your Windows NT client.
3832 The share and the path must be readable by the user for 
3833 the preferences and directories to be loaded onto the Windows NT
3834 client. The share must be writeable when the user logs in for the first
3835 time, in order that the Windows NT client can create the NTuser.dat
3836 and other directories.
3838 Thereafter, the directories and any of the contents can, 
3839 if required, be made read-only. It is not advisable that the 
3840 NTuser.dat file be made read-only - rename it to NTuser.man to 
3841 achieve the desired effect (a \fBMAN\fRdatory 
3842 profile). 
3844 Windows clients can sometimes maintain a connection to 
3845 the [homes] share, even though there is no user logged in. 
3846 Therefore, it is vital that the logon path does not include a 
3847 reference to the homes share (i.e. setting this parameter to
3848 \\%N\\%U\\profile_path will cause problems).
3850 This option takes the standard substitutions, allowing 
3851 you to have separate logon scripts for each user or machine.
3853 Note that this option is only useful if Samba is set up 
3854 as a logon server.
3856 Default: \fBlogon path = \\\\%N\\%U\\profile\fR
3858 Example: \fBlogon path = \\\\PROFILESERVER\\PROFILE\\%U\fR
3860 \fBlogon script (G)\fR
3861 This parameter specifies the batch file (.bat) or 
3862 NT command file (.cmd) to be downloaded and run on a machine when 
3863 a user successfully logs in. The file must contain the DOS 
3864 style CR/LF line endings. Using a DOS-style editor to create the 
3865 file is recommended.
3867 The script must be a relative path to the [netlogon] 
3868 service. If the [netlogon] service specifies a  \fIpath\fR of \fI/usr/local/samba/netlogon
3869 \fR, and \fBlogon script = STARTUP.BAT\fR, then 
3870 the file that will be downloaded is:
3872 \fI/usr/local/samba/netlogon/STARTUP.BAT\fR
3874 The contents of the batch file are entirely your choice. A 
3875 suggested command would be to add \fBNET TIME \\\\SERVER /SET 
3876 /YES\fR, to force every machine to synchronize clocks with 
3877 the same time server. Another use would be to add \fBNET USE 
3878 U: \\\\SERVER\\UTILS\fR for commonly used utilities, or \fB NET USE Q: \\\\SERVER\\ISO9001_QA\fR for example.
3880 Note that it is particularly important not to allow write 
3881 access to the [netlogon] share, or to grant users write permission 
3882 on the batch files in a secure environment, as this would allow 
3883 the batch files to be arbitrarily modified and security to be 
3884 breached.
3886 This option takes the standard substitutions, allowing you 
3887 to have separate logon scripts for each user or machine.
3889 This option is only useful if Samba is set up as a logon 
3890 server.
3892 Default: \fBno logon script defined\fR
3894 Example: \fBlogon script = scripts\\%U.bat\fR
3896 \fBlppause command (S)\fR
3897 This parameter specifies the command to be 
3898 executed on the server host in order to stop printing or spooling 
3899 a specific print job.
3901 This command should be a program or script which takes 
3902 a printer name and job number to pause the print job. One way 
3903 of implementing this is by using job priorities, where jobs 
3904 having a too low priority won't be sent to the printer.
3906 If a \fI%p\fR is given then the printer name 
3907 is put in its place. A \fI%j\fR is replaced with 
3908 the job number (an integer). On HPUX (see \fIprinting=hpux
3909 \fR), if the \fI-p%p\fR option is added 
3910 to the lpq command, the job will show up with the correct status, i.e. 
3911 if the job priority is lower than the set fence priority it will 
3912 have the PAUSED status, whereas if the priority is equal or higher it 
3913 will have the SPOOLED or PRINTING status.
3915 Note that it is good practice to include the absolute path 
3916 in the lppause command as the PATH may not be available to the server.
3918 See also the \fIprinting
3919 \fRparameter.
3921 Default: Currently no default value is given to 
3922 this string, unless the value of the \fIprinting\fR 
3923 parameter is SYSV, in which case the default is :
3925 \fBlp -i %p-%j -H hold\fR
3927 or if the value of the \fIprinting\fR parameter 
3928 is SOFTQ, then the default is:
3930 \fBqstat -s -j%j -h\fR
3932 Example for HPUX: \fBlppause command = /usr/bin/lpalt 
3933 %p-%j -p0\fR
3935 \fBlpq cache time (G)\fR
3936 This controls how long lpq info will be cached 
3937 for to prevent the \fBlpq\fR command being called too 
3938 often. A separate cache is kept for each variation of the \fB lpq\fR command used by the system, so if you use different 
3939 \fBlpq\fR commands for different users then they won't
3940 share cache information.
3942 The cache files are stored in \fI/tmp/lpq.xxxx\fR 
3943 where xxxx is a hash of the \fBlpq\fR command in use.
3945 The default is 10 seconds, meaning that the cached results 
3946 of a previous identical \fBlpq\fR command will be used 
3947 if the cached data is less than 10 seconds old. A large value may 
3948 be advisable if your \fBlpq\fR command is very slow.
3950 A value of 0 will disable caching completely.
3952 See also the \fIprinting
3953 \fRparameter.
3955 Default: \fBlpq cache time = 10\fR
3957 Example: \fBlpq cache time = 30\fR
3959 \fBlpq command (S)\fR
3960 This parameter specifies the command to be 
3961 executed on the server host in order to obtain \fBlpq
3962 \fR-style printer status information.
3964 This command should be a program or script which 
3965 takes a printer name as its only parameter and outputs printer 
3966 status information.
3968 Currently nine styles of printer status information 
3969 are supported; BSD, AIX, LPRNG, PLP, SYSV, HPUX, QNX, CUPS, and SOFTQ. 
3970 This covers most UNIX systems. You control which type is expected 
3971 using the \fIprinting =\fR option.
3973 Some clients (notably Windows for Workgroups) may not 
3974 correctly send the connection number for the printer they are 
3975 requesting status information about. To get around this, the 
3976 server reports on the first printer service connected to by the 
3977 client. This only happens if the connection number sent is invalid.
3979 If a \fI%p\fR is given then the printer name 
3980 is put in its place. Otherwise it is placed at the end of the 
3981 command.
3983 Note that it is good practice to include the absolute path 
3984 in the \fIlpq command\fR as the \fB$PATH
3985 \fRmay not be available to the server. When compiled with
3986 the CUPS libraries, no \fIlpq command\fR is
3987 needed because smbd will make a library call to obtain the 
3988 print queue listing.
3990 See also the \fIprinting
3991 \fRparameter.
3993 Default: \fBdepends on the setting of \fI printing\fB\fR
3995 Example: \fBlpq command = /usr/bin/lpq -P%p\fR
3997 \fBlpresume command (S)\fR
3998 This parameter specifies the command to be 
3999 executed on the server host in order to restart or continue 
4000 printing or spooling a specific print job.
4002 This command should be a program or script which takes 
4003 a printer name and job number to resume the print job. See 
4004 also the \fIlppause command
4005 \fRparameter.
4007 If a \fI%p\fR is given then the printer name 
4008 is put in its place. A \fI%j\fR is replaced with 
4009 the job number (an integer).
4011 Note that it is good practice to include the absolute path 
4012 in the \fIlpresume command\fR as the PATH may not 
4013 be available to the server.
4015 See also the \fIprinting
4016 \fRparameter.
4018 Default: Currently no default value is given 
4019 to this string, unless the value of the \fIprinting\fR 
4020 parameter is SYSV, in which case the default is :
4022 \fBlp -i %p-%j -H resume\fR
4024 or if the value of the \fIprinting\fR parameter 
4025 is SOFTQ, then the default is:
4027 \fBqstat -s -j%j -r\fR
4029 Example for HPUX: \fBlpresume command = /usr/bin/lpalt 
4030 %p-%j -p2\fR
4032 \fBlprm command (S)\fR
4033 This parameter specifies the command to be 
4034 executed on the server host in order to delete a print job.
4036 This command should be a program or script which takes 
4037 a printer name and job number, and deletes the print job.
4039 If a \fI%p\fR is given then the printer name 
4040 is put in its place. A \fI%j\fR is replaced with 
4041 the job number (an integer).
4043 Note that it is good practice to include the absolute 
4044 path in the \fIlprm command\fR as the PATH may not be 
4045 available to the server.
4047 See also the \fIprinting
4048 \fRparameter.
4050 Default: \fBdepends on the setting of \fIprinting
4051 \fB\fR
4052 Example 1: \fBlprm command = /usr/bin/lprm -P%p %j
4054 Example 2: \fBlprm command = /usr/bin/cancel %p-%j
4055 \fR.TP
4056 \fBmachine password timeout (G)\fR
4057 If a Samba server is a member of a Windows 
4058 NT Domain (see the security = domain) 
4059 parameter) then periodically a running  smbd(8) process will try and change the MACHINE ACCOUNT 
4060 PASSWORD stored in the TDB called \fIprivate/secrets.tdb
4061 \fR\&. This parameter specifies how often this password 
4062 will be changed, in seconds. The default is one week (expressed in 
4063 seconds), the same as a Windows NT Domain member server.
4065 See also \fBsmbpasswd(8)
4066 \fR and the  security = domain) parameter.
4068 Default: \fBmachine password timeout = 604800\fR
4070 \fBmagic output (S)\fR
4071 This parameter specifies the name of a file 
4072 which will contain output created by a magic script (see the 
4073 \fImagic script\fR
4074 parameter below).
4076 Warning: If two clients use the same \fImagic script
4077 \fRin the same directory the output file content
4078 is undefined.
4080 Default: \fBmagic output = <magic script name>.out
4082 Example: \fBmagic output = myfile.txt\fR
4084 \fBmagic script (S)\fR
4085 This parameter specifies the name of a file which, 
4086 if opened, will be executed by the server when the file is closed. 
4087 This allows a UNIX script to be sent to the Samba host and 
4088 executed on behalf of the connected user.
4090 Scripts executed in this way will be deleted upon 
4091 completion assuming that the user has the appropriate level 
4092 of privilege and the file permissions allow the deletion.
4094 If the script generates output, output will be sent to 
4095 the file specified by the \fI magic output\fR parameter (see above).
4097 Note that some shells are unable to interpret scripts 
4098 containing CR/LF instead of CR as 
4099 the end-of-line marker. Magic scripts must be executable 
4100 \fBas is\fR on the host, which for some hosts and 
4101 some shells will require filtering at the DOS end.
4103 Magic scripts are \fBEXPERIMENTAL\fR and 
4104 should \fBNOT\fR be relied upon.
4106 Default: \fBNone. Magic scripts disabled.\fR
4108 Example: \fBmagic script = user.csh\fR
4110 \fBmangle case (S)\fR
4111 See the section on  NAME MANGLING
4113 Default: \fBmangle case = no\fR
4115 \fBmangled map (S)\fR
4116 This is for those who want to directly map UNIX 
4117 file names which cannot be represented on Windows/DOS. The mangling 
4118 of names is not always what is needed. In particular you may have 
4119 documents with file extensions that differ between DOS and UNIX. 
4120 For example, under UNIX it is common to use \fI.html\fR 
4121 for HTML files, whereas under Windows/DOS \fI.htm\fR 
4122 is more commonly used.
4124 So to map \fIhtml\fR to \fIhtm\fR 
4125 you would use:
4127 \fBmangled map = (*.html *.htm)\fR
4129 One very useful case is to remove the annoying \fI;1
4130 \fRoff the ends of filenames on some CDROMs (only visible 
4131 under some UNIXes). To do this use a map of (*;1 *;).
4133 Default: \fBno mangled map\fR
4135 Example: \fBmangled map = (*;1 *;)\fR
4137 \fBmangled names (S)\fR
4138 This controls whether non-DOS names under UNIX 
4139 should be mapped to DOS-compatible names ("mangled") and made visible, 
4140 or whether non-DOS names should simply be ignored.
4142 See the section on  NAME MANGLING for details on how to control the mangling process.
4144 If mangling algorithm "hash" is used then the mangling algorithm is as follows:
4146 .TP 0.2i
4147 \(bu
4148 The first (up to) five alphanumeric characters 
4149 before the rightmost dot of the filename are preserved, forced 
4150 to upper case, and appear as the first (up to) five characters 
4151 of the mangled name.
4152 .TP 0.2i
4153 \(bu
4154 A tilde "~" is appended to the first part of the mangled
4155 name, followed by a two-character unique sequence, based on the
4156 original root name (i.e., the original filename minus its final
4157 extension). The final extension is included in the hash calculation
4158 only if it contains any upper case characters or is longer than three
4159 characters.
4161 Note that the character to use may be specified using 
4162 the \fImangling char\fR
4163 option, if you don't like '~'.
4164 .TP 0.2i
4165 \(bu
4166 The first three alphanumeric characters of the final 
4167 extension are preserved, forced to upper case and appear as the 
4168 extension of the mangled name. The final extension is defined as that 
4169 part of the original filename after the rightmost dot. If there are no 
4170 dots in the filename, the mangled name will have no extension (except 
4171 in the case of "hidden files" - see below).
4172 .TP 0.2i
4173 \(bu
4174 Files whose UNIX name begins with a dot will be 
4175 presented as DOS hidden files. The mangled name will be created as 
4176 for other filenames, but with the leading dot removed and "___" as 
4177 its extension regardless of actual original extension (that's three 
4178 underscores).
4181 The two-digit hash value consists of upper case 
4182 alphanumeric characters.
4185 This algorithm can cause name collisions only if files 
4186 in a directory share the same first five alphanumeric characters. 
4187 The probability of such a clash is 1/1300.
4190 If mangling algorithm "hash2" is used then the mangling algorithm is as follows:
4193 .TP 0.2i
4194 \(bu
4195 The first alphanumeric character 
4196 before the rightmost dot of the filename is preserved, forced 
4197 to upper case, and appears as the first character of the mangled name.
4198 .TP 0.2i
4199 \(bu
4200 A base63 hash of 5 characters is generated and the
4201 first 4 characters of that hash are appended to the first character.
4202 .TP 0.2i
4203 \(bu
4204 A tilde "~" is appended to the first part of the mangled
4205 name, followed by the final character of the base36 hash of the name.
4207 Note that the character to use may be specified using 
4208 the \fImangling char\fR
4209 option, if you don't like '~'.
4210 .TP 0.2i
4211 \(bu
4212 The first three alphanumeric characters of the final 
4213 extension are preserved, forced to upper case and appear as the 
4214 extension of the mangled name. The final extension is defined as that 
4215 part of the original filename after the rightmost dot. If there are no 
4216 dots in the filename, the mangled name will have no extension (except 
4217 in the case of "hidden files" - see below).
4218 .TP 0.2i
4219 \(bu
4220 Files whose UNIX name begins with a dot will be 
4221 presented as DOS hidden files. The mangled name will be created as 
4222 for other filenames, but with the leading dot removed and "___" as 
4223 its extension regardless of actual original extension (that's three 
4224 underscores).
4227 The name mangling (if enabled) allows a file to be 
4228 copied between UNIX directories from Windows/DOS while retaining 
4229 the long UNIX filename. UNIX files can be renamed to a new extension 
4230 from Windows/DOS and will retain the same basename. Mangled names 
4231 do not change between sessions.
4234 Default: \fBmangled names = yes\fR
4237 \fBmangled stack (G)\fR
4238 This parameter controls the number of mangled names 
4239 that should be cached in the Samba server  smbd(8)
4241 This stack is a list of recently mangled base names 
4242 (extensions are only maintained if they are longer than 3 characters 
4243 or contains upper case characters).
4245 The larger this value, the more likely it is that mangled 
4246 names can be successfully converted to correct long UNIX names. 
4247 However, large stack sizes will slow most directory accesses. Smaller 
4248 stacks save memory in the server (each stack element costs 256 bytes).
4250 It is not possible to absolutely guarantee correct long 
4251 filenames, so be prepared for some surprises!
4253 Default: \fBmangled stack = 50\fR
4255 Example: \fBmangled stack = 100\fR
4257 \fBmangling char (S)\fR
4258 This controls what character is used as 
4259 the \fBmagic\fR character in name mangling. The default is a '~'
4260 but this may interfere with some software. Use this option to set 
4261 it to whatever you prefer.
4263 Default: \fBmangling char = ~\fR
4265 Example: \fBmangling char = ^\fR
4267 \fBmangling mathod(G)\fR
4268 controls the algorithm used for the generating
4269 the mangled names. Can take two different values, "hash" and
4270 "hash2". "hash" is the default and is the algorithm that has been
4271 used in Samba for many years. "hash2" is a newer and considered
4272 a better algorithm (generates less collisions) in the names.
4273 However, many Win32 applications store the mangled names and so
4274 changing to the new algorithm must not be done
4275 lightly as these applications may break unless reinstalled.
4276 New installations of Samba may set the default to hash2.
4278 Default: \fBmangling method = hash\fR
4280 Example: \fBmangling method = hash2\fR
4282 \fBmap archive (S)\fR
4283 This controls whether the DOS archive attribute 
4284 should be mapped to the UNIX owner execute bit. The DOS archive bit 
4285 is set when a file has been modified since its last backup. One 
4286 motivation for this option it to keep Samba/your PC from making 
4287 any file it touches from becoming executable under UNIX. This can 
4288 be quite annoying for shared source code, documents, etc...
4290 Note that this requires the \fIcreate mask\fR
4291 parameter to be set such that owner execute bit is not masked out 
4292 (i.e. it must include 100). See the parameter  \fIcreate mask\fR for details.
4294 Default: \fBmap archive = yes\fR
4296 \fBmap hidden (S)\fR
4297 This controls whether DOS style hidden files 
4298 should be mapped to the UNIX world execute bit.
4300 Note that this requires the \fIcreate mask\fR 
4301 to be set such that the world execute bit is not masked out (i.e. 
4302 it must include 001). See the parameter  \fIcreate mask\fR for details.
4304 Default: \fBmap hidden = no\fR
4306 \fBmap system (S)\fR
4307 This controls whether DOS style system files 
4308 should be mapped to the UNIX group execute bit.
4310 Note that this requires the \fIcreate mask\fR 
4311 to be set such that the group execute bit is not masked out (i.e. 
4312 it must include 010). See the parameter  \fIcreate mask\fR for details.
4314 Default: \fBmap system = no\fR
4316 \fBmap to guest (G)\fR
4317 This parameter is only useful in  security modes other than \fIsecurity = share\fR 
4318 - i.e. user, server, 
4319 and domain.
4321 This parameter can take three different values, which tell
4322 smbd(8) what to do with user 
4323 login requests that don't match a valid UNIX user in some way.
4325 The three settings are :
4327 .TP 0.2i
4328 \(bu
4329 Never - Means user login 
4330 requests with an invalid password are rejected. This is the 
4331 default.
4332 .TP 0.2i
4333 \(bu
4334 Bad User - Means user
4335 logins with an invalid password are rejected, unless the username 
4336 does not exist, in which case it is treated as a guest login and 
4337 mapped into the \fI guest account\fR.
4338 .TP 0.2i
4339 \(bu
4340 Bad Password - Means user logins 
4341 with an invalid password are treated as a guest login and mapped 
4342 into the guest account. Note that 
4343 this can cause problems as it means that any user incorrectly typing 
4344 their password will be silently logged on as "guest" - and 
4345 will not know the reason they cannot access files they think
4346 they should - there will have been no message given to them
4347 that they got their password wrong. Helpdesk services will
4348 \fBhate\fR you if you set the \fImap to 
4349 guest\fR parameter this way :-).
4352 Note that this parameter is needed to set up "Guest" 
4353 share services when using \fIsecurity\fR modes other than 
4354 share. This is because in these modes the name of the resource being
4355 requested is \fBnot\fR sent to the server until after 
4356 the server has successfully authenticated the client so the server 
4357 cannot make authentication decisions at the correct time (connection 
4358 to the share) for "Guest" shares.
4361 For people familiar with the older Samba releases, this 
4362 parameter maps to the old compile-time setting of the  GUEST_SESSSETUP value in local.h.
4365 Default: \fBmap to guest = Never\fR
4368 Example: \fBmap to guest = Bad User\fR
4371 \fBmax connections (S)\fR
4372 This option allows the number of simultaneous 
4373 connections to a service to be limited. If \fImax connections
4374 \fRis greater than 0 then connections will be refused if 
4375 this number of connections to the service are already open. A value 
4376 of zero mean an unlimited number of connections may be made.
4378 Record lock files are used to implement this feature. The 
4379 lock files will be stored in the directory specified by the \fIlock directory\fR 
4380 option.
4382 Default: \fBmax connections = 0\fR
4384 Example: \fBmax connections = 10\fR
4386 \fBmax disk size (G)\fR
4387 This option allows you to put an upper limit 
4388 on the apparent size of disks. If you set this option to 100 
4389 then all shares will appear to be not larger than 100 MB in 
4390 size.
4392 Note that this option does not limit the amount of 
4393 data you can put on the disk. In the above case you could still 
4394 store much more than 100 MB on the disk, but if a client ever asks 
4395 for the amount of free disk space or the total disk size then the 
4396 result will be bounded by the amount specified in \fImax 
4397 disk size\fR.
4399 This option is primarily useful to work around bugs 
4400 in some pieces of software that can't handle very large disks, 
4401 particularly disks over 1GB in size.
4403 A \fImax disk size\fR of 0 means no limit.
4405 Default: \fBmax disk size = 0\fR
4407 Example: \fBmax disk size = 1000\fR
4409 \fBmax log size (G)\fR
4410 This option (an integer in kilobytes) specifies 
4411 the max size the log file should grow to. Samba periodically checks 
4412 the size and if it is exceeded it will rename the file, adding 
4413 a \fI.old\fR extension.
4415 A size of 0 means no limit.
4417 Default: \fBmax log size = 5000\fR
4419 Example: \fBmax log size = 1000\fR
4421 \fBmax mux (G)\fR
4422 This option controls the maximum number of 
4423 outstanding simultaneous SMB operations that Samba tells the client 
4424 it will allow. You should never need to set this parameter.
4426 Default: \fBmax mux = 50\fR
4428 \fBmax open files (G)\fR
4429 This parameter limits the maximum number of 
4430 open files that one smbd(8) file 
4431 serving process may have open for a client at any one time. The 
4432 default for this parameter is set very high (10,000) as Samba uses 
4433 only one bit per unopened file.
4435 The limit of the number of open files is usually set 
4436 by the UNIX per-process file descriptor limit rather than 
4437 this parameter so you should never need to touch this parameter.
4439 Default: \fBmax open files = 10000\fR
4441 \fBmax print jobs (S)\fR
4442 This parameter limits the maximum number of 
4443 jobs allowable in a Samba printer queue at any given moment.
4444 If this number is exceeded, \fB smbd(8)\fR will remote "Out of Space" to the client.
4445 See all \fItotal
4446 print jobs\fR.
4448 Default: \fBmax print jobs = 1000\fR
4450 Example: \fBmax print jobs = 5000\fR
4452 \fBmax protocol (G)\fR
4453 The value of the parameter (a string) is the highest 
4454 protocol level that will be supported by the server.
4456 Possible values are :
4458 .TP 0.2i
4459 \(bu
4460 CORE: Earliest version. No 
4461 concept of user names.
4462 .TP 0.2i
4463 \(bu
4464 COREPLUS: Slight improvements on 
4465 CORE for efficiency.
4466 .TP 0.2i
4467 \(bu
4468 LANMAN1: First \fB modern\fR version of the protocol. Long filename
4469 support.
4470 .TP 0.2i
4471 \(bu
4472 LANMAN2: Updates to Lanman1 protocol.
4473 .TP 0.2i
4474 \(bu
4475 NT1: Current up to date version of 
4476 the protocol. Used by Windows NT. Known as CIFS.
4479 Normally this option should not be set as the automatic 
4480 negotiation phase in the SMB protocol takes care of choosing 
4481 the appropriate protocol.
4484 See also \fImin
4485 protocol\fR
4488 Default: \fBmax protocol = NT1\fR
4491 Example: \fBmax protocol = LANMAN1\fR
4494 \fBmax smbd processes (G)\fR
4495 This parameter limits the maximum number of 
4496 \fBsmbd(8)\fR
4497 processes concurrently running on a system and is intended
4498 as a stopgap to prevent degrading service to clients in the event
4499 that the server has insufficient resources to handle more than this
4500 number of connections. Remember that under normal operating
4501 conditions, each user will have an smbd associated with him or her
4502 to handle connections to all shares from a given host.
4504 Default: \fBmax smbd processes = 0\fR ## no limit
4506 Example: \fBmax smbd processes = 1000\fR
4508 \fBmax ttl (G)\fR
4509 This option tells nmbd(8)
4510 what the default 'time to live' of NetBIOS names should be (in seconds) 
4511 when \fBnmbd\fR is requesting a name using either a
4512 broadcast packet or from a WINS server. You should never need to
4513 change this parameter. The default is 3 days.
4515 Default: \fBmax ttl = 259200\fR
4517 \fBmax wins ttl (G)\fR
4518 This option tells nmbd(8)
4519  when acting as a WINS server ( \fIwins support = yes\fR) what the maximum
4520 \&'time to live' of NetBIOS names that \fBnmbd\fR 
4521 will grant will be (in seconds). You should never need to change this
4522 parameter. The default is 6 days (518400 seconds).
4524 See also the \fImin 
4525 wins ttl\fR parameter.
4527 Default: \fBmax wins ttl = 518400\fR
4529 \fBmax xmit (G)\fR
4530 This option controls the maximum packet size 
4531 that will be negotiated by Samba. The default in Samba 2.2.6 is
4532 now 16644 (changed from 65535 in earlier releases) which matches
4533 Windows 2000. This allows better performance with Windows NT clients.
4534 The maximum is 65535. In some cases you may find you get better performance 
4535 with a smaller value. A value below 2048 is likely to cause problems.
4537 Default: \fBmax xmit = 16644\fR
4539 Example: \fBmax xmit = 8192\fR
4541 \fBmessage command (G)\fR
4542 This specifies what command to run when the 
4543 server receives a WinPopup style message.
4545 This would normally be a command that would 
4546 deliver the message somehow. How this is to be done is 
4547 up to your imagination.
4549 An example is:
4551 \fBmessage command = csh -c 'xedit %s;rm %s' &\fR
4553 This delivers the message using \fBxedit\fR, then 
4554 removes it afterwards. \fBNOTE THAT IT IS VERY IMPORTANT 
4555 THAT THIS COMMAND RETURN IMMEDIATELY\fR. That's why I 
4556 have the '&' on the end. If it doesn't return immediately then 
4557 your PCs may freeze when sending messages (they should recover 
4558 after 30 seconds, hopefully).
4560 All messages are delivered as the global guest user. 
4561 The command takes the standard substitutions, although \fI %u\fR won't work (\fI%U\fR may be better 
4562 in this case).
4564 Apart from the standard substitutions, some additional 
4565 ones apply. In particular:
4567 .TP 0.2i
4568 \(bu
4569 \fI%s\fR = the filename containing 
4570 the message.
4571 .TP 0.2i
4572 \(bu
4573 \fI%t\fR = the destination that 
4574 the message was sent to (probably the server name).
4575 .TP 0.2i
4576 \(bu
4577 \fI%f\fR = who the message 
4578 is from.
4581 You could make this command send mail, or whatever else 
4582 takes your fancy. Please let us know of any really interesting 
4583 ideas you have.
4586 Here's a way of sending the messages as mail to root:
4589 \fBmessage command = /bin/mail -s 'message from %f on 
4590 %m' root < %s; rm %s\fR
4593 If you don't have a message command then the message 
4594 won't be delivered and Samba will tell the sender there was 
4595 an error. Unfortunately WfWg totally ignores the error code 
4596 and carries on regardless, saying that the message was delivered.
4599 If you want to silently delete it then try:
4602 \fBmessage command = rm %s\fR
4605 Default: \fBno message command\fR
4608 Example: \fBmessage command = csh -c 'xedit %s;
4609 rm %s' &\fR
4612 \fBmin passwd length (G)\fR
4613 Synonym for  \fImin password length\fR.
4615 \fBmin password length (G)\fR
4616 This option sets the minimum length in characters 
4617 of a plaintext password that \fBsmbd\fR will accept when performing 
4618 UNIX password changing.
4620 See also \fIunix 
4621 password sync\fR,  \fIpasswd program\fR and \fIpasswd chat debug\fR
4624 Default: \fBmin password length = 5\fR
4626 \fBmin print space (S)\fR
4627 This sets the minimum amount of free disk 
4628 space that must be available before a user will be able to spool 
4629 a print job. It is specified in kilobytes. The default is 0, which 
4630 means a user can always spool a print job.
4632 See also the \fIprinting
4633 \fRparameter.
4635 Default: \fBmin print space = 0\fR
4637 Example: \fBmin print space = 2000\fR
4639 \fBmin protocol (G)\fR
4640 The value of the parameter (a string) is the 
4641 lowest SMB protocol dialect than Samba will support. Please refer
4642 to the \fImax protocol\fR
4643 parameter for a list of valid protocol names and a brief description
4644 of each. You may also wish to refer to the C source code in
4645 \fIsource/smbd/negprot.c\fR for a listing of known protocol
4646 dialects supported by clients.
4648 If you are viewing this parameter as a security measure, you should
4649 also refer to the \fIlanman 
4650 auth\fR parameter. Otherwise, you should never need 
4651 to change this parameter.
4653 Default : \fBmin protocol = CORE\fR
4655 Example : \fBmin protocol = NT1\fR # disable DOS 
4656 clients
4658 \fBmin wins ttl (G)\fR
4659 This option tells nmbd(8)
4660 when acting as a WINS server (\fI wins support = yes\fR) what the minimum 'time to live' 
4661 of NetBIOS names that \fBnmbd\fR will grant will be (in 
4662 seconds). You should never need to change this parameter. The default 
4663 is 6 hours (21600 seconds).
4665 Default: \fBmin wins ttl = 21600\fR
4667 \fBmsdfs root (S)\fR
4668 This boolean parameter is only available if 
4669 Samba is configured and compiled with the \fB --with-msdfs\fR option. If set to yes, 
4670 Samba treats the share as a Dfs root and allows clients to browse 
4671 the distributed file system tree rooted at the share directory. 
4672 Dfs links are specified in the share directory by symbolic 
4673 links of the form \fImsdfs:serverA\\shareA,serverB\\shareB
4674 \fRand so on. For more information on setting up a Dfs tree 
4675 on Samba, refer to msdfs_setup.html
4678 See also \fIhost msdfs
4680 Default: \fBmsdfs root = no\fR
4682 \fBname resolve order (G)\fR
4683 This option is used by the programs in the Samba 
4684 suite to determine what naming services to use and in what order 
4685 to resolve host names to IP addresses. The option takes a space 
4686 separated string of name resolution options.
4688 The options are :"lmhosts", "host", "wins" and "bcast". They 
4689 cause names to be resolved as follows :
4691 .TP 0.2i
4692 \(bu
4693 lmhosts : Lookup an IP 
4694 address in the Samba lmhosts file. If the line in lmhosts has 
4695 no name type attached to the NetBIOS name (see the lmhosts(5) for details) then
4696 any name type matches for lookup.
4697 .TP 0.2i
4698 \(bu
4699 host : Do a standard host 
4700 name to IP address resolution, using the system \fI/etc/hosts
4701 \fR, NIS, or DNS lookups. This method of name resolution 
4702 is operating system depended for instance on IRIX or Solaris this 
4703 may be controlled by the \fI/etc/nsswitch.conf\fR 
4704 file. Note that this method is only used if the NetBIOS name 
4705 type being queried is the 0x20 (server) name type, otherwise 
4706 it is ignored.
4707 .TP 0.2i
4708 \(bu
4709 wins : Query a name with 
4710 the IP address listed in the \fI wins server\fR parameter. If no WINS server has
4711 been specified this method will be ignored.
4712 .TP 0.2i
4713 \(bu
4714 bcast : Do a broadcast on 
4715 each of the known local interfaces listed in the \fIinterfaces\fR 
4716 parameter. This is the least reliable of the name resolution 
4717 methods as it depends on the target host being on a locally 
4718 connected subnet.
4721 Default: \fBname resolve order = lmhosts host wins bcast
4722 \fR.PP
4724 Example: \fBname resolve order = lmhosts bcast host
4725 \fR.PP
4727 This will cause the local lmhosts file to be examined 
4728 first, followed by a broadcast attempt, followed by a normal 
4729 system hostname lookup.
4732 \fBnetbios aliases (G)\fR
4733 This is a list of NetBIOS names that nmbd(8) will advertise as additional 
4734 names by which the Samba server is known. This allows one machine 
4735 to appear in browse lists under multiple names. If a machine is 
4736 acting as a browse server or logon server none 
4737 of these names will be advertised as either browse server or logon 
4738 servers, only the primary name of the machine will be advertised 
4739 with these capabilities.
4741 See also \fInetbios 
4742 name\fR.
4744 Default: \fBempty string (no additional names)\fR
4746 Example: \fBnetbios aliases = TEST TEST1 TEST2\fR
4748 \fBnetbios name (G)\fR
4749 This sets the NetBIOS name by which a Samba 
4750 server is known. By default it is the same as the first component 
4751 of the host's DNS name. If a machine is a browse server or
4752 logon server this name (or the first component
4753 of the hosts DNS name) will be the name that these services are
4754 advertised under.
4756 See also \fInetbios 
4757 aliases\fR.
4759 Default: \fBmachine DNS name\fR
4761 Example: \fBnetbios name = MYNAME\fR
4763 \fBnetbios scope (G)\fR
4764 This sets the NetBIOS scope that Samba will 
4765 operate under. This should not be set unless every machine 
4766 on your LAN also sets this value.
4768 \fBnis homedir (G)\fR
4769 Get the home share server from a NIS map. For 
4770 UNIX systems that use an automounter, the user's home directory 
4771 will often be mounted on a workstation on demand from a remote 
4772 server. 
4774 When the Samba logon server is not the actual home directory 
4775 server, but is mounting the home directories via NFS then two 
4776 network hops would be required to access the users home directory 
4777 if the logon server told the client to use itself as the SMB server 
4778 for home directories (one over SMB and one over NFS). This can 
4779 be very slow.
4781 This option allows Samba to return the home share as 
4782 being on a different server to the logon server and as 
4783 long as a Samba daemon is running on the home directory server, 
4784 it will be mounted on the Samba client directly from the directory 
4785 server. When Samba is returning the home share to the client, it 
4786 will consult the NIS map specified in  \fIhomedir map\fR and return the server 
4787 listed there.
4789 Note that for this option to work there must be a working 
4790 NIS system and the Samba server with this option must also 
4791 be a logon server.
4793 Default: \fBnis homedir = no\fR
4795 \fBnt acl support (S)\fR
4796 This boolean parameter controls whether 
4797 smbd(8) will attempt to map 
4798 UNIX permissions into Windows NT access control lists.
4799 This parameter was formally a global parameter in releases
4800 prior to 2.2.2.
4802 Default: \fBnt acl support = yes\fR
4804 \fBnt pipe support (G)\fR
4805 This boolean parameter controls whether 
4806 smbd(8) will allow Windows NT 
4807 clients to connect to the NT SMB specific IPC$ 
4808 pipes. This is a developer debugging option and can be left
4809 alone.
4811 Default: \fBnt pipe support = yes\fR
4813 \fBnt smb support (G)\fR
4814 This boolean parameter controls whether smbd(8) will negotiate NT specific SMB
4815 support with Windows NT/2k/XP clients. Although this is a developer
4816 debugging option and should be left alone, benchmarking has discovered
4817 that Windows NT clients give faster performance with this option
4818 set to no. This is still being investigated.
4819 If this option is set to no then Samba offers
4820 exactly the same SMB calls that versions prior to Samba 2.0 offered.
4821 This information may be of use if any users are having problems
4822 with NT SMB support.
4824 You should not need to ever disable this parameter.
4826 Default: \fBnt smb support = yes\fR
4828 \fBnt status support (G)\fR
4829 This boolean parameter controls whether smbd(8) will negotiate NT specific status
4830 support with Windows NT/2k/XP clients. This is a developer
4831 debugging option and should be left alone.
4832 If this option is set to no then Samba offers
4833 exactly the same DOS error codes that versions prior to Samba 2.2.3
4834 reported.
4836 You should not need to ever disable this parameter.
4838 Default: \fBnt status support = yes\fR
4840 \fBnull passwords (G)\fR
4841 Allow or disallow client access to accounts 
4842 that have null passwords. 
4844 See also smbpasswd (5)
4846 Default: \fBnull passwords = no\fR
4848 \fBobey pam restrictions (G)\fR
4849 When Samba 2.2 is configured to enable PAM support
4850 (i.e. --with-pam), this parameter will control whether or not Samba
4851 should obey PAM's account and session management directives. The 
4852 default behavior is to use PAM for clear text authentication only
4853 and to ignore any account or session management. Note that Samba
4854 always ignores PAM for authentication in the case of \fIencrypt passwords = yes\fR
4855 \&. The reason is that PAM modules cannot support the challenge/response
4856 authentication mechanism needed in the presence of SMB password encryption.
4858 Default: \fBobey pam restrictions = no\fR
4860 \fBonly user (S)\fR
4861 This is a boolean option that controls whether 
4862 connections with usernames not in the \fIuser\fR 
4863 list will be allowed. By default this option is disabled so that a 
4864 client can supply a username to be used by the server. Enabling
4865 this parameter will force the server to only user the login 
4866 names from the \fIuser\fR list and is only really
4867 useful in shave level
4868 security.
4870 Note that this also means Samba won't try to deduce 
4871 usernames from the service name. This can be annoying for 
4872 the [homes] section. To get around this you could use \fBuser =
4873 %S\fR which means your \fIuser\fR list
4874 will be just the service name, which for home directories is the 
4875 name of the user.
4877 See also the \fIuser\fR
4878 parameter.
4880 Default: \fBonly user = no\fR
4882 \fBonly guest (S)\fR
4883 A synonym for \fI guest only\fR.
4885 \fBoplock break wait time (G)\fR
4886 This is a tuning parameter added due to bugs in 
4887 both Windows 9x and WinNT. If Samba responds to a client too 
4888 quickly when that client issues an SMB that can cause an oplock 
4889 break request, then the network client can fail and not respond 
4890 to the break request. This tuning parameter (which is set in milliseconds) 
4891 is the amount of time Samba will wait before sending an oplock break 
4892 request to such (broken) clients.
4894 \fBDO NOT CHANGE THIS PARAMETER UNLESS YOU HAVE READ 
4895 AND UNDERSTOOD THE SAMBA OPLOCK CODE\fR.
4897 Default: \fBoplock break wait time = 0\fR
4899 \fBoplock contention limit (S)\fR
4900 This is a \fBvery\fR advanced 
4901 smbd(8) tuning option to 
4902 improve the efficiency of the granting of oplocks under multiple 
4903 client contention for the same file.
4905 In brief it specifies a number, which causes smbd not to 
4906 grant an oplock even when requested if the approximate number of 
4907 clients contending for an oplock on the same file goes over this 
4908 limit. This causes \fBsmbd\fR to behave in a similar 
4909 way to Windows NT.
4911 \fBDO NOT CHANGE THIS PARAMETER UNLESS YOU HAVE READ 
4912 AND UNDERSTOOD THE SAMBA OPLOCK CODE\fR.
4914 Default: \fBoplock contention limit = 2\fR
4916 \fBoplocks (S)\fR
4917 This boolean option tells \fBsmbd\fR whether to 
4918 issue oplocks (opportunistic locks) to file open requests on this 
4919 share. The oplock code can dramatically (approx. 30% or more) improve 
4920 the speed of access to files on Samba servers. It allows the clients 
4921 to aggressively cache files locally and you may want to disable this 
4922 option for unreliable network environments (it is turned on by 
4923 default in Windows NT Servers). For more information see the file 
4924 \fISpeed.txt\fR in the Samba \fIdocs/\fR 
4925 directory.
4927 Oplocks may be selectively turned off on certain files with a 
4928 share. See the \fI veto oplock files\fR parameter. On some systems 
4929 oplocks are recognized by the underlying operating system. This 
4930 allows data synchronization between all access to oplocked files, 
4931 whether it be via Samba or NFS or a local UNIX process. See the 
4932 \fIkernel oplocks\fR parameter for details.
4934 See also the \fIkernel 
4935 oplocks\fR and \fI level2 oplocks\fR parameters.
4937 Default: \fBoplocks = yes\fR
4939 \fBos level (G)\fR
4940 This integer value controls what level Samba 
4941 advertises itself as for browse elections. The value of this 
4942 parameter determines whether nmbd(8) 
4943 has a chance of becoming a local master browser for the \fI WORKGROUP\fR in the local broadcast area.
4945 \fBNote :\fRBy default, Samba will win 
4946 a local master browsing election over all Microsoft operating 
4947 systems except a Windows NT 4.0/2000 Domain Controller. This 
4948 means that a misconfigured Samba host can effectively isolate 
4949 a subnet for browsing purposes. See \fIBROWSING.txt
4950 \fRin the Samba \fIdocs/\fR directory 
4951 for details.
4953 Default: \fBos level = 20\fR
4955 Example: \fBos level = 65 \fR
4957 \fBos2 driver map (G)\fR
4958 The parameter is used to define the absolute
4959 path to a file containing a mapping of Windows NT printer driver
4960 names to OS/2 printer driver names. The format is:
4962 <nt driver name> = <os2 driver 
4963 name>.<device name>
4965 For example, a valid entry using the HP LaserJet 5
4966 printer driver would appear as \fBHP LaserJet 5L = LASERJET.HP 
4967 LaserJet 5L\fR.
4969 The need for the file is due to the printer driver namespace 
4970 problem described in the Samba 
4971 Printing HOWTO For more details on OS/2 clients, please 
4972 refer to the OS2-Client-HOWTO
4973  containing in the Samba documentation.
4975 Default: \fBos2 driver map = <empty string>
4976 \fR.TP
4977 \fBpam password change (G)\fR
4978 With the addition of better PAM support in Samba 2.2, 
4979 this parameter, it is possible to use PAM's password change control 
4980 flag for Samba. If enabled, then PAM will be used for password
4981 changes when requested by an SMB client instead of the program listed in 
4982 \fIpasswd program\fR. 
4983 It should be possible to enable this without changing your 
4984 \fIpasswd chat\fR
4985 parameter for most setups.
4987 Default: \fBpam password change = no\fR
4989 \fBpanic action (G)\fR
4990 This is a Samba developer option that allows a 
4991 system command to be called when either  smbd(8) 
4992 crashes. This is usually used to draw attention to the fact that 
4993 a problem occurred.
4995 Default: \fBpanic action = <empty string>\fR
4997 Example: \fBpanic action = "/bin/sleep 90000"\fR
4999 \fBpasswd chat (G)\fR
5000 This string controls the \fB"chat"\fR 
5001 conversation that takes places between smbd and the local password changing
5002 program to change the user's password. The string describes a 
5003 sequence of response-receive pairs that  smbd(8) uses to determine what to send to the 
5004 \fIpasswd program\fR
5005 and what to expect back. If the expected output is not 
5006 received then the password is not changed.
5008 This chat sequence is often quite site specific, depending 
5009 on what local methods are used for password control (such as NIS 
5010 etc).
5012 Note that this parameter only is only used if the \fIunix 
5013 password sync\fR parameter is set to yes. This 
5014 sequence is then called \fBAS ROOT\fR when the SMB password 
5015 in the smbpasswd file is being changed, without access to the old 
5016 password cleartext. This means that root must be able to reset the user's password
5017 without knowing the text of the previous password. In the presence of NIS/YP, 
5018 this means that the passwd program must be 
5019 executed on the NIS master.
5021 The string can contain the macro \fI%n\fR which is substituted 
5022 for the new password. The chat sequence can also contain the standard 
5023 macros \\n, \\r,  \\t and \\s to give line-feed, 
5024 carriage-return, tab and space. The chat sequence string can also contain 
5025 a '*' which matches any sequence of characters.
5026 Double quotes can be used to collect strings with spaces 
5027 in them into a single string.
5029 If the send string in any part of the chat sequence 
5030 is a full stop ".", then no string is sent. Similarly, 
5031 if the expect string is a full stop then no string is expected.
5033 If the \fIpam
5034 password change\fR parameter is set to yes, the chat pairs
5035 may be matched in any order, and success is determined by the PAM result, 
5036 not any particular output. The \\n macro is ignored for PAM conversions.
5038 See also \fIunix password 
5039 sync\fR, \fI passwd program\fR , \fIpasswd chat debug\fR and  \fIpam password change\fR.
5041 Default: \fBpasswd chat = *new*password* %n\\n 
5042 *new*password* %n\\n *changed*\fR
5044 Example: \fBpasswd chat = "*Enter OLD password*" %o\\n 
5045 "*Enter NEW password*" %n\\n "*Reenter NEW password*" %n\\n "*Password 
5046 changed*"\fR
5048 \fBpasswd chat debug (G)\fR
5049 This boolean specifies if the passwd chat script 
5050 parameter is run in \fBdebug\fR mode. In this mode the 
5051 strings passed to and received from the passwd chat are printed 
5052 in the smbd(8) log with a 
5053 \fIdebug level\fR 
5054 of 100. This is a dangerous option as it will allow plaintext passwords 
5055 to be seen in the \fBsmbd\fR log. It is available to help 
5056 Samba admins debug their \fIpasswd chat\fR scripts 
5057 when calling the \fIpasswd program\fR and should 
5058 be turned off after this has been done. This option has no effect if the 
5059 \fIpam password change\fR
5060 paramter is set. This parameter is off by default.
5062 See also \fIpasswd chat\fR
5063 , \fIpam password change\fR
5064 , \fIpasswd program\fR
5067 Default: \fBpasswd chat debug = no\fR
5069 \fBpasswd program (G)\fR
5070 The name of a program that can be used to set 
5071 UNIX user passwords. Any occurrences of \fI%u\fR 
5072 will be replaced with the user name. The user name is checked for 
5073 existence before calling the password changing program.
5075 Also note that many passwd programs insist in \fBreasonable
5076 \fRpasswords, such as a minimum length, or the inclusion 
5077 of mixed case chars and digits. This can pose a problem as some clients 
5078 (such as Windows for Workgroups) uppercase the password before sending 
5081 \fBNote\fR that if the \fIunix 
5082 password sync\fR parameter is set to yes
5083 then this program is called \fBAS ROOT\fR 
5084 before the SMB password in the smbpasswd(5)
5085  file is changed. If this UNIX password change fails, then 
5086 \fBsmbd\fR will fail to change the SMB password also 
5087 (this is by design).
5089 If the \fIunix password sync\fR parameter 
5090 is set this parameter \fBMUST USE ABSOLUTE PATHS\fR 
5091 for \fBALL\fR programs called, and must be examined 
5092 for security implications. Note that by default \fIunix 
5093 password sync\fR is set to no.
5095 See also \fIunix 
5096 password sync\fR.
5098 Default: \fBpasswd program = /bin/passwd\fR
5100 Example: \fBpasswd program = /sbin/npasswd %u\fR
5102 \fBpassword level (G)\fR
5103 Some client/server combinations have difficulty 
5104 with mixed-case passwords. One offending client is Windows for 
5105 Workgroups, which for some reason forces passwords to upper 
5106 case when using the LANMAN1 protocol, but leaves them alone when 
5107 using COREPLUS! Another problem child is the Windows 95/98
5108 family of operating systems. These clients upper case clear
5109 text passwords even when NT LM 0.12 selected by the protocol
5110 negotiation request/response.
5112 This parameter defines the maximum number of characters 
5113 that may be upper case in passwords.
5115 For example, say the password given was "FRED". If \fI password level\fR is set to 1, the following combinations 
5116 would be tried if "FRED" failed:
5118 "Fred", "fred", "fRed", "frEd","freD"
5120 If \fIpassword level\fR was set to 2, 
5121 the following combinations would also be tried: 
5123 "FRed", "FrEd", "FreD", "fREd", "fReD", "frED", ..
5125 And so on.
5127 The higher value this parameter is set to the more likely 
5128 it is that a mixed case password will be matched against a single 
5129 case password. However, you should be aware that use of this 
5130 parameter reduces security and increases the time taken to 
5131 process a new connection.
5133 A value of zero will cause only two attempts to be 
5134 made - the password as is and the password in all-lower case.
5136 Default: \fBpassword level = 0\fR
5138 Example: \fBpassword level = 4\fR
5140 \fBpassword server (G)\fR
5141 By specifying the name of another SMB server (such 
5142 as a WinNT box) with this option, and using \fBsecurity = domain
5143 \fRor \fBsecurity = server\fR you can get Samba 
5144 to do all its username/password validation via a remote server.
5146 This option sets the name of the password server to use. 
5147 It must be a NetBIOS name, so if the machine's NetBIOS name is 
5148 different from its Internet name then you may have to add its NetBIOS 
5149 name to the lmhosts file which is stored in the same directory 
5150 as the \fIsmb.conf\fR file.
5152 The name of the password server is looked up using the 
5153 parameter \fIname 
5154 resolve order\fR and so may resolved
5155 by any method and order described in that parameter.
5157 The password server much be a machine capable of using 
5158 the "LM1.2X002" or the "NT LM 0.12" protocol, and it must be in 
5159 user level security mode.
5161 \fBNOTE:\fR Using a password server 
5162 means your UNIX box (running Samba) is only as secure as your 
5163 password server. \fBDO NOT CHOOSE A PASSWORD SERVER THAT 
5164 YOU DON'T COMPLETELY TRUST\fR.
5166 Never point a Samba server at itself for password 
5167 serving. This will cause a loop and could lock up your Samba 
5168 server!
5170 The name of the password server takes the standard 
5171 substitutions, but probably the only useful one is \fI%m
5172 \fR, which means the Samba server will use the incoming 
5173 client as the password server. If you use this then you better 
5174 trust your clients, and you had better restrict them with hosts allow!
5176 If the \fIsecurity\fR parameter is set to
5177 domain, then the list of machines in this 
5178 option must be a list of Primary or Backup Domain controllers for the
5179 Domain or the character '*', as the Samba server is effectively
5180 in that domain, and will use cryptographically authenticated RPC calls
5181 to authenticate the user logging on. The advantage of using \fB security = domain\fR is that if you list several hosts in the 
5182 \fIpassword server\fR option then \fBsmbd
5183 \fRwill try each in turn till it finds one that responds. This 
5184 is useful in case your primary server goes down.
5186 If the \fIpassword server\fR option is set 
5187 to the character '*', then Samba will attempt to auto-locate the 
5188 Primary or Backup Domain controllers to authenticate against by 
5189 doing a query for the name WORKGROUP<1C> 
5190 and then contacting each server returned in the list of IP 
5191 addresses from the name resolution source. 
5193 If the \fIsecurity\fR parameter is 
5194 set to server, then there are different
5195 restrictions that \fBsecurity = domain\fR doesn't 
5196 suffer from:
5198 .TP 0.2i
5199 \(bu
5200 You may list several password servers in 
5201 the \fIpassword server\fR parameter, however if an 
5202 \fBsmbd\fR makes a connection to a password server, 
5203 and then the password server fails, no more users will be able 
5204 to be authenticated from this \fBsmbd\fR. This is a 
5205 restriction of the SMB/CIFS protocol when in \fBsecurity = server
5206 \fRmode and cannot be fixed in Samba.
5207 .TP 0.2i
5208 \(bu
5209 If you are using a Windows NT server as your 
5210 password server then you will have to ensure that your users 
5211 are able to login from the Samba server, as when in \fB security = server\fR mode the network logon will appear to 
5212 come from there rather than from the users workstation.
5215 See also the \fIsecurity
5216 \fRparameter.
5219 Default: \fBpassword server = <empty string>\fR
5222 Example: \fBpassword server = NT-PDC, NT-BDC1, NT-BDC2
5223 \fR.PP
5225 Example: \fBpassword server = *\fR
5228 \fBpath (S)\fR
5229 This parameter specifies a directory to which 
5230 the user of the service is to be given access. In the case of 
5231 printable services, this is where print data will spool prior to 
5232 being submitted to the host for printing.
5234 For a printable service offering guest access, the service 
5235 should be readonly and the path should be world-writeable and 
5236 have the sticky bit set. This is not mandatory of course, but 
5237 you probably won't get the results you expect if you do 
5238 otherwise.
5240 Any occurrences of \fI%u\fR in the path 
5241 will be replaced with the UNIX username that the client is using 
5242 on this connection. Any occurrences of \fI%m\fR 
5243 will be replaced by the NetBIOS name of the machine they are 
5244 connecting from. These replacements are very useful for setting 
5245 up pseudo home directories for users.
5247 Note that this path will be based on  \fIroot dir\fR if one was specified.
5249 Default: \fBnone\fR
5251 Example: \fBpath = /home/fred\fR
5253 \fBpid directory (G)\fR
5254 This option specifies the directory where pid 
5255 files will be placed. 
5257 Default: \fBpid directory = ${prefix}/var/locks\fR
5259 Example: \fBpid directory = /var/run/\fR
5261 \fBposix locking (S)\fR
5262 The \fBsmbd(8)\fR
5263 daemon maintains an database of file locks obtained by SMB clients.
5264 The default behavior is to map this internal database to POSIX
5265 locks. This means that file locks obtained by SMB clients are 
5266 consistent with those seen by POSIX compliant applications accessing 
5267 the files via a non-SMB method (e.g. NFS or local file access). 
5268 You should never need to disable this parameter.
5270 Default: \fBposix locking = yes\fR
5272 \fBpostexec (S)\fR
5273 This option specifies a command to be run 
5274 whenever the service is disconnected. It takes the usual 
5275 substitutions. The command may be run as the root on some 
5276 systems.
5278 An interesting example may be to unmount server 
5279 resources:
5281 \fBpostexec = /etc/umount /cdrom\fR
5283 See also \fIpreexec\fR
5286 Default: \fBnone (no command executed)\fR
5288 Example: \fBpostexec = echo \\"%u disconnected from %S 
5289 from %m (%I)\\" >> /tmp/log\fR
5291 \fBpostscript (S)\fR
5292 This parameter forces a printer to interpret 
5293 the print files as PostScript. This is done by adding a %!
5294 to the start of print output.
5296 This is most useful when you have lots of PCs that persist 
5297 in putting a control-D at the start of print jobs, which then 
5298 confuses your printer.
5300 Default: \fBpostscript = no\fR
5302 \fBpreexec (S)\fR
5303 This option specifies a command to be run whenever 
5304 the service is connected to. It takes the usual substitutions.
5306 An interesting example is to send the users a welcome 
5307 message every time they log in. Maybe a message of the day? Here 
5308 is an example:
5310 \fBpreexec = csh -c 'echo \\"Welcome to %S!\\" |
5311 /usr/local/samba/bin/smbclient -M %m -I %I' & \fR
5313 Of course, this could get annoying after a while :-)
5315 See also \fIpreexec close
5316 \fRand \fIpostexec
5317 \fR\&.
5319 Default: \fBnone (no command executed)\fR
5321 Example: \fBpreexec = echo \\"%u connected to %S from %m
5322 (%I)\\" >> /tmp/log\fR
5324 \fBpreexec close (S)\fR
5325 This boolean option controls whether a non-zero 
5326 return code from \fIpreexec
5327 \fRshould close the service being connected to.
5329 Default: \fBpreexec close = no\fR
5331 \fBpreferred master (G)\fR
5332 This boolean parameter controls if nmbd(8) is a preferred master browser 
5333 for its workgroup.
5335 If this is set to yes, on startup, \fBnmbd\fR 
5336 will force an election, and it will have a slight advantage in 
5337 winning the election. It is recommended that this parameter is 
5338 used in conjunction with \fB\fI domain master\fB = yes\fR, so that \fB nmbd\fR can guarantee becoming a domain master.
5340 Use this option with caution, because if there are several 
5341 hosts (whether Samba servers, Windows 95 or NT) that are preferred 
5342 master browsers on the same subnet, they will each periodically 
5343 and continuously attempt to become the local master browser. 
5344 This will result in unnecessary broadcast traffic and reduced browsing
5345 capabilities.
5347 See also \fIos level\fR
5350 Default: \fBpreferred master = auto\fR
5352 \fBprefered master (G)\fR
5353 Synonym for \fI preferred master\fR for people who cannot spell :-).
5355 \fBpreload\fR
5356 This is a list of services that you want to be 
5357 automatically added to the browse lists. This is most useful 
5358 for homes and printers services that would otherwise not be 
5359 visible.
5361 Note that if you just want all printers in your 
5362 printcap file loaded then the  \fIload printers\fR option is easier.
5364 Default: \fBno preloaded services\fR
5366 Example: \fBpreload = fred lp colorlp\fR
5368 \fBpreserve case (S)\fR
5369 This controls if new filenames are created
5370 with the case that the client passes, or if they are forced to 
5371 be the \fIdefault case
5372 \fR\&.
5374 Default: \fBpreserve case = yes\fR
5376 See the section on NAME 
5377 MANGLING for a fuller discussion.
5379 \fBprint command (S)\fR
5380 After a print job has finished spooling to 
5381 a service, this command will be used via a \fBsystem()\fR 
5382 call to process the spool file. Typically the command specified will 
5383 submit the spool file to the host's printing subsystem, but there 
5384 is no requirement that this be the case. The server will not remove 
5385 the spool file, so whatever command you specify should remove the 
5386 spool file when it has been processed, otherwise you will need to 
5387 manually remove old spool files.
5389 The print command is simply a text string. It will be used 
5390 verbatim after macro substitutions have been made:
5392 s, %p - the path to the spool
5393 file name
5395 %p - the appropriate printer 
5396 name
5398 %J - the job 
5399 name as transmitted by the client.
5401 %c - The number of printed pages
5402 of the spooled job (if known).
5404 %z - the size of the spooled
5405 print job (in bytes)
5407 The print command \fBMUST\fR contain at least 
5408 one occurrence of \fI%s\fR or \fI%f
5409 \fR- the \fI%p\fR is optional. At the time 
5410 a job is submitted, if no printer name is supplied the \fI%p
5411 \fRwill be silently removed from the printer command.
5413 If specified in the [global] section, the print command given 
5414 will be used for any printable service that does not have its own 
5415 print command specified.
5417 If there is neither a specified print command for a 
5418 printable service nor a global print command, spool files will 
5419 be created but not processed and (most importantly) not removed.
5421 Note that printing may fail on some UNIXes from the 
5422 nobody account. If this happens then create 
5423 an alternative guest account that can print and set the \fIguest account\fR 
5424 in the [global] section.
5426 You can form quite complex print commands by realizing 
5427 that they are just passed to a shell. For example the following 
5428 will log a print job, print the file, then remove it. Note that 
5429 \&';' is the usual separator for command in shell scripts.
5431 \fBprint command = echo Printing %s >> 
5432 /tmp/print.log; lpr -P %p %s; rm %s\fR
5434 You may have to vary this command considerably depending 
5435 on how you normally print files on your system. The default for 
5436 the parameter varies depending on the setting of the  \fIprinting\fR parameter.
5438 Default: For \fBprinting = BSD, AIX, QNX, LPRNG 
5439 or PLP :\fR
5441 \fBprint command = lpr -r -P%p %s\fR
5443 For \fBprinting = SYSV or HPUX :\fR
5445 \fBprint command = lp -c -d%p %s; rm %s\fR
5447 For \fBprinting = SOFTQ :\fR
5449 \fBprint command = lp -d%p -s %s; rm %s\fR
5451 For printing = CUPS : If SAMBA is compiled against
5452 libcups, then printcap = cups 
5453 uses the CUPS API to
5454 submit jobs, etc. Otherwise it maps to the System V
5455 commands with the -oraw option for printing, i.e. it
5456 uses \fBlp -c -d%p -oraw; rm %s\fR. 
5457 With \fBprinting = cups\fR,
5458 and if SAMBA is compiled against libcups, any manually 
5459 set print command will be ignored.
5461 Example: \fBprint command = /usr/local/samba/bin/myprintscript
5462 %p %s\fR
5464 \fBprint ok (S)\fR
5465 Synonym for  \fIprintable\fR.
5467 \fBprintable (S)\fR
5468 If this parameter is yes, then 
5469 clients may open, write to and submit spool files on the directory 
5470 specified for the service. 
5472 Note that a printable service will ALWAYS allow writing 
5473 to the service path (user privileges permitting) via the spooling 
5474 of print data. The \fIread only
5475 \fRparameter controls only non-printing access to 
5476 the resource.
5478 Default: \fBprintable = no\fR
5480 \fBprintcap (G)\fR
5481 Synonym for \fI printcap name\fR.
5483 \fBprintcap name (G)\fR
5484 This parameter may be used to override the 
5485 compiled-in default printcap name used by the server (usually \fI /etc/printcap\fR). See the discussion of the [printers] section above for reasons 
5486 why you might want to do this.
5488 To use the CUPS printing interface set \fBprintcap name = cups
5489 \fR\&. This should be supplemented by an addtional setting 
5490 printing = cups in the [global] 
5491 section. \fBprintcap name = cups\fR will use the 
5492 "dummy" printcap created by CUPS, as specified in your CUPS
5493 configuration file.
5495 On System V systems that use \fBlpstat\fR to 
5496 list available printers you can use \fBprintcap name = lpstat
5497 \fRto automatically obtain lists of available printers. This 
5498 is the default for systems that define SYSV at configure time in 
5499 Samba (this includes most System V based systems). If \fI printcap name\fR is set to \fBlpstat\fR on 
5500 these systems then Samba will launch \fBlpstat -v\fR and 
5501 attempt to parse the output to obtain a printer list.
5503 A minimal printcap file would look something like this:
5507                 print1|My Printer 1
5508                 print2|My Printer 2
5509                 print3|My Printer 3
5510                 print4|My Printer 4
5511                 print5|My Printer 5
5512                 
5516 where the '|' separates aliases of a printer. The fact 
5517 that the second alias has a space in it gives a hint to Samba 
5518 that it's a comment.
5520 \fBNOTE\fR: Under AIX the default printcap 
5521 name is \fI/etc/qconfig\fR. Samba will assume the 
5522 file is in AIX \fIqconfig\fR format if the string
5523 \fIqconfig\fR appears in the printcap filename.
5525 Default: \fBprintcap name = /etc/printcap\fR
5527 Example: \fBprintcap name = /etc/myprintcap\fR
5529 \fBprinter admin (S)\fR
5530 This is a list of users that can do anything to 
5531 printers via the remote administration interfaces offered by MS-RPC 
5532 (usually using a NT workstation). Note that the root user always 
5533 has admin rights.
5535 Default: \fBprinter admin = <empty string>\fR
5537 Example: \fBprinter admin = admin, @staff\fR
5539 \fBprinter driver (S)\fR
5540 \fBNote :\fRThis is a deprecated 
5541 parameter and will be removed in the next major release
5542 following version 2.2. Please see the instructions in
5543 the Samba 2.2. Printing
5544 HOWTO for more information
5545 on the new method of loading printer drivers onto a Samba server.
5547 This option allows you to control the string 
5548 that clients receive when they ask the server for the printer driver 
5549 associated with a printer. If you are using Windows95 or Windows NT 
5550 then you can use this to automate the setup of printers on your 
5551 system.
5553 You need to set this parameter to the exact string (case 
5554 sensitive) that describes the appropriate printer driver for your 
5555 system. If you don't know the exact string to use then you should 
5556 first try with no \fI printer driver\fR option set and the client will 
5557 give you a list of printer drivers. The appropriate strings are 
5558 shown in a scroll box after you have chosen the printer manufacturer.
5560 See also \fIprinter
5561 driver file\fR.
5563 Example: \fBprinter driver = HP LaserJet 4L\fR
5565 \fBprinter driver file (G)\fR
5566 \fBNote :\fRThis is a deprecated 
5567 parameter and will be removed in the next major release
5568 following version 2.2. Please see the instructions in
5569 the Samba 2.2. Printing
5570 HOWTO for more information
5571 on the new method of loading printer drivers onto a Samba server.
5573 This parameter tells Samba where the printer driver 
5574 definition file, used when serving drivers to Windows 95 clients, is 
5575 to be found. If this is not set, the default is :
5577 \fISAMBA_INSTALL_DIRECTORY
5578 /lib/printers.def\fR
5580 This file is created from Windows 95 \fImsprint.inf
5581 \fRfiles found on the Windows 95 client system. For more 
5582 details on setting up serving of printer drivers to Windows 95 
5583 clients, see the outdated documentation file in the \fIdocs/\fR 
5584 directory, \fIPRINTER_DRIVER.txt\fR.
5586 See also \fI printer driver location\fR.
5588 Default: \fBNone (set in compile).\fR
5590 Example: \fBprinter driver file = 
5591 /usr/local/samba/printers/drivers.def\fR
5593 \fBprinter driver location (S)\fR
5594 \fBNote :\fRThis is a deprecated 
5595 parameter and will be removed in the next major release
5596 following version 2.2. Please see the instructions in
5597 the Samba 2.2. Printing
5598 HOWTO for more information
5599 on the new method of loading printer drivers onto a Samba server.
5601 This parameter tells clients of a particular printer 
5602 share where to find the printer driver files for the automatic 
5603 installation of drivers for Windows 95 machines. If Samba is set up 
5604 to serve printer drivers to Windows 95 machines, this should be set to
5606 \fB\\\\MACHINE\\PRINTER$\fR
5608 Where MACHINE is the NetBIOS name of your Samba server, 
5609 and PRINTER$ is a share you set up for serving printer driver 
5610 files. For more details on setting this up see the outdated documentation 
5611 file in the \fIdocs/\fR directory, \fI PRINTER_DRIVER.txt\fR.
5613 See also \fI printer driver file\fR.
5615 Default: \fBnone\fR
5617 Example: \fBprinter driver location = \\\\MACHINE\\PRINTER$
5618 \fR.TP
5619 \fBprinter name (S)\fR
5620 This parameter specifies the name of the printer 
5621 to which print jobs spooled through a printable service will be sent.
5623 If specified in the [global] section, the printer
5624 name given will be used for any printable service that does 
5625 not have its own printer name specified.
5627 Default: \fBnone (but may be lp 
5628 on many systems)\fR
5630 Example: \fBprinter name = laserwriter\fR
5632 \fBprinter (S)\fR
5633 Synonym for \fI printer name\fR.
5635 \fBprinting (S)\fR
5636 This parameters controls how printer status 
5637 information is interpreted on your system. It also affects the 
5638 default values for the \fIprint command\fR, 
5639 \fIlpq command\fR, \fIlppause command
5640 \fR, \fIlpresume command\fR, and 
5641 \fIlprm command\fR if specified in the 
5642 [global] section.
5644 Currently nine printing styles are supported. They are
5645 BSD, AIX, 
5646 LPRNG, PLP,
5647 SYSV, HPUX,
5648 QNX, SOFTQ,
5649 and CUPS.
5651 To see what the defaults are for the other print 
5652 commands when using the various options use the testparm(1) program.
5654 This option can be set on a per printer basis
5656 See also the discussion in the  [printers] section.
5658 \fBprofile acls (S)\fR
5659 This boolean parameter was added to fix the problems that people have been
5660 having with storing user profiles on Samba shares from Windows 2000 or
5661 Windows XP clients. New versions of Windows 2000 or Windows XP service
5662 packs do security ACL checking on the owner and ability to write of the
5663 profile directory stored on a local workstation when copied from a Samba
5664 share. When not in domain mode with winbindd then the security info copied
5665 onto the local workstation has no meaning to the logged in user (SID) on
5666 that workstation so the profile storing fails. Adding this parameter
5667 onto a share used for profile storage changes two things about the
5668 returned Windows ACL. Firstly it changes the owner and group owner
5669 of all reported files and directories to be BUILTIN\\Administrators,
5670 BUILTIN\\Users respectively (SIDs S-1-5-32-544, S-1-5-32-545). Secondly
5671 it adds an ACE entry of "Full Control" to the SID BUILTIN\\Users to
5672 every returned ACL. This will allow any Windows 2000 or XP workstation
5673 user to access the profile. Note that if you have multiple users logging
5674 on to a workstation then in order to prevent them from being able to access
5675 each others profiles you must remove the "Bypass traverse checking" advanced
5676 user right. This will prevent access to other users profile directories as
5677 the top level profile directory (named after the user) is created by the
5678 workstation profile code and has an ACL restricting entry to the directory
5679 tree to the owning user.
5681 If you didn't understand the above text, you probably should not set
5682 this parameter :-).
5684 Default \fBprofile acls = no\fR
5686 \fBprotocol (G)\fR
5687 Synonym for  \fImax protocol\fR.
5689 \fBpublic (S)\fR
5690 Synonym for \fIguest 
5691 ok\fR.
5693 \fBqueuepause command (S)\fR
5694 This parameter specifies the command to be 
5695 executed on the server host in order to pause the printer queue.
5697 This command should be a program or script which takes 
5698 a printer name as its only parameter and stops the printer queue, 
5699 such that no longer jobs are submitted to the printer.
5701 This command is not supported by Windows for Workgroups, 
5702 but can be issued from the Printers window under Windows 95 
5703 and NT.
5705 If a \fI%p\fR is given then the printer name 
5706 is put in its place. Otherwise it is placed at the end of the command.
5708 Note that it is good practice to include the absolute 
5709 path in the command as the PATH may not be available to the 
5710 server.
5712 Default: \fBdepends on the setting of \fIprinting
5713 \fB\fR
5714 Example: \fBqueuepause command = disable %p\fR
5716 \fBqueueresume command (S)\fR
5717 This parameter specifies the command to be 
5718 executed on the server host in order to resume the printer queue. It 
5719 is the command to undo the behavior that is caused by the 
5720 previous parameter (\fI queuepause command\fR).
5722 This command should be a program or script which takes 
5723 a printer name as its only parameter and resumes the printer queue, 
5724 such that queued jobs are resubmitted to the printer.
5726 This command is not supported by Windows for Workgroups, 
5727 but can be issued from the Printers window under Windows 95 
5728 and NT.
5730 If a \fI%p\fR is given then the printer name 
5731 is put in its place. Otherwise it is placed at the end of the 
5732 command.
5734 Note that it is good practice to include the absolute 
5735 path in the command as the PATH may not be available to the 
5736 server.
5738 Default: \fBdepends on the setting of \fIprinting\fB\fR
5740 Example: \fBqueuepause command = enable %p
5741 \fR.TP
5742 \fBread bmpx (G)\fR
5743 This boolean parameter controls whether smbd(8) will support the "Read 
5744 Block Multiplex" SMB. This is now rarely used and defaults to 
5745 no. You should never need to set this 
5746 parameter.
5748 Default: \fBread bmpx = no\fR
5750 \fBread list (S)\fR
5751 This is a list of users that are given read-only 
5752 access to a service. If the connecting user is in this list then 
5753 they will not be given write access, no matter what the \fIread only\fR
5754 option is set to. The list can include group names using the 
5755 syntax described in the \fI invalid users\fR parameter.
5757 See also the \fI write list\fR parameter and the \fIinvalid users\fR
5758 parameter.
5760 Default: \fBread list = <empty string>\fR
5762 Example: \fBread list = mary, @students\fR
5764 \fBread only (S)\fR
5765 An inverted synonym is  \fIwriteable\fR.
5767 If this parameter is yes, then users 
5768 of a service may not create or modify files in the service's 
5769 directory.
5771 Note that a printable service (\fBprintable = yes\fR)
5772 will \fBALWAYS\fR allow writing to the directory 
5773 (user privileges permitting), but only via spooling operations.
5775 Default: \fBread only = yes\fR
5777 \fBread raw (G)\fR
5778 This parameter controls whether or not the server 
5779 will support the raw read SMB requests when transferring data 
5780 to clients.
5782 If enabled, raw reads allow reads of 65535 bytes in 
5783 one packet. This typically provides a major performance benefit.
5785 However, some clients either negotiate the allowable 
5786 block size incorrectly or are incapable of supporting larger block 
5787 sizes, and for these clients you may need to disable raw reads.
5789 In general this parameter should be viewed as a system tuning 
5790 tool and left severely alone. See also  \fIwrite raw\fR.
5792 Default: \fBread raw = yes\fR
5794 \fBread size (G)\fR
5795 The option \fIread size\fR 
5796 affects the overlap of disk reads/writes with network reads/writes. 
5797 If the amount of data being transferred in several of the SMB 
5798 commands (currently SMBwrite, SMBwriteX and SMBreadbraw) is larger 
5799 than this value then the server begins writing the data before it 
5800 has received the whole packet from the network, or in the case of 
5801 SMBreadbraw, it begins writing to the network before all the data 
5802 has been read from disk.
5804 This overlapping works best when the speeds of disk and 
5805 network access are similar, having very little effect when the 
5806 speed of one is much greater than the other.
5808 The default value is 16384, but very little experimentation 
5809 has been done yet to determine the optimal value, and it is likely 
5810 that the best value will vary greatly between systems anyway. 
5811 A value over 65536 is pointless and will cause you to allocate 
5812 memory unnecessarily.
5814 Default: \fBread size = 16384\fR
5816 Example: \fBread size = 8192\fR
5818 \fBremote announce (G)\fR
5819 This option allows you to setup nmbd(8) to periodically announce itself 
5820 to arbitrary IP addresses with an arbitrary workgroup name.
5822 This is useful if you want your Samba server to appear 
5823 in a remote workgroup for which the normal browse propagation 
5824 rules don't work. The remote workgroup can be anywhere that you 
5825 can send IP packets to.
5827 For example:
5829 \fBremote announce = 192.168.2.255/SERVERS 
5830 192.168.4.255/STAFF\fR
5832 the above line would cause \fBnmbd\fR to announce itself 
5833 to the two given IP addresses using the given workgroup names. 
5834 If you leave out the workgroup name then the one given in 
5835 the \fIworkgroup\fR 
5836 parameter is used instead.
5838 The IP addresses you choose would normally be the broadcast 
5839 addresses of the remote networks, but can also be the IP addresses 
5840 of known browse masters if your network config is that stable.
5842 See the documentation file \fIBROWSING.txt\fR 
5843 in the \fIdocs/\fR directory.
5845 Default: \fBremote announce = <empty string>
5846 \fR.TP
5847 \fBremote browse sync (G)\fR
5848 This option allows you to setup nmbd(8) to periodically request 
5849 synchronization of browse lists with the master browser of a Samba 
5850 server that is on a remote segment. This option will allow you to 
5851 gain browse lists for multiple workgroups across routed networks. This 
5852 is done in a manner that does not work with any non-Samba servers.
5854 This is useful if you want your Samba server and all local 
5855 clients to appear in a remote workgroup for which the normal browse 
5856 propagation rules don't work. The remote workgroup can be anywhere 
5857 that you can send IP packets to.
5859 For example:
5861 \fBremote browse sync = 192.168.2.255 192.168.4.255
5863 the above line would cause \fBnmbd\fR to request 
5864 the master browser on the specified subnets or addresses to 
5865 synchronize their browse lists with the local server.
5867 The IP addresses you choose would normally be the broadcast 
5868 addresses of the remote networks, but can also be the IP addresses 
5869 of known browse masters if your network config is that stable. If 
5870 a machine IP address is given Samba makes NO attempt to validate 
5871 that the remote machine is available, is listening, nor that it 
5872 is in fact the browse master on its segment.
5874 Default: \fBremote browse sync = <empty string>
5875 \fR.TP
5876 \fBrestrict anonymous (G)\fR
5877 This is a boolean parameter. If it is yes, then 
5878 anonymous access to the server will be restricted, namely in the 
5879 case where the server is expecting the client to send a username, 
5880 but it doesn't. Setting it to yes will force these anonymous 
5881 connections to be denied, and the client will be required to always 
5882 supply a username and password when connecting. Use of this parameter 
5883 is only recommended for homogeneous NT client environments.
5885 This parameter makes the use of macro expansions that rely
5886 on the username (%U, %G, etc) consistent. NT 4.0 
5887 likes to use anonymous connections when refreshing the share list, 
5888 and this is a way to work around that.
5890 When restrict anonymous is yes, all anonymous connections 
5891 are denied no matter what they are for. This can effect the ability 
5892 of a machine to access the Samba Primary Domain Controller to revalidate 
5893 its machine account after someone else has logged on the client 
5894 interactively. The NT client will display a message saying that 
5895 the machine's account in the domain doesn't exist or the password is 
5896 bad. The best way to deal with this is to reboot NT client machines 
5897 between interactive logons, using "Shutdown and Restart", rather 
5898 than "Close all programs and logon as a different user".
5900 Default: \fBrestrict anonymous = no\fR
5902 \fBroot (G)\fR
5903 Synonym for  \fIroot directory"\fR.
5905 \fBroot dir (G)\fR
5906 Synonym for  \fIroot directory"\fR.
5908 \fBroot directory (G)\fR
5909 The server will \fBchroot()\fR (i.e. 
5910 Change its root directory) to this directory on startup. This is 
5911 not strictly necessary for secure operation. Even without it the 
5912 server will deny access to files not in one of the service entries. 
5913 It may also check for, and deny access to, soft links to other 
5914 parts of the filesystem, or attempts to use ".." in file names 
5915 to access other directories (depending on the setting of the \fIwide links\fR 
5916 parameter).
5918 Adding a \fIroot directory\fR entry other 
5919 than "/" adds an extra level of security, but at a price. It 
5920 absolutely ensures that no access is given to files not in the 
5921 sub-tree specified in the \fIroot directory\fR 
5922 option, \fBincluding\fR some files needed for 
5923 complete operation of the server. To maintain full operability 
5924 of the server you will need to mirror some system files 
5925 into the \fIroot directory\fR tree. In particular 
5926 you will need to mirror \fI/etc/passwd\fR (or a 
5927 subset of it), and any binaries or configuration files needed for 
5928 printing (if required). The set of files that must be mirrored is
5929 operating system dependent.
5931 Default: \fBroot directory = /\fR
5933 Example: \fBroot directory = /homes/smb\fR
5935 \fBroot postexec (S)\fR
5936 This is the same as the \fIpostexec\fR
5937 parameter except that the command is run as root. This 
5938 is useful for unmounting filesystems 
5939 (such as CDROMs) after a connection is closed.
5941 See also \fI postexec\fR.
5943 Default: \fBroot postexec = <empty string>
5944 \fR.TP
5945 \fBroot preexec (S)\fR
5946 This is the same as the \fIpreexec\fR
5947 parameter except that the command is run as root. This 
5948 is useful for mounting filesystems (such as CDROMs) when a 
5949 connection is opened.
5951 See also \fI preexec\fR and  \fIpreexec close\fR.
5953 Default: \fBroot preexec = <empty string>
5954 \fR.TP
5955 \fBroot preexec close (S)\fR
5956 This is the same as the \fIpreexec close
5957 \fRparameter except that the command is run as root.
5959 See also \fI preexec\fR and  \fIpreexec close\fR.
5961 Default: \fBroot preexec close = no\fR
5963 \fBsecurity (G)\fR
5964 This option affects how clients respond to 
5965 Samba and is one of the most important settings in the \fI smb.conf\fR file.
5967 The option sets the "security mode bit" in replies to 
5968 protocol negotiations with smbd(8)
5969  to turn share level security on or off. Clients decide 
5970 based on this bit whether (and how) to transfer user and password 
5971 information to the server.
5973 The default is \fBsecurity = user\fR, as this is
5974 the most common setting needed when talking to Windows 98 and 
5975 Windows NT.
5977 The alternatives are \fBsecurity = share\fR,
5978 \fBsecurity = server\fR or \fBsecurity = domain
5979 \fR\&.
5981 In versions of Samba prior to 2.0.0, the default was 
5982 \fBsecurity = share\fR mainly because that was
5983 the only option at one stage.
5985 There is a bug in WfWg that has relevance to this 
5986 setting. When in user or server level security a WfWg client 
5987 will totally ignore the password you type in the "connect 
5988 drive" dialog box. This makes it very difficult (if not impossible) 
5989 to connect to a Samba service as anyone except the user that 
5990 you are logged into WfWg as.
5992 If your PCs use usernames that are the same as their 
5993 usernames on the UNIX machine then you will want to use 
5994 \fBsecurity = user\fR. If you mostly use usernames 
5995 that don't exist on the UNIX box then use \fBsecurity = 
5996 share\fR.
5998 You should also use \fBsecurity = share\fR if you 
5999 want to mainly setup shares without a password (guest shares). This 
6000 is commonly used for a shared printer server. It is more difficult 
6001 to setup guest shares with \fBsecurity = user\fR, see 
6002 the \fImap to guest\fR
6003 parameter for details.
6005 It is possible to use \fBsmbd\fR in a \fB hybrid mode\fR where it is offers both user and share 
6006 level security under different  \fINetBIOS aliases\fR. 
6008 The different settings will now be explained.
6010 \fBSECURITY = SHARE
6012 When clients connect to a share level security server they 
6013 need not log onto the server with a valid username and password before 
6014 attempting to connect to a shared resource (although modern clients 
6015 such as Windows 95/98 and Windows NT will send a logon request with 
6016 a username but no password when talking to a \fBsecurity = share
6017 \fRserver). Instead, the clients send authentication information 
6018 (passwords) on a per-share basis, at the time they attempt to connect 
6019 to that share.
6021 Note that \fBsmbd\fR \fBALWAYS\fR 
6022 uses a valid UNIX user to act on behalf of the client, even in
6023 \fBsecurity = share\fR level security.
6025 As clients are not required to send a username to the server
6026 in share level security, \fBsmbd\fR uses several
6027 techniques to determine the correct UNIX user to use on behalf
6028 of the client.
6030 A list of possible UNIX usernames to match with the given
6031 client password is constructed using the following methods :
6033 .TP 0.2i
6034 \(bu
6035 If the \fIguest 
6036 only\fR parameter is set, then all the other 
6037 stages are missed and only the  \fIguest account\fR username is checked.
6038 .TP 0.2i
6039 \(bu
6040 Is a username is sent with the share connection 
6041 request, then this username (after mapping - see \fIusername map\fR), 
6042 is added as a potential username.
6043 .TP 0.2i
6044 \(bu
6045 If the client did a previous \fBlogon
6046 \fRrequest (the SessionSetup SMB call) then the 
6047 username sent in this SMB will be added as a potential username.
6048 .TP 0.2i
6049 \(bu
6050 The name of the service the client requested is 
6051 added as a potential username.
6052 .TP 0.2i
6053 \(bu
6054 The NetBIOS name of the client is added to 
6055 the list as a potential username.
6056 .TP 0.2i
6057 \(bu
6058 Any users on the \fI user\fR list are added as potential usernames.
6061 If the \fIguest only\fR parameter is 
6062 not set, then this list is then tried with the supplied password. 
6063 The first user for whom the password matches will be used as the 
6064 UNIX user.
6067 If the \fIguest only\fR parameter is 
6068 set, or no username can be determined then if the share is marked 
6069 as available to the \fIguest account\fR, then this 
6070 guest user will be used, otherwise access is denied.
6073 Note that it can be \fBvery\fR confusing 
6074 in share-level security as to which UNIX username will eventually
6075 be used in granting access.
6078 See also the section  NOTE ABOUT USERNAME/PASSWORD VALIDATION.
6081 \fBSECURITY = USER
6082 \fR.PP
6084 This is the default security setting in Samba 2.2. 
6085 With user-level security a client must first "log-on" with a 
6086 valid username and password (which can be mapped using the \fIusername map\fR 
6087 parameter). Encrypted passwords (see the  \fIencrypted passwords\fR parameter) can also
6088 be used in this security mode. Parameters such as  \fIuser\fR and  \fIguest only\fR if set are then applied and 
6089 may change the UNIX user to use on this connection, but only after 
6090 the user has been successfully authenticated.
6093 \fBNote\fR that the name of the resource being 
6094 requested is \fBnot\fR sent to the server until after 
6095 the server has successfully authenticated the client. This is why 
6096 guest shares don't work in user level security without allowing 
6097 the server to automatically map unknown users into the \fIguest account\fR. 
6098 See the \fImap to guest\fR
6099 parameter for details on doing this.
6102 See also the section  NOTE ABOUT USERNAME/PASSWORD VALIDATION.
6105 \fBSECURITY = SERVER
6106 \fR.PP
6108 In this mode Samba will try to validate the username/password 
6109 by passing it to another SMB server, such as an NT box. If this 
6110 fails it will revert to \fBsecurity = user\fR, but note 
6111 that if encrypted passwords have been negotiated then Samba cannot 
6112 revert back to checking the UNIX password file, it must have a valid 
6113 \fIsmbpasswd\fR file to check users against. See the 
6114 documentation file in the \fIdocs/\fR directory 
6115 \fIENCRYPTION.txt\fR for details on how to set this 
6119 \fBNote\fR that from the client's point of 
6120 view \fBsecurity = server\fR is the same as \fB security = user\fR. It only affects how the server deals 
6121 with the authentication, it does not in any way affect what the 
6122 client sees.
6125 \fBNote\fR that the name of the resource being 
6126 requested is \fBnot\fR sent to the server until after 
6127 the server has successfully authenticated the client. This is why 
6128 guest shares don't work in user level security without allowing 
6129 the server to automatically map unknown users into the \fIguest account\fR. 
6130 See the \fImap to guest\fR
6131 parameter for details on doing this.
6134 See also the section  NOTE ABOUT USERNAME/PASSWORD VALIDATION.
6137 See also the \fIpassword 
6138 server\fR parameter and the \fIencrypted passwords\fR
6139 parameter.
6142 \fBSECURITY = DOMAIN
6143 \fR.PP
6145 This mode will only work correctly if smbpasswd(8) has been used to add this 
6146 machine into a Windows NT Domain. It expects the \fIencrypted passwords\fR
6147 parameter to be set to yes. In this 
6148 mode Samba will try to validate the username/password by passing
6149 it to a Windows NT Primary or Backup Domain Controller, in exactly 
6150 the same way that a Windows NT Server would do.
6153 \fBNote\fR that a valid UNIX user must still 
6154 exist as well as the account on the Domain Controller to allow 
6155 Samba to have a valid UNIX account to map file access to.
6158 \fBNote\fR that from the client's point 
6159 of view \fBsecurity = domain\fR is the same as \fBsecurity = user
6160 \fR\&. It only affects how the server deals with the authentication, 
6161 it does not in any way affect what the client sees.
6164 \fBNote\fR that the name of the resource being 
6165 requested is \fBnot\fR sent to the server until after 
6166 the server has successfully authenticated the client. This is why 
6167 guest shares don't work in user level security without allowing 
6168 the server to automatically map unknown users into the \fIguest account\fR. 
6169 See the \fImap to guest\fR
6170 parameter for details on doing this.
6173 \fBBUG:\fR There is currently a bug in the 
6174 implementation of \fBsecurity = domain\fR with respect 
6175 to multi-byte character set usernames. The communication with a 
6176 Domain Controller must be done in UNICODE and Samba currently 
6177 does not widen multi-byte user names to UNICODE correctly, thus 
6178 a multi-byte username will not be recognized correctly at the 
6179 Domain Controller. This issue will be addressed in a future release.
6182 See also the section  NOTE ABOUT USERNAME/PASSWORD VALIDATION.
6185 See also the \fIpassword 
6186 server\fR parameter and the \fIencrypted passwords\fR
6187 parameter.
6190 Default: \fBsecurity = USER\fR
6193 Example: \fBsecurity = DOMAIN\fR
6196 \fBsecurity mask (S)\fR
6197 This parameter controls what UNIX permission 
6198 bits can be modified when a Windows NT client is manipulating 
6199 the UNIX permission on a file using the native NT security 
6200 dialog box.
6202 This parameter is applied as a mask (AND'ed with) to 
6203 the changed permission bits, thus preventing any bits not in 
6204 this mask from being modified. Essentially, zero bits in this 
6205 mask may be treated as a set of bits the user is not allowed 
6206 to change.
6208 If not set explicitly this parameter is 0777, allowing
6209 a user to modify all the user/group/world permissions on a file.
6211 \fBNote\fR that users who can access the 
6212 Samba server through other means can easily bypass this 
6213 restriction, so it is primarily useful for standalone 
6214 "appliance" systems. Administrators of most normal systems will 
6215 probably want to leave it set to 0777.
6217 See also the  \fIforce directory security mode\fR, 
6218 \fIdirectory 
6219 security mask\fR,  \fIforce security mode\fR parameters.
6221 Default: \fBsecurity mask = 0777\fR
6223 Example: \fBsecurity mask = 0770\fR
6225 \fBserver string (G)\fR
6226 This controls what string will show up in the 
6227 printer comment box in print manager and next to the IPC connection 
6228 in \fBnet view\fR. It can be any string that you wish 
6229 to show to your users.
6231 It also sets what will appear in browse lists next 
6232 to the machine name.
6234 A \fI%v\fR will be replaced with the Samba 
6235 version number.
6237 A \fI%h\fR will be replaced with the 
6238 hostname.
6240 Default: \fBserver string = Samba %v\fR
6242 Example: \fBserver string = University of GNUs Samba 
6243 Server\fR
6245 \fBset directory (S)\fR
6246 If \fBset directory = no\fR, then 
6247 users of the service may not use the setdir command to change 
6248 directory.
6250 The \fBsetdir\fR command is only implemented 
6251 in the Digital Pathworks client. See the Pathworks documentation 
6252 for details.
6254 Default: \fBset directory = no\fR
6256 \fBshare modes (S)\fR
6257 This enables or disables the honoring of 
6258 the \fIshare modes\fR during a file open. These 
6259 modes are used by clients to gain exclusive read or write access 
6260 to a file.
6262 These open modes are not directly supported by UNIX, so
6263 they are simulated using shared memory, or lock files if your 
6264 UNIX doesn't support shared memory (almost all do).
6266 The share modes that are enabled by this option are 
6267 DENY_DOS, DENY_ALL,
6268 DENY_READ, DENY_WRITE,
6269 DENY_NONE and DENY_FCB.
6271 This option gives full share compatibility and enabled 
6272 by default.
6274 You should \fBNEVER\fR turn this parameter 
6275 off as many Windows applications will break if you do so.
6277 Default: \fBshare modes = yes\fR
6279 \fBshort preserve case (S)\fR
6280 This boolean parameter controls if new files 
6281 which conform to 8.3 syntax, that is all in upper case and of 
6282 suitable length, are created upper case, or if they are forced 
6283 to be the \fIdefault case
6284 \fR\&. This option can be use with \fBpreserve case = yes\fR
6285 to permit long filenames to retain their case, while short 
6286 names are lowered. 
6288 See the section on  NAME MANGLING.
6290 Default: \fBshort preserve case = yes\fR
6292 \fBshow add printer wizard (G)\fR
6293 With the introduction of MS-RPC based printing support
6294 for Windows NT/2000 client in Samba 2.2, a "Printers..." folder will 
6295 appear on Samba hosts in the share listing. Normally this folder will 
6296 contain an icon for the MS Add Printer Wizard (APW). However, it is 
6297 possible to disable this feature regardless of the level of privilege 
6298 of the connected user.
6300 Under normal circumstances, the Windows NT/2000 client will 
6301 open a handle on the printer server with OpenPrinterEx() asking for
6302 Administrator privileges. If the user does not have administrative
6303 access on the print server (i.e is not root or a member of the 
6304 \fIprinter admin\fR group), the OpenPrinterEx() 
6305 call fails and the client makes another open call with a request for 
6306 a lower privilege level. This should succeed, however the APW 
6307 icon will not be displayed.
6309 Disabling the \fIshow add printer wizard\fR
6310 parameter will always cause the OpenPrinterEx() on the server
6311 to fail. Thus the APW icon will never be displayed. \fB Note :\fRThis does not prevent the same user from having 
6312 administrative privilege on an individual printer.
6314 See also \fIaddprinter
6315 command\fR,  \fIdeleteprinter command\fR, \fIprinter admin\fR
6317 Default :\fBshow add printer wizard = yes\fR
6319 \fBsmb passwd file (G)\fR
6320 This option sets the path to the encrypted 
6321 smbpasswd file. By default the path to the smbpasswd file 
6322 is compiled into Samba.
6324 Default: \fBsmb passwd file = ${prefix}/private/smbpasswd
6326 Example: \fBsmb passwd file = /etc/samba/smbpasswd
6327 \fR.TP
6328 \fBsocket address (G)\fR
6329 This option allows you to control what 
6330 address Samba will listen for connections on. This is used to 
6331 support multiple virtual interfaces on the one server, each 
6332 with a different configuration.
6334 By default Samba will accept connections on any 
6335 address.
6337 Example: \fBsocket address = 192.168.2.20\fR
6339 \fBsocket options (G)\fR
6340 This option allows you to set socket options 
6341 to be used when talking with the client.
6343 Socket options are controls on the networking layer 
6344 of the operating systems which allow the connection to be 
6345 tuned.
6347 This option will typically be used to tune your Samba 
6348 server for optimal performance for your local network. There is 
6349 no way that Samba can know what the optimal parameters are for 
6350 your net, so you must experiment and choose them yourself. We 
6351 strongly suggest you read the appropriate documentation for your 
6352 operating system first (perhaps \fBman setsockopt\fR 
6353 will help).
6355 You may find that on some systems Samba will say 
6356 "Unknown socket option" when you supply an option. This means you 
6357 either incorrectly typed it or you need to add an include file 
6358 to includes.h for your OS. If the latter is the case please 
6359 send the patch to  samba@samba.org <URL:mailto:samba@samba.org>.
6361 Any of the supported socket options may be combined 
6362 in any way you like, as long as your OS allows it.
6364 This is the list of socket options currently settable 
6365 using this option:
6367 .TP 0.2i
6368 \(bu
6369 SO_KEEPALIVE
6370 .TP 0.2i
6371 \(bu
6372 SO_REUSEADDR
6373 .TP 0.2i
6374 \(bu
6375 SO_BROADCAST
6376 .TP 0.2i
6377 \(bu
6378 TCP_NODELAY
6379 .TP 0.2i
6380 \(bu
6381 IPTOS_LOWDELAY
6382 .TP 0.2i
6383 \(bu
6384 IPTOS_THROUGHPUT
6385 .TP 0.2i
6386 \(bu
6387 SO_SNDBUF *
6388 .TP 0.2i
6389 \(bu
6390 SO_RCVBUF *
6391 .TP 0.2i
6392 \(bu
6393 SO_SNDLOWAT *
6394 .TP 0.2i
6395 \(bu
6396 SO_RCVLOWAT *
6399 Those marked with a \fB'*'\fR take an integer 
6400 argument. The others can optionally take a 1 or 0 argument to enable 
6401 or disable the option, by default they will be enabled if you 
6402 don't specify 1 or 0.
6405 To specify an argument use the syntax SOME_OPTION = VALUE 
6406 for example \fBSO_SNDBUF = 8192\fR. Note that you must 
6407 not have any spaces before or after the = sign.
6410 If you are on a local network then a sensible option 
6411 might be
6414 \fBsocket options = IPTOS_LOWDELAY\fR
6417 If you have a local network then you could try:
6420 \fBsocket options = IPTOS_LOWDELAY TCP_NODELAY\fR
6423 If you are on a wide area network then perhaps try 
6424 setting IPTOS_THROUGHPUT. 
6427 Note that several of the options may cause your Samba 
6428 server to fail completely. Use these options with caution!
6431 Default: \fBsocket options = TCP_NODELAY\fR
6434 Example: \fBsocket options = IPTOS_LOWDELAY\fR
6437 \fBsource environment (G)\fR
6438 This parameter causes Samba to set environment 
6439 variables as per the content of the file named.
6441 If the value of this parameter starts with a "|" character 
6442 then Samba will treat that value as a pipe command to open and 
6443 will set the environment variables from the output of the pipe.
6445 The contents of the file or the output of the pipe should 
6446 be formatted as the output of the standard Unix \fBenv(1)
6447 \fRcommand. This is of the form :
6449 Example environment entry:
6451 \fBSAMBA_NETBIOS_NAME = myhostname\fR
6453 Default: \fBNo default value\fR
6455 Examples: \fBsource environment = |/etc/smb.conf.sh
6457 Example: \fBsource environment = 
6458 /usr/local/smb_env_vars\fR
6460 \fBssl (G)\fR
6461 This variable is part of SSL-enabled Samba. This 
6462 is only available if the SSL libraries have been compiled on your 
6463 system and the configure option \fB--with-ssl\fR was 
6464 given at configure time.
6466 This variable enables or disables the entire SSL mode. If 
6467 it is set to no, the SSL-enabled Samba behaves 
6468 exactly like the non-SSL Samba. If set to yes, 
6469 it depends on the variables \fI ssl hosts\fR and  \fIssl hosts resign\fR whether an SSL 
6470 connection will be required.
6472 Default: \fBssl = no\fR
6474 \fBssl CA certDir (G)\fR
6475 This variable is part of SSL-enabled Samba. This 
6476 is only available if the SSL libraries have been compiled on your 
6477 system and the configure option \fB--with-ssl\fR was 
6478 given at configure time.
6480 This variable defines where to look up the Certification
6481 Authorities. The given directory should contain one file for 
6482 each CA that Samba will trust. The file name must be the hash 
6483 value over the "Distinguished Name" of the CA. How this directory 
6484 is set up is explained later in this document. All files within the 
6485 directory that don't fit into this naming scheme are ignored. You 
6486 don't need this variable if you don't verify client certificates.
6488 Default: \fBssl CA certDir = /usr/local/ssl/certs
6489 \fR.TP
6490 \fBssl CA certFile (G)\fR
6491 This variable is part of SSL-enabled Samba. This 
6492 is only available if the SSL libraries have been compiled on your 
6493 system and the configure option \fB--with-ssl\fR was 
6494 given at configure time.
6496 This variable is a second way to define the trusted CAs. 
6497 The certificates of the trusted CAs are collected in one big 
6498 file and this variable points to the file. You will probably 
6499 only use one of the two ways to define your CAs. The first choice is 
6500 preferable if you have many CAs or want to be flexible, the second 
6501 is preferable if you only have one CA and want to keep things 
6502 simple (you won't need to create the hashed file names). You 
6503 don't need this variable if you don't verify client certificates.
6505 Default: \fBssl CA certFile = /usr/local/ssl/certs/trustedCAs.pem
6506 \fR.TP
6507 \fBssl ciphers (G)\fR
6508 This variable is part of SSL-enabled Samba. This 
6509 is only available if the SSL libraries have been compiled on your 
6510 system and the configure option \fB--with-ssl\fR was 
6511 given at configure time.
6513 This variable defines the ciphers that should be offered 
6514 during SSL negotiation. You should not set this variable unless 
6515 you know what you are doing.
6517 \fBssl client cert (G)\fR
6518 This variable is part of SSL-enabled Samba. This 
6519 is only available if the SSL libraries have been compiled on your 
6520 system and the configure option \fB--with-ssl\fR was 
6521 given at configure time.
6523 The certificate in this file is used by  \fBsmbclient(1)\fR if it exists. It's needed 
6524 if the server requires a client certificate.
6526 Default: \fBssl client cert = /usr/local/ssl/certs/smbclient.pem
6527 \fR.TP
6528 \fBssl client key (G)\fR
6529 This variable is part of SSL-enabled Samba. This 
6530 is only available if the SSL libraries have been compiled on your 
6531 system and the configure option \fB--with-ssl\fR was 
6532 given at configure time.
6534 This is the private key for  \fBsmbclient(1)\fR It's only needed if the 
6535 client should have a certificate. 
6537 Default: \fBssl client key = /usr/local/ssl/private/smbclient.pem
6538 \fR.TP
6539 \fBssl compatibility (G)\fR
6540 This variable is part of SSL-enabled Samba. This 
6541 is only available if the SSL libraries have been compiled on your 
6542 system and the configure option \fB--with-ssl\fR was 
6543 given at configure time.
6545 This variable defines whether OpenSSL should be configured 
6546 for bug compatibility with other SSL implementations. This is 
6547 probably not desirable because currently no clients with SSL 
6548 implementations other than OpenSSL exist.
6550 Default: \fBssl compatibility = no\fR
6552 \fBssl egd socket (G)\fR
6553 This variable is part of SSL-enabled Samba. This 
6554 is only available if the SSL libraries have been compiled on your 
6555 system and the configure option \fB--with-ssl\fR was 
6556 given at configure time.
6558 This option is used to define the location of the communiation socket of 
6559 an EGD or PRNGD daemon, from which entropy can be retrieved. This option 
6560 can be used instead of or together with the \fIssl entropy file\fR 
6561 directive. 255 bytes of entropy will be retrieved from the daemon.
6563 Default: \fBnone\fR
6565 \fBssl entropy bytes (G)\fR
6566 This variable is part of SSL-enabled Samba. This 
6567 is only available if the SSL libraries have been compiled on your 
6568 system and the configure option \fB--with-ssl\fR was 
6569 given at configure time.
6571 This parameter is used to define the number of bytes which should 
6572 be read from the \fIssl entropy 
6573 file\fR If a -1 is specified, the entire file will
6574 be read.
6576 Default: \fBssl entropy bytes = 255\fR
6578 \fBssl entropy file (G)\fR
6579 This variable is part of SSL-enabled Samba. This 
6580 is only available if the SSL libraries have been compiled on your 
6581 system and the configure option \fB--with-ssl\fR was 
6582 given at configure time.
6584 This parameter is used to specify a file from which processes will 
6585 read "random bytes" on startup. In order to seed the internal pseudo 
6586 random number generator, entropy must be provided. On system with a 
6587 \fI/dev/urandom\fR device file, the processes
6588 will retrieve its entropy from the kernel. On systems without kernel
6589 entropy support, a file can be supplied that will be read on startup
6590 and that will be used to seed the PRNG.
6592 Default: \fBnone\fR
6594 \fBssl hosts (G)\fR
6595 See \fI ssl hosts resign\fR.
6597 \fBssl hosts resign (G)\fR
6598 This variable is part of SSL-enabled Samba. This 
6599 is only available if the SSL libraries have been compiled on your 
6600 system and the configure option \fB--with-ssl\fR was 
6601 given at configure time.
6603 These two variables define whether Samba will go 
6604 into SSL mode or not. If none of them is defined, Samba will 
6605 allow only SSL connections. If the  \fIssl hosts\fR variable lists
6606 hosts (by IP-address, IP-address range, net group or name), 
6607 only these hosts will be forced into SSL mode. If the \fI ssl hosts resign\fR variable lists hosts, only these 
6608 hosts will \fBNOT\fR be forced into SSL mode. The syntax for these two 
6609 variables is the same as for the \fI hosts allow\fR and  \fIhosts deny\fR pair of variables, only 
6610 that the subject of the decision is different: It's not the access 
6611 right but whether SSL is used or not. 
6613 The example below requires SSL connections from all hosts
6614 outside the local net (which is 192.168.*.*).
6616 Default: \fBssl hosts = <empty string>\fR
6618 \fBssl hosts resign = <empty string>\fR
6620 Example: \fBssl hosts resign = 192.168.\fR
6622 \fBssl require clientcert (G)\fR
6623 This variable is part of SSL-enabled Samba. This 
6624 is only available if the SSL libraries have been compiled on your 
6625 system and the configure option \fB--with-ssl\fR was 
6626 given at configure time.
6628 If this variable is set to yes, the 
6629 server will not tolerate connections from clients that don't 
6630 have a valid certificate. The directory/file given in \fIssl CA certDir\fR
6631 and \fIssl CA certFile
6632 \fRwill be used to look up the CAs that issued 
6633 the client's certificate. If the certificate can't be verified 
6634 positively, the connection will be terminated. If this variable 
6635 is set to no, clients don't need certificates. 
6636 Contrary to web applications you really \fBshould\fR 
6637 require client certificates. In the web environment the client's 
6638 data is sensitive (credit card numbers) and the server must prove 
6639 to be trustworthy. In a file server environment the server's data 
6640 will be sensitive and the clients must prove to be trustworthy.
6642 Default: \fBssl require clientcert = no\fR
6644 \fBssl require servercert (G)\fR
6645 This variable is part of SSL-enabled Samba. This 
6646 is only available if the SSL libraries have been compiled on your 
6647 system and the configure option \fB--with-ssl\fR was 
6648 given at configure time.
6650 If this variable is set to yes, the 
6651 \fBsmbclient(1)\fR
6652  will request a certificate from the server. Same as 
6653 \fIssl require 
6654 clientcert\fR for the server.
6656 Default: \fBssl require servercert = no\fR
6658 \fBssl server cert (G)\fR
6659 This variable is part of SSL-enabled Samba. This 
6660 is only available if the SSL libraries have been compiled on your 
6661 system and the configure option \fB--with-ssl\fR was 
6662 given at configure time.
6664 This is the file containing the server's certificate. 
6665 The server \fBmust\fR have a certificate. The 
6666 file may also contain the server's private key. See later for 
6667 how certificates and private keys are created.
6669 Default: \fBssl server cert = <empty string>
6670 \fR.TP
6671 \fBssl server key (G)\fR
6672 This variable is part of SSL-enabled Samba. This 
6673 is only available if the SSL libraries have been compiled on your 
6674 system and the configure option \fB--with-ssl\fR was 
6675 given at configure time.
6677 This file contains the private key of the server. If 
6678 this variable is not defined, the key is looked up in the 
6679 certificate file (it may be appended to the certificate). 
6680 The server \fBmust\fR have a private key
6681 and the certificate \fBmust\fR 
6682 match this private key.
6684 Default: \fBssl server key = <empty string>
6685 \fR.TP
6686 \fBssl version (G)\fR
6687 This variable is part of SSL-enabled Samba. This 
6688 is only available if the SSL libraries have been compiled on your 
6689 system and the configure option \fB--with-ssl\fR was 
6690 given at configure time.
6692 This enumeration variable defines the versions of the 
6693 SSL protocol that will be used. ssl2or3 allows 
6694 dynamic negotiation of SSL v2 or v3, ssl2 results 
6695 in SSL v2, ssl3 results in SSL v3 and
6696 tls1 results in TLS v1. TLS (Transport Layer 
6697 Security) is the new standard for SSL.
6699 Default: \fBssl version = "ssl2or3"\fR
6701 \fBstat cache (G)\fR
6702 This parameter determines if smbd(8) will use a cache in order to 
6703 speed up case insensitive name mappings. You should never need 
6704 to change this parameter.
6706 Default: \fBstat cache = yes\fR
6708 \fBstat cache size (G)\fR
6709 This parameter determines the number of 
6710 entries in the \fIstat cache\fR. You should 
6711 never need to change this parameter.
6713 Default: \fBstat cache size = 50\fR
6715 \fBstatus (G)\fR
6716 This enables or disables logging of connections 
6717 to a status file that smbstatus(1)
6718 can read.
6720 With this disabled \fBsmbstatus\fR won't be able
6721 to tell you what connections are active. You should never need to
6722 change this parameter.
6724 Default: \fBstatus = yes\fR
6726 \fBstrict allocate (S)\fR
6727 This is a boolean that controls the handling of 
6728 disk space allocation in the server. When this is set to yes 
6729 the server will change from UNIX behaviour of not committing real
6730 disk storage blocks when a file is extended to the Windows behaviour
6731 of actually forcing the disk system to allocate real storage blocks
6732 when a file is created or extended to be a given size. In UNIX
6733 terminology this means that Samba will stop creating sparse files.
6734 This can be slow on some systems.
6736 When strict allocate is no the server does sparse
6737 disk block allocation when a file is extended.
6739 Setting this to yes can help Samba return
6740 out of quota messages on systems that are restricting the disk quota
6741 of users.
6743 Default: \fBstrict allocate = no\fR
6745 \fBstrict locking (S)\fR
6746 This is a boolean that controls the handling of 
6747 file locking in the server. When this is set to yes 
6748 the server will check every read and write access for file locks, and 
6749 deny access if locks exist. This can be slow on some systems.
6751 When strict locking is no the server does file 
6752 lock checks only when the client explicitly asks for them.
6754 Well-behaved clients always ask for lock checks when it 
6755 is important, so in the vast majority of cases \fBstrict 
6756 locking = no\fR is preferable.
6758 Default: \fBstrict locking = no\fR
6760 \fBstrict sync (S)\fR
6761 Many Windows applications (including the Windows 
6762 98 explorer shell) seem to confuse flushing buffer contents to 
6763 disk with doing a sync to disk. Under UNIX, a sync call forces 
6764 the process to be suspended until the kernel has ensured that 
6765 all outstanding data in kernel disk buffers has been safely stored 
6766 onto stable storage. This is very slow and should only be done 
6767 rarely. Setting this parameter to no (the 
6768 default) means that smbd ignores the Windows applications requests for
6769 a sync call. There is only a possibility of losing data if the
6770 operating system itself that Samba is running on crashes, so there is
6771 little danger in this default setting. In addition, this fixes many
6772 performance problems that people have reported with the new Windows98
6773 explorer shell file copies.
6775 See also the \fIsync 
6776 always>\fR parameter.
6778 Default: \fBstrict sync = no\fR
6780 \fBstrip dot (G)\fR
6781 This parameter is now unused in Samba (2.2.5 and above).
6782 It used strip trailing dots off UNIX filenames but was not correctly implmented.
6783 In Samba 2.2.5 and above UNIX filenames ending in a dot are invalid Windows long
6784 filenames (as they are in Windows NT and above) and are mangled to 8.3 before
6785 being returned to a client.
6787 Default: \fBstrip dot = no\fR
6789 \fBsync always (S)\fR
6790 This is a boolean parameter that controls 
6791 whether writes will always be written to stable storage before 
6792 the write call returns. If this is no then the server will be 
6793 guided by the client's request in each write call (clients can 
6794 set a bit indicating that a particular write should be synchronous). 
6795 If this is yes then every write will be followed by a \fBfsync()
6796 \fRcall to ensure the data is written to disk. Note that 
6797 the \fIstrict sync\fR parameter must be set to
6798 yes in order for this parameter to have 
6799 any affect.
6801 See also the \fIstrict 
6802 sync\fR parameter.
6804 Default: \fBsync always = no\fR
6806 \fBsyslog (G)\fR
6807 This parameter maps how Samba debug messages 
6808 are logged onto the system syslog logging levels. Samba debug 
6809 level zero maps onto syslog LOG_ERR, debug 
6810 level one maps onto LOG_WARNING, debug level 
6811 two maps onto LOG_NOTICE, debug level three 
6812 maps onto LOG_INFO. All higher levels are mapped to  LOG_DEBUG.
6814 This parameter sets the threshold for sending messages 
6815 to syslog. Only messages with debug level less than this value 
6816 will be sent to syslog.
6818 Default: \fBsyslog = 1\fR
6820 \fBsyslog only (G)\fR
6821 If this parameter is set then Samba debug 
6822 messages are logged into the system syslog only, and not to 
6823 the debug log files.
6825 Default: \fBsyslog only = no\fR
6827 \fBtemplate homedir (G)\fR
6828 When filling out the user information for a Windows NT 
6829 user, the winbindd(8) daemon 
6830 uses this parameter to fill in the home directory for that user. 
6831 If the string \fI%D\fR is present it is substituted 
6832 with the user's Windows NT domain name. If the string \fI%U
6833 \fRis present it is substituted with the user's Windows 
6834 NT user name.
6836 Default: \fBtemplate homedir = /home/%D/%U\fR
6838 \fBtemplate shell (G)\fR
6839 When filling out the user information for a Windows NT 
6840 user, the winbindd(8) daemon 
6841 uses this parameter to fill in the login shell for that user.
6843 Default: \fBtemplate shell = /bin/false\fR
6845 \fBtime offset (G)\fR
6846 This parameter is a setting in minutes to add 
6847 to the normal GMT to local time conversion. This is useful if 
6848 you are serving a lot of PCs that have incorrect daylight 
6849 saving time handling.
6851 Default: \fBtime offset = 0\fR
6853 Example: \fBtime offset = 60\fR
6855 \fBtime server (G)\fR
6856 This parameter determines if  
6857 nmbd(8) advertises itself as a time server to Windows 
6858 clients.
6860 Default: \fBtime server = no\fR
6862 \fBtimestamp logs (G)\fR
6863 Synonym for \fI debug timestamp\fR.
6865 \fBtotal print jobs (G)\fR
6866 This parameter accepts an integer value which defines
6867 a limit on the maximum number of print jobs that will be accepted 
6868 system wide at any given time. If a print job is submitted
6869 by a client which will exceed this number, then smbd will return an 
6870 error indicating that no space is available on the server. The 
6871 default value of 0 means that no such limit exists. This parameter
6872 can be used to prevent a server from exceeding its capacity and is
6873 designed as a printing throttle. See also 
6874 \fImax print jobs\fR.
6876 Default: \fBtotal print jobs = 0\fR
6878 Example: \fBtotal print jobs = 5000\fR
6880 \fBunix extensions(G)\fR
6881 This boolean parameter controls whether Samba 
6882 implments the CIFS UNIX extensions, as defined by HP. 
6883 These extensions enable Samba to better serve UNIX CIFS clients
6884 by supporting features such as symbolic links, hard links, etc...
6885 These extensions require a similarly enabled client, and are of
6886 no current use to Windows clients.
6888 Default: \fBunix extensions = no\fR
6890 \fBunix password sync (G)\fR
6891 This boolean parameter controls whether Samba 
6892 attempts to synchronize the UNIX password with the SMB password 
6893 when the encrypted SMB password in the smbpasswd file is changed. 
6894 If this is set to yes the program specified in the \fIpasswd
6895 program\fRparameter is called \fBAS ROOT\fR - 
6896 to allow the new UNIX password to be set without access to the 
6897 old UNIX password (as the SMB password change code has no 
6898 access to the old password cleartext, only the new).
6900 See also \fIpasswd 
6901 program\fR, \fI passwd chat\fR.
6903 Default: \fBunix password sync = no\fR
6905 \fBupdate encrypted (G)\fR
6906 This boolean parameter allows a user logging 
6907 on with a plaintext password to have their encrypted (hashed) 
6908 password in the smbpasswd file to be updated automatically as 
6909 they log on. This option allows a site to migrate from plaintext 
6910 password authentication (users authenticate with plaintext 
6911 password over the wire, and are checked against a UNIX account 
6912 database) to encrypted password authentication (the SMB 
6913 challenge/response authentication mechanism) without forcing
6914 all users to re-enter their passwords via smbpasswd at the time the
6915 change is made. This is a convenience option to allow the change over
6916 to encrypted passwords to be made over a longer period. Once all users
6917 have encrypted representations of their passwords in the smbpasswd
6918 file this parameter should be set to no.
6920 In order for this parameter to work correctly the \fIencrypt passwords\fR
6921 parameter must be set to no when
6922 this parameter is set to yes.
6924 Note that even when this parameter is set a user 
6925 authenticating to \fBsmbd\fR must still enter a valid 
6926 password in order to connect correctly, and to update their hashed 
6927 (smbpasswd) passwords.
6929 Default: \fBupdate encrypted = no\fR
6931 \fBuse client driver (S)\fR
6932 This parameter applies only to Windows NT/2000
6933 clients. It has no affect on Windows 95/98/ME clients. When 
6934 serving a printer to Windows NT/2000 clients without first installing
6935 a valid printer driver on the Samba host, the client will be required
6936 to install a local printer driver. From this point on, the client
6937 will treat the print as a local printer and not a network printer 
6938 connection. This is much the same behavior that will occur
6939 when \fBdisable spoolss = yes\fR. 
6941 The differentiating 
6942 factor is that under normal circumstances, the NT/2000 client will 
6943 attempt to open the network printer using MS-RPC. The problem is that
6944 because the client considers the printer to be local, it will attempt
6945 to issue the OpenPrinterEx() call requesting access rights associated 
6946 with the logged on user. If the user possesses local administator rights
6947 but not root privilegde on the Samba host (often the case), the OpenPrinterEx()
6948 call will fail. The result is that the client will now display an "Access
6949 Denied; Unable to connect" message in the printer queue window (even though
6950 jobs may successfully be printed). 
6952 If this parameter is enabled for a printer, then any attempt
6953 to open the printer with the PRINTER_ACCESS_ADMINISTER right is mapped
6954 to PRINTER_ACCESS_USE instead. Thus allowing the OpenPrinterEx()
6955 call to succeed. \fBThis parameter MUST not be able enabled
6956 on a print share which has valid print driver installed on the Samba 
6957 server.\fR
6959 See also disable spoolss
6961 Default: \fBuse client driver = no\fR
6963 \fBuse mmap (G)\fR
6964 This global parameter determines if the tdb internals of Samba can
6965 depend on mmap working correctly on the running system. Samba requires a coherent
6966 mmap/read-write system memory cache. Currently only HPUX does not have such a
6967 coherent cache, and so this parameter is set to no by
6968 default on HPUX. On all other systems this parameter should be left alone. This
6969 parameter is provided to help the Samba developers track down problems with
6970 the tdb internal code.
6972 Default: \fBuse mmap = yes\fR
6974 \fBuse rhosts (G)\fR
6975 If this global parameter is yes, it specifies 
6976 that the UNIX user's \fI.rhosts\fR file in their home directory 
6977 will be read to find the names of hosts and users who will be allowed 
6978 access without specifying a password.
6980 \fBNOTE:\fR The use of \fIuse rhosts
6981 \fRcan be a major security hole. This is because you are 
6982 trusting the PC to supply the correct username. It is very easy to 
6983 get a PC to supply a false username. I recommend that the \fI use rhosts\fR option be only used if you really know what 
6984 you are doing.
6986 Default: \fBuse rhosts = no\fR
6988 \fBuser (S)\fR
6989 Synonym for \fI username\fR.
6991 \fBusers (S)\fR
6992 Synonym for \fI username\fR.
6994 \fBusername (S)\fR
6995 Multiple users may be specified in a comma-delimited 
6996 list, in which case the supplied password will be tested against 
6997 each username in turn (left to right).
6999 The \fIusername\fR line is needed only when 
7000 the PC is unable to supply its own username. This is the case 
7001 for the COREPLUS protocol or where your users have different WfWg 
7002 usernames to UNIX usernames. In both these cases you may also be 
7003 better using the \\\\server\\share%user syntax instead.
7005 The \fIusername\fR line is not a great 
7006 solution in many cases as it means Samba will try to validate 
7007 the supplied password against each of the usernames in the 
7008 \fIusername\fR line in turn. This is slow and 
7009 a bad idea for lots of users in case of duplicate passwords. 
7010 You may get timeouts or security breaches using this parameter 
7011 unwisely.
7013 Samba relies on the underlying UNIX security. This 
7014 parameter does not restrict who can login, it just offers hints 
7015 to the Samba server as to what usernames might correspond to the 
7016 supplied password. Users can login as whoever they please and 
7017 they will be able to do no more damage than if they started a 
7018 telnet session. The daemon runs as the user that they log in as, 
7019 so they cannot do anything that user cannot do.
7021 To restrict a service to a particular set of users you 
7022 can use the \fIvalid users
7023 \fRparameter.
7025 If any of the usernames begin with a '@' then the name
7026 will be looked up first in the NIS netgroups list (if Samba 
7027 is compiled with netgroup support), followed by a lookup in 
7028 the UNIX groups database and will expand to a list of all users 
7029 in the group of that name.
7031 If any of the usernames begin with a '+' then the name 
7032 will be looked up only in the UNIX groups database and will 
7033 expand to a list of all users in the group of that name.
7035 If any of the usernames begin with a '&'then the name 
7036 will be looked up only in the NIS netgroups database (if Samba 
7037 is compiled with netgroup support) and will expand to a list 
7038 of all users in the netgroup group of that name.
7040 Note that searching though a groups database can take 
7041 quite some time, and some clients may time out during the 
7042 search.
7044 See the section NOTE ABOUT 
7045 USERNAME/PASSWORD VALIDATION for more information on how 
7046 this parameter determines access to the services.
7048 Default: \fBThe guest account if a guest service, 
7049 else <empty string>.\fR
7051 Examples:\fBusername = fred, mary, jack, jane, 
7052 @users, @pcgroup\fR
7054 \fBusername level (G)\fR
7055 This option helps Samba to try and 'guess' at 
7056 the real UNIX username, as many DOS clients send an all-uppercase 
7057 username. By default Samba tries all lowercase, followed by the 
7058 username with the first letter capitalized, and fails if the 
7059 username is not found on the UNIX machine.
7061 If this parameter is set to non-zero the behavior changes. 
7062 This parameter is a number that specifies the number of uppercase
7063 combinations to try while trying to determine the UNIX user name. The
7064 higher the number the more combinations will be tried, but the slower
7065 the discovery of usernames will be. Use this parameter when you have
7066 strange usernames on your UNIX machine, such as AstrangeUser
7069 Default: \fBusername level = 0\fR
7071 Example: \fBusername level = 5\fR
7073 \fBusername map (G)\fR
7074 This option allows you to specify a file containing 
7075 a mapping of usernames from the clients to the server. This can be 
7076 used for several purposes. The most common is to map usernames 
7077 that users use on DOS or Windows machines to those that the UNIX 
7078 box uses. The other is to map multiple users to a single username 
7079 so that they can more easily share files.
7081 The map file is parsed line by line. Each line should 
7082 contain a single UNIX username on the left then a '=' followed 
7083 by a list of usernames on the right. The list of usernames on the 
7084 right may contain names of the form @group in which case they 
7085 will match any UNIX username in that group. The special client 
7086 name '*' is a wildcard and matches any name. Each line of the 
7087 map file may be up to 1023 characters long.
7089 The file is processed on each line by taking the 
7090 supplied username and comparing it with each username on the right 
7091 hand side of the '=' signs. If the supplied name matches any of 
7092 the names on the right hand side then it is replaced with the name 
7093 on the left. Processing then continues with the next line.
7095 If any line begins with a '#' or a ';' then it is 
7096 ignored
7098 If any line begins with an '!' then the processing 
7099 will stop after that line if a mapping was done by the line. 
7100 Otherwise mapping continues with every line being processed. 
7101 Using '!' is most useful when you have a wildcard mapping line 
7102 later in the file.
7104 For example to map from the name admin 
7105 or administrator to the UNIX name  root you would use:
7107 \fBroot = admin administrator\fR
7109 Or to map anyone in the UNIX group system 
7110 to the UNIX name sys you would use:
7112 \fBsys = @system\fR
7114 You can have as many mappings as you like in a username 
7115 map file.
7117 If your system supports the NIS NETGROUP option then 
7118 the netgroup database is checked before the \fI/etc/group
7119 \fRdatabase for matching groups.
7121 You can map Windows usernames that have spaces in them
7122 by using double quotes around the name. For example:
7124 \fBtridge = "Andrew Tridgell"\fR
7126 would map the windows username "Andrew Tridgell" to the 
7127 unix username "tridge".
7129 The following example would map mary and fred to the 
7130 unix user sys, and map the rest to guest. Note the use of the 
7131 \&'!' to tell Samba to stop processing if it gets a match on 
7132 that line.
7136                 !sys = mary fred
7137                 guest = *
7138                 
7142 Note that the remapping is applied to all occurrences 
7143 of usernames. Thus if you connect to \\\\server\\fred and  fred is remapped to mary then you 
7144 will actually be connecting to \\\\server\\mary and will need to 
7145 supply a password suitable for mary not 
7146 fred. The only exception to this is the 
7147 username passed to the \fI password server\fR (if you have one). The password 
7148 server will receive whatever username the client supplies without 
7149 modification.
7151 Also note that no reverse mapping is done. The main effect 
7152 this has is with printing. Users who have been mapped may have 
7153 trouble deleting print jobs as PrintManager under WfWg will think 
7154 they don't own the print job.
7156 Default: \fBno username map\fR
7158 Example: \fBusername map = /usr/local/samba/lib/users.map
7159 \fR.TP
7160 \fBuse sendfile (S)\fR
7161 If this parameter is yes, and Samba
7162 was built with the --with-sendfile-support option, and the underlying operating
7163 system supports sendfile system call, then some SMB read calls (mainly ReadAndX
7164 and ReadRaw) will use the more efficient sendfile system call for files that
7165 are exclusively oplocked. This may make more efficient use of the system CPU's
7166 and cause Samba to be faster. This is off by default as it's effects are unknown
7167 as yet.
7169 Default: \fBuse sendfile = no\fR
7171 \fButmp (G)\fR
7172 This boolean parameter is only available if 
7173 Samba has been configured and compiled with the option \fB --with-utmp\fR. If set to yes then Samba will attempt
7174 to add utmp or utmpx records (depending on the UNIX system) whenever a
7175 connection is made to a Samba server. Sites may use this to record the
7176 user connecting to a Samba share.
7178 See also the \fI utmp directory\fR parameter.
7180 Default: \fButmp = no\fR
7182 \fButmp directory(G)\fR
7183 This parameter is only available if Samba has 
7184 been configured and compiled with the option \fB --with-utmp\fR. It specifies a directory pathname that is
7185 used to store the utmp or utmpx files (depending on the UNIX system) that
7186 record user connections to a Samba server. See also the  \fIutmp\fR parameter. By default this is 
7187 not set, meaning the system will use whatever utmp file the 
7188 native system is set to use (usually 
7189 \fI/var/run/utmp\fR on Linux).
7191 Default: \fBno utmp directory\fR
7193 \fBvalid chars (G)\fR
7194 The option allows you to specify additional 
7195 characters that should be considered valid by the server in 
7196 filenames. This is particularly useful for national character 
7197 sets, such as adding u-umlaut or a-ring.
7199 The option takes a list of characters in either integer 
7200 or character form with spaces between them. If you give two 
7201 characters with a colon between them then it will be taken as 
7202 an lowercase:uppercase pair.
7204 If you have an editor capable of entering the characters 
7205 into the config file then it is probably easiest to use this 
7206 method. Otherwise you can specify the characters in octal, 
7207 decimal or hexadecimal form using the usual C notation.
7209 For example to add the single character 'Z' to the charset 
7210 (which is a pointless thing to do as it's already there) you could 
7211 do one of the following
7215                 valid chars = Z
7216                 valid chars = z:Z
7217                 valid chars = 0132:0172
7218                 
7222 The last two examples above actually add two characters, 
7223 and alter the uppercase and lowercase mappings appropriately.
7225 Note that you \fBMUST\fR specify this parameter 
7226 after the \fIclient code page\fR parameter if you 
7227 have both set. If \fIclient code page\fR is set after 
7228 the \fIvalid chars\fR parameter the \fIvalid 
7229 chars\fR settings will be overwritten.
7231 See also the \fIclient 
7232 code page\fR parameter.
7234 Default: \fBSamba defaults to using a reasonable set 
7235 of valid characters for English systems\fR
7237 Example: \fBvalid chars = 0345:0305 0366:0326 0344:0304
7239 The above example allows filenames to have the Swedish 
7240 characters in them.
7242 \fBNOTE:\fR It is actually quite difficult to 
7243 correctly produce a \fIvalid chars\fR line for 
7244 a particular system. To automate the process tino@augsburg.net <URL:mailto:tino@augsburg.net> has written 
7245 a package called \fBvalidchars\fR which will automatically 
7246 produce a complete \fIvalid chars\fR line for
7247 a given client system. Look in the \fIexamples/validchars/
7248 \fRsubdirectory of your Samba source code distribution 
7249 for this package.
7251 \fBvalid users (S)\fR
7252 This is a list of users that should be allowed 
7253 to login to this service. Names starting with '@', '+' and '&'
7254 are interpreted using the same rules as described in the 
7255 \fIinvalid users\fR parameter.
7257 If this is empty (the default) then any user can login. 
7258 If a username is in both this list and the \fIinvalid 
7259 users\fR list then access is denied for that user.
7261 The current servicename is substituted for \fI%S
7262 \fR\&. This is useful in the [homes] section.
7264 See also \fIinvalid users
7266 Default: \fBNo valid users list (anyone can login)
7268 Example: \fBvalid users = greg, @pcusers\fR
7270 \fBveto files(S)\fR
7271 This is a list of files and directories that 
7272 are neither visible nor accessible. Each entry in the list must 
7273 be separated by a '/', which allows spaces to be included 
7274 in the entry. '*' and '?' can be used to specify multiple files 
7275 or directories as in DOS wildcards.
7277 Each entry must be a unix path, not a DOS path and 
7278 must \fBnot\fR include the unix directory 
7279 separator '/'.
7281 Note that the \fIcase sensitive\fR option 
7282 is applicable in vetoing files.
7284 One feature of the veto files parameter that it
7285 is important to be aware of is Samba's behaviour when
7286 trying to delete a directory. If a directory that is
7287 to be deleted contains nothing but veto files this
7288 deletion will \fBfail\fR unless you also set
7289 the \fIdelete veto files\fR parameter to
7290 \fIyes\fR.
7292 Setting this parameter will affect the performance 
7293 of Samba, as it will be forced to check all files and directories 
7294 for a match as they are scanned.
7296 See also \fIhide files
7297 \fRand \fI case sensitive\fR.
7299 Default: \fBNo files or directories are vetoed.
7301 Examples:
7304 ; Veto any files containing the word Security, 
7305 ; any ending in .tmp, and any directory containing the
7306 ; word root.
7307 veto files = /*Security*/*.tmp/*root*/
7309 ; Veto the Apple specific files that a NetAtalk server
7310 ; creates.
7311 veto files = /.AppleDouble/.bin/.AppleDesktop/Network Trash Folder/
7315 \fBveto oplock files (S)\fR
7316 This parameter is only valid when the \fIoplocks\fR
7317 parameter is turned on for a share. It allows the Samba administrator
7318 to selectively turn off the granting of oplocks on selected files that
7319 match a wildcarded list, similar to the wildcarded list used in the
7320 \fIveto files\fR 
7321 parameter.
7323 Default: \fBNo files are vetoed for oplock 
7324 grants\fR
7326 You might want to do this on files that you know will 
7327 be heavily contended for by clients. A good example of this 
7328 is in the NetBench SMB benchmark program, which causes heavy 
7329 client contention for files ending in \fI.SEM\fR. 
7330 To cause Samba not to grant oplocks on these files you would use 
7331 the line (either in the [global] section or in the section for 
7332 the particular NetBench share :
7334 Example: \fBveto oplock files = /*.SEM/
7335 \fR.TP
7336 \fBvfs object (S)\fR
7337 This parameter specifies a shared object file that 
7338 is used for Samba VFS I/O operations. By default, normal 
7339 disk I/O operations are used but these can be overloaded 
7340 with a VFS object. The Samba VFS layer is new to Samba 2.2 and 
7341 must be enabled at compile time with --with-vfs.
7343 Default : \fBno value\fR
7345 \fBvfs options (S)\fR
7346 This parameter allows parameters to be passed 
7347 to the vfs layer at initialization time. The Samba VFS layer 
7348 is new to Samba 2.2 and must be enabled at compile time 
7349 with --with-vfs. See also \fI vfs object\fR.
7351 Default : \fBno value\fR
7353 \fBvolume (S)\fR
7354 This allows you to override the volume label 
7355 returned for a share. Useful for CDROMs with installation programs 
7356 that insist on a particular volume label.
7358 Default: \fBthe name of the share\fR
7360 \fBwide links (S)\fR
7361 This parameter controls whether or not links 
7362 in the UNIX file system may be followed by the server. Links 
7363 that point to areas within the directory tree exported by the 
7364 server are always allowed; this parameter controls access only 
7365 to areas that are outside the directory tree being exported.
7367 Note that setting this parameter can have a negative 
7368 effect on your server performance due to the extra system calls 
7369 that Samba has to do in order to perform the link checks.
7371 Default: \fBwide links = yes\fR
7373 \fBwinbind cache time (G)\fR
7374 This parameter specifies the number of seconds the
7375 winbindd(8) daemon will cache 
7376 user and group information before querying a Windows NT server 
7377 again.
7379 Default: \fBwinbind cache type = 15\fR
7381 \fBwinbind enum users (G)\fR
7382 On large installations using
7383 winbindd(8) it may be
7384 necessary to suppress the enumeration of users through the
7385 \fBsetpwent()\fR,
7386 \fBgetpwent()\fR and
7387 \fBendpwent()\fR group of system calls. If
7388 the \fIwinbind enum users\fR parameter is
7389 no, calls to the \fBgetpwent\fR system call
7390 will not return any data. 
7392 \fBWarning:\fR Turning off user
7393 enumeration may cause some programs to behave oddly. For
7394 example, the finger program relies on having access to the
7395 full user list when searching for matching
7396 usernames. 
7398 Default: \fBwinbind enum users = yes \fR
7400 \fBwinbind enum groups (G)\fR
7401 On large installations using
7402 winbindd(8) it may be
7403 necessary to suppress the enumeration of groups through the
7404 \fBsetgrent()\fR,
7405 \fBgetgrent()\fR and
7406 \fBendgrent()\fR group of system calls. If
7407 the \fIwinbind enum groups\fR parameter is
7408 no, calls to the \fBgetgrent()\fR system
7409 call will not return any data. 
7411 \fBWarning:\fR Turning off group
7412 enumeration may cause some programs to behave oddly.
7414 Default: \fBwinbind enum groups = yes \fR
7416 \fBwinbind gid (G)\fR
7417 The winbind gid parameter specifies the range of group 
7418 ids that are allocated by the  winbindd(8) daemon. This range of group ids should have no 
7419 existing local or NIS groups within it as strange conflicts can 
7420 occur otherwise.
7422 Default: \fBwinbind gid = <empty string>
7424 Example: \fBwinbind gid = 10000-20000\fR
7426 \fBwinbind separator (G)\fR
7427 This parameter allows an admin to define the character 
7428 used when listing a username of the form of \fIDOMAIN
7429 \fR\\\fIuser\fR. This parameter 
7430 is only applicable when using the \fIpam_winbind.so\fR
7431 and \fInss_winbind.so\fR modules for UNIX services.
7433 Please note that setting this parameter to + causes problems
7434 with group membership at least on glibc systems, as the character +
7435 is used as a special character for NIS in /etc/group.
7437 Default: \fBwinbind separator = '\\'\fR
7439 Example: \fBwinbind separator = +\fR
7441 \fBwinbind uid (G)\fR
7442 The winbind gid parameter specifies the range of group 
7443 ids that are allocated by the  winbindd(8) daemon. This range of ids should have no 
7444 existing local or NIS users within it as strange conflicts can 
7445 occur otherwise.
7447 Default: \fBwinbind uid = <empty string>
7449 Example: \fBwinbind uid = 10000-20000\fR
7451 \fBwinbind use default domain\fR
7453 \fBwinbind use default domain\fR
7454 This parameter specifies whether the  winbindd(8)
7455 daemon should operate on users without domain component in their username. 
7456 Users without a domain component are treated as is part of the winbindd server's 
7457 own domain. While this does not benifit Windows users, it makes SSH, FTP and e-mail 
7458 function in a way much closer to the way they would in a native unix system.
7460 Default: \fBwinbind use default domain = <no> 
7462 Example: \fBwinbind use default domain = yes\fR
7464 \fBwins hook (G)\fR
7465 When Samba is running as a WINS server this 
7466 allows you to call an external program for all changes to the 
7467 WINS database. The primary use for this option is to allow the 
7468 dynamic update of external name resolution databases such as 
7469 dynamic DNS.
7471 The wins hook parameter specifies the name of a script 
7472 or executable that will be called as follows:
7474 \fBwins_hook operation name nametype ttl IP_list
7475 \fR.RS
7476 .TP 0.2i
7477 \(bu
7478 The first argument is the operation and is one 
7479 of "add", "delete", or "refresh". In most cases the operation can 
7480 be ignored as the rest of the parameters provide sufficient 
7481 information. Note that "refresh" may sometimes be called when the 
7482 name has not previously been added, in that case it should be treated 
7483 as an add.
7484 .TP 0.2i
7485 \(bu
7486 The second argument is the NetBIOS name. If the 
7487 name is not a legal name then the wins hook is not called. 
7488 Legal names contain only letters, digits, hyphens, underscores 
7489 and periods.
7490 .TP 0.2i
7491 \(bu
7492 The third argument is the NetBIOS name 
7493 type as a 2 digit hexadecimal number. 
7494 .TP 0.2i
7495 \(bu
7496 The fourth argument is the TTL (time to live) 
7497 for the name in seconds.
7498 .TP 0.2i
7499 \(bu
7500 The fifth and subsequent arguments are the IP 
7501 addresses currently registered for that name. If this list is 
7502 empty then the name should be deleted.
7505 An example script that calls the BIND dynamic DNS update 
7506 program \fBnsupdate\fR is provided in the examples 
7507 directory of the Samba source code. 
7510 \fBwins proxy (G)\fR
7511 This is a boolean that controls if nmbd(8) will respond to broadcast name 
7512 queries on behalf of other hosts. You may need to set this 
7513 to yes for some older clients.
7515 Default: \fBwins proxy = no\fR
7517 \fBwins server (G)\fR
7518 This specifies the IP address (or DNS name: IP 
7519 address for preference) of the WINS server that  nmbd(8) should register with. If you have a WINS server on 
7520 your network then you should set this to the WINS server's IP.
7522 You should point this at your WINS server if you have a
7523 multi-subnetted network.
7525 \fBNOTE\fR. You need to set up Samba to point 
7526 to a WINS server if you have multiple subnets and wish cross-subnet 
7527 browsing to work correctly.
7529 See the documentation file \fIBROWSING.txt\fR 
7530 in the docs/ directory of your Samba source distribution.
7532 Default: \fBnot enabled\fR
7534 Example: \fBwins server = 192.9.200.1\fR
7536 \fBwins support (G)\fR
7537 This boolean controls if the  
7538 nmbd(8) process in Samba will act as a WINS server. You should 
7539 not set this to yes unless you have a multi-subnetted network and 
7540 you wish a particular \fBnmbd\fR to be your WINS server. 
7541 Note that you should \fBNEVER\fR set this to yes
7542 on more than one machine in your network.
7544 Default: \fBwins support = no\fR
7546 \fBworkgroup (G)\fR
7547 This controls what workgroup your server will 
7548 appear to be in when queried by clients. Note that this parameter 
7549 also controls the Domain name used with the \fBsecurity = domain\fR
7550 setting.
7552 Default: \fBset at compile time to WORKGROUP\fR
7554 Example: \fBworkgroup = MYGROUP\fR
7556 \fBwritable (S)\fR
7557 Synonym for \fI writeable\fR for people who can't spell :-).
7559 \fBwrite cache size (S)\fR
7560 If this integer parameter is set to non-zero value,
7561 Samba will create an in-memory cache for each oplocked file 
7562 (it does \fBnot\fR do this for 
7563 non-oplocked files). All writes that the client does not request 
7564 to be flushed directly to disk will be stored in this cache if possible. 
7565 The cache is flushed onto disk when a write comes in whose offset 
7566 would not fit into the cache or when the file is closed by the client. 
7567 Reads for the file are also served from this cache if the data is stored 
7568 within it.
7570 This cache allows Samba to batch client writes into a more 
7571 efficient write size for RAID disks (i.e. writes may be tuned to 
7572 be the RAID stripe size) and can improve performance on systems 
7573 where the disk subsystem is a bottleneck but there is free 
7574 memory for userspace programs.
7576 The integer parameter specifies the size of this cache 
7577 (per oplocked file) in bytes.
7579 Default: \fBwrite cache size = 0\fR
7581 Example: \fBwrite cache size = 262144\fR
7583 for a 256k cache size per file.
7585 \fBwrite list (S)\fR
7586 This is a list of users that are given read-write 
7587 access to a service. If the connecting user is in this list then 
7588 they will be given write access, no matter what the \fIread only\fR
7589 option is set to. The list can include group names using the 
7590 @group syntax.
7592 Note that if a user is in both the read list and the 
7593 write list then they will be given write access.
7595 See also the \fIread list
7596 \fRoption.
7598 Default: \fBwrite list = <empty string>
7600 Example: \fBwrite list = admin, root, @staff
7601 \fR.TP
7602 \fBwrite ok (S)\fR
7603 Inverted synonym for \fI read only\fR.
7605 \fBwrite raw (G)\fR
7606 This parameter controls whether or not the server 
7607 will support raw write SMB's when transferring data from clients. 
7608 You should never need to change this parameter.
7610 Default: \fBwrite raw = yes\fR
7612 \fBwriteable (S)\fR
7613 Inverted synonym for \fI read only\fR.
7614 .SH "WARNINGS"
7616 Although the configuration file permits service names 
7617 to contain spaces, your client software may not. Spaces will 
7618 be ignored in comparisons anyway, so it shouldn't be a 
7619 problem - but be aware of the possibility.
7621 On a similar note, many clients - especially DOS clients - 
7622 limit service names to eight characters. smbd(8)
7623  has no such limitation, but attempts to connect from such 
7624 clients will fail if they truncate the service names. For this reason 
7625 you should probably keep your service names down to eight characters 
7626 in length.
7628 Use of the [homes] and [printers] special sections make life 
7629 for an administrator easy, but the various combinations of default 
7630 attributes can be tricky. Take extreme care when designing these 
7631 sections. In particular, ensure that the permissions on spool 
7632 directories are correct.
7633 .SH "VERSION"
7635 This man page is correct for version 2.2 of 
7636 the Samba suite.
7637 .SH "SEE ALSO"
7639 samba(7)
7640 \fBsmbpasswd(8)\fR
7641 \fBswat(8)\fR
7642 \fBsmbd(8)\fR 
7643 \fBnmbd(8)\fR 
7644 \fBsmbclient(1)\fR 
7645 \fBnmblookup(1)\fR
7646 \fBtestparm(1)\fR 
7647 \fBtestprns(1)\fR
7648 .SH "AUTHOR"
7650 The original Samba software and related utilities 
7651 were created by Andrew Tridgell. Samba is now developed
7652 by the Samba Team as an Open Source project similar 
7653 to the way the Linux kernel is developed.
7655 The original Samba man pages were written by Karl Auer. 
7656 The man page sources were converted to YODL format (another 
7657 excellent piece of Open Source software, available at
7658 ftp://ftp.icce.rug.nl/pub/unix/ <URL:ftp://ftp.icce.rug.nl/pub/unix/>) and updated for the Samba 2.0 
7659 release by Jeremy Allison. The conversion to DocBook for 
7660 Samba 2.2 was done by Gerald Carter