Advertisement
Guest User

Untitled

a guest
Feb 17th, 2021
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.05 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 = mydomain.com
  30. client max protocol = NT1
  31. name resolve order = bcast lmhosts host wins
  32.  
  33. # server string is the equivalent of the NT Description field
  34. server string = %h server (Samba, Ubuntu)
  35.  
  36. #### Networking ####
  37.  
  38. # The specific set of interfaces / networks to bind to
  39. # This can be either the interface name or an IP address/netmask;
  40. # interface names are normally preferred
  41. ; interfaces = 127.0.0.0/8 eth0
  42.  
  43. # Only bind to the named interfaces and/or networks; you must use the
  44. # 'interfaces' option above to use this.
  45. # It is recommended that you enable this feature if your Samba machine is
  46. # not protected by a firewall or is a firewall itself. However, this
  47. # option cannot handle dynamic or non-broadcast interfaces correctly.
  48. ; bind interfaces only = yes
  49.  
  50.  
  51.  
  52. #### Debugging/Accounting ####
  53.  
  54. # This tells Samba to use a separate log file for each machine
  55. # that connects
  56. log file = /var/log/samba/log.%m
  57.  
  58. # Cap the size of the individual log files (in KiB).
  59. max log size = 1000
  60.  
  61. # We want Samba to only log to /var/log/samba/log.{smbd,nmbd}.
  62. # Append syslog@1 if you want important messages to be sent to syslog too.
  63. logging = file
  64.  
  65. # Do something sensible when Samba crashes: mail the admin a backtrace
  66. panic action = /usr/share/samba/panic-action %d
  67.  
  68.  
  69. ####### Authentication #######
  70.  
  71. # Server role. Defines in which mode Samba will operate. Possible
  72. # values are "standalone server", "member server", "classic primary
  73. # domain controller", "classic backup domain controller", "active
  74. # directory domain controller".
  75. #
  76. # Most people will want "standalone server" or "member server".
  77. # Running as "active directory domain controller" will require first
  78. # running "samba-tool domain provision" to wipe databases and create a
  79. # new domain.
  80. server role = standalone server
  81.  
  82. obey pam restrictions = yes
  83.  
  84. # This boolean parameter controls whether Samba attempts to sync the Unix
  85. # password with the SMB password when the encrypted SMB password in the
  86. # passdb is changed.
  87. unix password sync = yes
  88.  
  89. # For Unix password sync to work on a Debian GNU/Linux system, the following
  90. # parameters must be set (thanks to Ian Kahan <<kahan@informatik.tu-muenchen.de> for
  91. # sending the correct chat script for the passwd program in Debian Sarge).
  92. passwd program = /usr/bin/passwd %u
  93. passwd chat = *Enter\snew\s*\spassword:* %n\n *Retype\snew\s*\spassword:* %n\n *password\supdated\ssuccessfully* .
  94.  
  95. # This boolean controls whether PAM will be used for password changes
  96. # when requested by an SMB client instead of the program listed in
  97. # 'passwd program'. The default is 'no'.
  98. pam password change = yes
  99.  
  100. # This option controls how unsuccessful authentication attempts are mapped
  101. # to anonymous connections
  102. map to guest = bad user
  103.  
  104. ########## Domains ###########
  105.  
  106. #
  107. # The following settings only takes effect if 'server role = primary
  108. # classic domain controller', 'server role = backup domain controller'
  109. # or 'domain logons' is set
  110. #
  111.  
  112. # It specifies the location of the user's
  113. # profile directory from the client point of view) The following
  114. # required a [profiles] share to be setup on the samba server (see
  115. # below)
  116. ; logon path = \\%N\profiles\%U
  117. # Another common choice is storing the profile in the user's home directory
  118. # (this is Samba's default)
  119. # logon path = \\%N\%U\profile
  120.  
  121. # The following setting only takes effect if 'domain logons' is set
  122. # It specifies the location of a user's home directory (from the client
  123. # point of view)
  124. ; logon drive = H:
  125. # logon home = \\%N\%U
  126.  
  127. # The following setting only takes effect if 'domain logons' is set
  128. # It specifies the script to run during logon. The script must be stored
  129. # in the [netlogon] share
  130. # NOTE: Must be store in 'DOS' file format convention
  131. ; logon script = logon.cmd
  132.  
  133. # This allows Unix users to be created on the domain controller via the SAMR
  134. # RPC pipe. The example command creates a user account with a disabled Unix
  135. # password; please adapt to your needs
  136. ; add user script = /usr/sbin/adduser --quiet --disabled-password --gecos "" %u
  137.  
  138. # This allows machine accounts to be created on the domain controller via the
  139. # SAMR RPC pipe.
  140. # The following assumes a "machines" group exists on the system
  141. ; add machine script = /usr/sbin/useradd -g machines -c "%u machine account" -d /var/lib/samba -s /bin/false %u
  142.  
  143. # This allows Unix groups to be created on the domain controller via the SAMR
  144. # RPC pipe.
  145. ; add group script = /usr/sbin/addgroup --force-badname %g
  146.  
  147. ############ Misc ############
  148.  
  149. # Using the following line enables you to customise your configuration
  150. # on a per machine basis. The %m gets replaced with the netbios name
  151. # of the machine that is connecting
  152. ; include = /home/samba/etc/smb.conf.%m
  153.  
  154. # Some defaults for winbind (make sure you're not using the ranges
  155. # for something else.)
  156. ; idmap config * : backend = tdb
  157. ; idmap config * : range = 3000-7999
  158. ; idmap config YOURDOMAINHERE : backend = tdb
  159. ; idmap config YOURDOMAINHERE : range = 100000-999999
  160. ; template shell = /bin/bash
  161.  
  162. # Setup usershare options to enable non-root users to share folders
  163. # with the net usershare command.
  164.  
  165. # Maximum number of usershare. 0 means that usershare is disabled.
  166. # usershare max shares = 100
  167.  
  168. # Allow users who've been granted usershare privileges to create
  169. # public shares, not just authenticated ones
  170. usershare allow guests = yes
  171.  
  172. #======================= Share Definitions =======================
  173.  
  174. # Un-comment the following (and tweak the other settings below to suit)
  175. # to enable the default home directory shares. This will share each
  176. # user's home directory as \\server\username
  177. ;[homes]
  178. ; comment = Home Directories
  179. ; browseable = yes
  180.  
  181. # By default, the home directories are exported read-only. Change the
  182. # next parameter to 'no' if you want to be able to write to them.
  183. ; read only = yes
  184.  
  185. # File creation mask is set to 0700 for security reasons. If you want to
  186. # create files with group=rw permissions, set next parameter to 0775.
  187. ; create mask = 0700
  188.  
  189. # Directory creation mask is set to 0700 for security reasons. If you want to
  190. # create dirs. with group=rw permissions, set next parameter to 0775.
  191. ; directory mask = 0700
  192.  
  193. # By default, \\server\username shares can be connected to by anyone
  194. # with access to the samba server.
  195. # Un-comment the following parameter to make sure that only "username"
  196. # can connect to \\server\username
  197. # This might need tweaking when using external authentication schemes
  198. ; valid users = %S
  199.  
  200. # Un-comment the following and create the netlogon directory for Domain Logons
  201. # (you need to configure Samba to act as a domain controller too.)
  202. ;[netlogon]
  203. ; comment = Network Logon Service
  204. ; path = /home/samba/netlogon
  205. ; guest ok = yes
  206. ; read only = yes
  207.  
  208. # Un-comment the following and create the profiles directory to store
  209. # users profiles (see the "logon path" option above)
  210. # (you need to configure Samba to act as a domain controller too.)
  211. # The path below should be writable by all users so that their
  212. # profile directory may be created the first time they log on
  213. ;[profiles]
  214. ; comment = Users profiles
  215. ; path = /home/samba/profiles
  216. ; guest ok = no
  217. ; browseable = no
  218. ; create mask = 0600
  219. ; directory mask = 0700
  220.  
  221. [printers]
  222. comment = All Printers
  223. browseable = no
  224. path = /var/spool/samba
  225. printable = yes
  226. guest ok = no
  227. read only = yes
  228. create mask = 0700
  229.  
  230. # Windows clients look for this share name as a source of downloadable
  231. # printer drivers
  232. [print$]
  233. comment = Printer Drivers
  234. path = /var/lib/samba/printers
  235. browseable = yes
  236. read only = yes
  237. guest ok = no
  238. # Uncomment to allow remote administration of Windows print drivers.
  239. # You may need to replace 'lpadmin' with the name of the group your
  240. # admin users are members of.
  241. # Please note that you also need to set appropriate Unix permissions
  242. # to the drivers directory for these users to have write rights in it
  243. ; write list = root, @ladmin
  244.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement