home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 December / PCWorld_2000-12_cd.bin / Komunikace / Comanche / conf / samba / smb.conf
Text File  |  2000-11-02  |  3KB  |  127 lines

  1. # This is the main Samba configuration file. You should read the
  2. # smb.conf(5) manual page in order to understand the options listed
  3. # here. Samba has a huge number of configurable options (perhaps too
  4. # many!) most of which are not shown in this example
  5. #
  6. # Any line which starts with a ; (semi-colon) or a # (hash) 
  7. # is a comment and is ignored. In this example we will use a #
  8. # for commentry and a ; for parts of the config file that you
  9. # may wish to enable
  10. #
  11. # NOTE: Whenever you modify this file you should run the command "testparm"
  12. # to check that you have not many any basic syntactic errors. 
  13. #
  14. #======================= Global Settings =====================================
  15.  
  16. [global]
  17. workgroup = MYGROUP
  18. server string = Samba Server
  19. hosts allow = 192.168.1. 192.168.2. 127.
  20. printcap name = /etc/printcap
  21. load printers = yes
  22. printing = bsd
  23. guest account = pcguest
  24. log file = /var/log/samba/log.%m
  25. max log size = 50
  26. security = user
  27. password server = <NT-Server-Name>
  28. password level = 8
  29. username level = 8
  30. encrypt passwords = yes
  31. smb passwd file = /etc/smbpasswd
  32. unix password sync = Yes
  33. passwd program = /usr/bin/passwd %u
  34. passwd chat = *New*UNIX*password* %n\n *ReType*new*UNIX*password* %n\n *passwd:*all*authentication*tokens*updated*successfully*
  35. username map = /etc/smbusers
  36. include = /etc/smb.conf.%m
  37. socket options = TCP_NODELAY SO_RCVBUF=8192 SO_SNDBUF=8192
  38. interfaces = 192.168.12.2/24 192.168.13.2/24
  39. remote browse sync = 192.168.3.25 192.168.5.255
  40. remote announce = 192.168.1.255 192.168.2.44
  41. local master =  no
  42. os level = 33
  43. domain master = yes
  44. preferred master = yes
  45. domain controller = <NT-Domain-Controller-SMBName>
  46. domain logons = yes
  47. logon script = %m.bat
  48. logon script = %U.bat
  49. logon path = \\%L\Profiles\%U
  50. name resolve order = wins lmhosts bcast
  51. wins support = yes
  52. wins server = w.x.y.z
  53. wins proxy = yes
  54. dns proxy = no
  55. preserve case = no
  56. short preserve case = no
  57. default case = lower
  58. case sensitive = no
  59. [homes]
  60. comment = Home Directories
  61. browseable =  no
  62. writable = yes
  63. [netlogon]
  64. comment = Network Logon Service
  65. path = /home/netlogon
  66. guest ok = yes
  67. writable = no
  68. share modes = no
  69. [Profiles]
  70. path = /home/profiles
  71. browseable =  no
  72. guest ok = yes
  73. [printers]
  74. comment = All Printers
  75. path = /var/spool/samba
  76. browseable =  no
  77. guest ok =  no
  78. writable = no
  79. printable = yes
  80. [tmp]
  81. comment = Temporary file space
  82. path = /tmp
  83. read only =  no
  84. public = yes
  85. [public]
  86. comment = Public Stuff
  87. path = /home/samba
  88. public = yes
  89. writable = yes
  90. printable = no
  91. write list = @staff
  92. [fredsprn]
  93. comment = Fred's Printer
  94. valid users = fred
  95. path = /homes/fred
  96. printer = freds_printer
  97. public = no
  98. writable = no
  99. printable = yes
  100. [fredsdir]
  101. comment = Fred's Service
  102. path = /usr/somewhere/private
  103. valid users = fred
  104. public = no
  105. writable = yes
  106. printable = no
  107. [pchome]
  108. comment = PC Directories
  109. path = /usr/pc/%m
  110. public = no
  111. writable = yes
  112. [public]
  113. path = /usr/somewhere/else/public
  114. public = yes
  115. only guest = yes
  116. writable = yes
  117. printable = no
  118. [myshare]
  119. comment = Mary's and Fred's stuff
  120. path = /usr/somewhere/shared
  121. valid users = mary fred
  122. public = no
  123. writable = yes
  124. printable = no
  125. create mask = 0765
  126.  
  127.