Advertisement
Guest User

Untitled

a guest
May 16th, 2018
346
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.81 KB | None | 0 0
  1. #
  2. # Sample configuration file for the Samba suite for Debian GNU/Linux.
  3. #
  4. #
  5. # This is the main Samba configuration file. You should read the
  6. # smb.conf(5) manual page in order to understand the options listed
  7. # here. Samba has a huge number of configurable options most of which
  8. # are not shown in this example
  9. #
  10. # Some options that are often worth tuning have been included as
  11. # commented-out examples in this file.
  12. # - When such options are commented with ";", the proposed setting
  13. # differs from the default Samba behaviour
  14. # - When commented with "#", the proposed setting is the default
  15. # behaviour of Samba but the option is considered important
  16. # enough to be mentioned here
  17. #
  18. # NOTE: Whenever you modify this file you should run the command
  19. # "testparm" to check that you have not made any basic syntactic
  20. # errors.
  21.  
  22. #======================= Global Settings =======================
  23.  
  24. [global]
  25.  
  26. ## Browsing/Identification ###
  27.  
  28. # Change this to the workgroup/NT-domain name your Samba server will part of
  29. workgroup = WORKGROUP
  30.  
  31. # server string is the equivalent of the NT Description field
  32. server string = %h server (Samba, Ubuntu)
  33.  
  34. # Windows Internet Name Serving Support Section:
  35. # WINS Support - Tells the NMBD component of Samba to enable its WINS Server
  36. # wins support = no
  37.  
  38. # WINS Server - Tells the NMBD components of Samba to be a WINS Client
  39. # Note: Samba can be either a WINS Server, or a WINS Client, but NOT both
  40. ; wins server = w.x.y.z
  41.  
  42. # This will prevent nmbd to search for NetBIOS names through DNS.
  43. dns proxy = no
  44.  
  45. #### Networking ####
  46.  
  47. # The specific set of interfaces / networks to bind to
  48. # This can be either the interface name or an IP address/netmask;
  49. # interface names are normally preferred
  50. ; interfaces = 127.0.0.0/8 eth0
  51.  
  52. # Only bind to the named interfaces and/or networks; you must use the
  53. # 'interfaces' option above to use this.
  54. # It is recommended that you enable this feature if your Samba machine is
  55. # not protected by a firewall or is a firewall itself. However, this
  56. # option cannot handle dynamic or non-broadcast interfaces correctly.
  57. ; bind interfaces only = yes
  58.  
  59.  
  60.  
  61. #### Debugging/Accounting ####
  62.  
  63. # This tells Samba to use a separate log file for each machine
  64. # that connects
  65. log file = /var/log/samba/log.%m
  66.  
  67. # Cap the size of the individual log files (in KiB).
  68. max log size = 1000
  69.  
  70. # If you want Samba to only log through syslog then set the following
  71. # parameter to 'yes'.
  72. # syslog only = no
  73.  
  74. # We want Samba to log a minimum amount of information to syslog. Everything
  75. # should go to /var/log/samba/log.{smbd,nmbd} instead. If you want to log
  76. # through syslog you should set the following parameter to something higher.
  77. syslog = 0
  78.  
  79. # Do something sensible when Samba crashes: mail the admin a backtrace
  80. panic action = /usr/share/samba/panic-action %d
  81.  
  82.  
  83. ####### Authentication #######
  84.  
  85. # Server role. Defines in which mode Samba will operate. Possible
  86. # values are "standalone server", "member server", "classic primary
  87. # domain controller", "classic backup domain controller", "active
  88. # directory domain controller".
  89. #
  90. # Most people will want "standalone sever" or "member server".
  91. # Running as "active directory domain controller" will require first
  92. # running "samba-tool domain provision" to wipe databases and create a
  93. # new domain.
  94. server role = standalone server
  95.  
  96. # If you are using encrypted passwords, Samba will need to know what
  97. # password database type you are using.
  98. passdb backend = tdbsam
  99.  
  100. obey pam restrictions = yes
  101.  
  102. # This boolean parameter controls whether Samba attempts to sync the Unix
  103. # password with the SMB password when the encrypted SMB password in the
  104. # passdb is changed.
  105. unix password sync = yes
  106.  
  107. # For Unix password sync to work on a Debian GNU/Linux system, the following
  108. # parameters must be set (thanks to Ian Kahan <<kahan@informatik.tu-muenchen.de> for
  109. # sending the correct chat script for the passwd program in Debian Sarge).
  110. passwd program = /usr/bin/passwd %u
  111. passwd chat = *Enter\snew\s*\spassword:* %n\n *Retype\snew\s*\spassword:* %n\n *password\supdated\ssuccessfully* .
  112.  
  113. # This boolean controls whether PAM will be used for password changes
  114. # when requested by an SMB client instead of the program listed in
  115. # 'passwd program'. The default is 'no'.
  116. pam password change = yes
  117.  
  118. # This option controls how unsuccessful authentication attempts are mapped
  119. # to anonymous connections
  120. map to guest = bad user
  121.  
  122. ########## Domains ###########
  123.  
  124. #
  125. # The following settings only takes effect if 'server role = primary
  126. # classic domain controller', 'server role = backup domain controller'
  127. # or 'domain logons' is set
  128. #
  129.  
  130. # It specifies the location of the user's
  131. # profile directory from the client point of view) The following
  132. # required a [profiles] share to be setup on the samba server (see
  133. # below)
  134. ; logon path = \\%N\profiles\%U
  135. # Another common choice is storing the profile in the user's home directory
  136. # (this is Samba's default)
  137. # logon path = \\%N\%U\profile
  138.  
  139. # The following setting only takes effect if 'domain logons' is set
  140. # It specifies the location of a user's home directory (from the client
  141. # point of view)
  142. ; logon drive = H:
  143. # logon home = \\%N\%U
  144.  
  145. # The following setting only takes effect if 'domain logons' is set
  146. # It specifies the script to run during logon. The script must be stored
  147. # in the [netlogon] share
  148. # NOTE: Must be store in 'DOS' file format convention
  149. ; logon script = logon.cmd
  150.  
  151. # This allows Unix users to be created on the domain controller via the SAMR
  152. # RPC pipe. The example command creates a user account with a disabled Unix
  153. # password; please adapt to your needs
  154. ; add user script = /usr/sbin/adduser --quiet --disabled-password --gecos "" %u
  155.  
  156. # This allows machine accounts to be created on the domain controller via the
  157. # SAMR RPC pipe.
  158. # The following assumes a "machines" group exists on the system
  159. ; add machine script = /usr/sbin/useradd -g machines -c "%u machine account" -d /var/lib/samba -s /bin/false %u
  160.  
  161. # This allows Unix groups to be created on the domain controller via the SAMR
  162. # RPC pipe.
  163. ; add group script = /usr/sbin/addgroup --force-badname %g
  164.  
  165. ############ Misc ############
  166.  
  167. # Using the following line enables you to customise your configuration
  168. # on a per machine basis. The %m gets replaced with the netbios name
  169. # of the machine that is connecting
  170. ; include = /home/samba/etc/smb.conf.%m
  171.  
  172. # Some defaults for winbind (make sure you're not using the ranges
  173. # for something else.)
  174. ; idmap uid = 10000-20000
  175. ; idmap gid = 10000-20000
  176. ; template shell = /bin/bash
  177.  
  178. # Setup usershare options to enable non-root users to share folders
  179. # with the net usershare command.
  180.  
  181. # Maximum number of usershare. 0 (default) means that usershare is disabled.
  182. ; usershare max shares = 100
  183.  
  184. # Allow users who've been granted usershare privileges to create
  185. # public shares, not just authenticated ones
  186. usershare allow guests = yes
  187.  
  188. ### added by alex ###
  189. security = user
  190.  
  191. #======================= Share Definitions =======================
  192.  
  193. # Un-comment the following (and tweak the other settings below to suit)
  194. # to enable the default home directory shares. This will share each
  195. # user's home directory as \\server\username
  196. ;[homes]
  197. ; comment = Home Directories
  198. ; browseable = no
  199.  
  200. # By default, the home directories are exported read-only. Change the
  201. # next parameter to 'no' if you want to be able to write to them.
  202. ; read only = yes
  203.  
  204. # File creation mask is set to 0700 for security reasons. If you want to
  205. # create files with group=rw permissions, set next parameter to 0775.
  206. ; create mask = 0700
  207.  
  208. # Directory creation mask is set to 0700 for security reasons. If you want to
  209. # create dirs. with group=rw permissions, set next parameter to 0775.
  210. ; directory mask = 0700
  211.  
  212. # By default, \\server\username shares can be connected to by anyone
  213. # with access to the samba server.
  214. # Un-comment the following parameter to make sure that only "username"
  215. # can connect to \\server\username
  216. # This might need tweaking when using external authentication schemes
  217. ; valid users = %S
  218.  
  219. # Un-comment the following and create the netlogon directory for Domain Logons
  220. # (you need to configure Samba to act as a domain controller too.)
  221. ;[netlogon]
  222. ; comment = Network Logon Service
  223. ; path = /home/samba/netlogon
  224. ; guest ok = yes
  225. ; read only = yes
  226.  
  227. # Un-comment the following and create the profiles directory to store
  228. # users profiles (see the "logon path" option above)
  229. # (you need to configure Samba to act as a domain controller too.)
  230. # The path below should be writable by all users so that their
  231. # profile directory may be created the first time they log on
  232. ;[profiles]
  233. ; comment = Users profiles
  234. ; path = /home/samba/profiles
  235. ; guest ok = no
  236. ; browseable = no
  237. ; create mask = 0600
  238. ; directory mask = 0700
  239.  
  240. ;[printers]
  241. ; comment = All Printers
  242. ; browseable = no
  243. ; path = /var/spool/samba
  244. ; printable = yes
  245. ; guest ok = no
  246. ; read only = yes
  247. ; create mask = 0700
  248.  
  249. # Windows clients look for this share name as a source of downloadable
  250. # printer drivers
  251. ;[print$]
  252. ; comment = Printer Drivers
  253. ; path = /var/lib/samba/printers
  254. ; browseable = yes
  255. ; read only = yes
  256. ; guest ok = no
  257.  
  258. # Uncomment to allow remote administration of Windows print drivers.
  259. # You may need to replace 'lpadmin' with the name of the group your
  260. # admin users are members of.
  261. # Please note that you also need to set appropriate Unix permissions
  262. # to the drivers directory for these users to have write rights in it
  263. ; write list = root, @lpadmin
  264.  
  265. [anubis]
  266. comment = Shared File Server
  267. path = /home/jakalope/testshare
  268. browsable = yes
  269. writable = yes
  270. guest ok = yes
  271. read only = no
  272. valid users = @shared_test
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement