home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.0 (User) / OS_user_4.0.iso / usr / samba / lib / smb.conf.example
Encoding:
Text File  |  1996-04-18  |  5.3 KB  |  170 lines

  1. ; Configuration file for smbd.
  2. ; ============================================================================
  3. ; For the format of this file and comprehensive descriptions of all the
  4. ; configuration option, please refer to the man page for smb.conf(5).
  5. ;
  6. ; The following configuration should suit most systems for basic usage and 
  7. ; initial testing. It gives all clients access to their home directories and
  8. ; allows access to all printers specified in /etc/printcap.
  9. ;
  10. ; Things you need to check:
  11. ; --------------------------
  12. ;
  13. ; 1: Check the path to your printcap file. If you are using a system that does 
  14. ;    not use printcap (eg., Solaris), create a file containing lines of the 
  15. ;    form
  16. ;
  17. ;       printername|printername|printername|
  18. ;
  19. ;    where each "printername" is the name of a printer you want to provide 
  20. ;    access to. Then alter the "printcap =" entry to point to the new file.
  21. ;
  22. ;    If using Solaris, the following command will generate a suitable printcap
  23. ;    file:
  24. ;
  25. ;       lpc status | grep ":" | sed s/:/\|/ > myprintcap
  26. ;
  27. ; 2: Make sure the "print command" entry is correct for your system. This 
  28. ;    command should submit a file (represented by %s) to a printer 
  29. ;    (represented by %p) for printing and should REMOVE the file after 
  30. ;    printing.
  31. ;  
  32. ;    One most systems the default will be OK, as long as you get "printing ="
  33. ;    right.
  34. ;    
  35. ;    It is also a good idea to use an absolute path in the print command
  36. ;    as there is no guarantee the search path will be set correctly.
  37. ;
  38. ; 3: Make sure the "printing =" option is set correctly for your system.
  39. ;    Possible values are "sysv", "bsd" or "aix".
  40. ;
  41. ; 4: Make sure the "lpq command" entry is correct for your system. The default
  42. ;    may not work for you.
  43. ;
  44. ; 5: Make sure that the user specified in "guest account" exists. Typically
  45. ;    this will be a user that cannot log in and has minimal privileges.
  46. ;    Often the "nobody" account doesn't work (very system dependant).
  47. ;
  48. ; 6: You should consider the "security =" option. See a full description
  49. ;    in the main documentation and the smb.conf(5) manual page
  50. ;
  51. ; 7: Look at the "hosts allow" option, unless you want everyone on the internet
  52. ;    to be able to access your files.
  53. ;
  54. [global]
  55.    printing = bsd
  56.    printcap name = /etc/printcap
  57.    load printers = yes
  58.    guest account = pcguest
  59.    case sensitive = no
  60.    preserve case = yes
  61.    short preserve case = yes
  62.  
  63. ;  This next option sets a separate log file for each client. Remove
  64. ;  it if you want a combined log file.
  65.    log file = /usr/local/samba/log.%m
  66.  
  67. ;  You will need a world readable lock directory and "share modes=yes"
  68. ;  if you want to support the file sharing modes for multiple users
  69. ;  of the same files
  70. ;  lock directory = /usr/local/samba/var/locks
  71. ;  share modes = yes
  72.  
  73. [homes]
  74.    comment = Home Directories
  75.    browseable = no
  76.    read only = no
  77.    create mode = 0755
  78.  
  79. [printers]
  80.    comment = All Printers
  81.    browseable = no
  82.    printable = yes
  83.    public = no
  84.    writable = no
  85.    create mode = 0700
  86.  
  87. ; you might also want this one
  88. ; [tmp]
  89. ;   comment = Temporary file space
  90. ;   path = /tmp
  91. ;   read only = no
  92. ;   public = yes
  93.  
  94. ;
  95. ; Other examples. 
  96. ;
  97. ; A private printer, usable only by fred. Spool data will be placed in fred's
  98. ; home directory. Note that fred must have write access to the spool directory,
  99. ; wherever it is.
  100. ;[fredsprn]
  101. ;   comment = Fred's Printer
  102. ;   valid users = fred
  103. ;   path = /homes/fred
  104. ;   printer = freds_printer
  105. ;   public = no
  106. ;   writable = no
  107. ;   printable = yes
  108. ;
  109. ; A private directory, usable only by fred. Note that fred requires write
  110. ; access to the directory.
  111. ;[fredsdir]
  112. ;   comment = Fred's Service
  113. ;   path = /usr/somewhere/private
  114. ;   valid users = fred
  115. ;   public = no
  116. ;   writable = yes
  117. ;   printable = no
  118. ;
  119. ; A publicly accessible directory, but read only, except for people in
  120. ; the staff group
  121. ;[public]
  122. ;   comment = Public Stuff
  123. ;   path = /usr/somewhere/public
  124. ;   public = yes
  125. ;   writable = no
  126. ;   printable = no
  127. ;   write list = @staff
  128. ;
  129. ; a service which has a different directory for each machine that connects
  130. ; this allows you to tailor configurations to incoming machines. You could
  131. ; also use the %u option to tailor it by user name.
  132. ; The %m gets replaced with the machine name that is connecting.
  133. ;[pchome]
  134. ;  comment = PC Directories
  135. ;  path = /usr/pc/%m
  136. ;  public = no
  137. ;  writeable = yes
  138. ;
  139. ;
  140. ; A publicly accessible directory, read/write to all users. Note that all files
  141. ; created in the directory by users will be owned by the default user, so
  142. ; any user with access can delete any other user's files. Obviously this
  143. ; directory must be writable by the default user. Another user could of course
  144. ; be specified, in which case all files would be owned by that user instead.
  145. ;[public]
  146. ;   path = /usr/somewhere/else/public
  147. ;   public = yes
  148. ;   only guest = yes
  149. ;   writable = yes
  150. ;   printable = no
  151. ;
  152. ;
  153. ; The following two entries demonstrate how to share a directory so that two
  154. ; users can place files there that will be owned by the specific users. In this
  155. ; setup, the directory should be writable by both users and should have the
  156. ; sticky bit set on it to prevent abuse. Obviously this could be extended to
  157. ; as many users as required.
  158. ;[myshare]
  159. ;   comment = Mary's and Fred's stuff
  160. ;   path = /usr/somewhere/shared
  161. ;   valid users = mary fred
  162. ;   public = no
  163. ;   writable = yes
  164. ;   printable = no
  165. ;   create mask = 0765
  166.  
  167.  
  168.  
  169.  
  170.