You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

121 lines
5.5 KiB

  1. [global]
  2. netbios name = |NAME|
  3. interfaces = |INTERFACES|
  4. server string = |DESCRIPTION|
  5. unix charset = |CHARSET|
  6. workgroup = |WORKGROUP|
  7. ## This global parameter allows the Samba admin to limit what interfaces on a machine will serve SMB requests.
  8. bind interfaces only = yes
  9. ## time for inactive connections to-be closed in minutes
  10. deadtime = 15
  11. ## disable core dumps
  12. enable core files = no
  13. ## set security (auto, user, domain, ads)
  14. security = user
  15. ## This parameter controls whether a remote client is allowed or required to use SMB encryption.
  16. ## It has different effects depending on whether the connection uses SMB1 or SMB2 and newer:
  17. ## If the connection uses SMB1, then this option controls the use of a Samba-specific extension to the SMB protocol introduced in Samba 3.2 that makes use of the Unix extensions.
  18. ## If the connection uses SMB2 or newer, then this option controls the use of the SMB-level encryption that is supported in SMB version 3.0 and above and available in Windows 8 and newer.
  19. ## (default/auto,desired,required,off)
  20. #smb encrypt = default
  21. ## set invalid users
  22. invalid users = root
  23. ## map unknow users to guest
  24. map to guest = Bad User
  25. ## allow client access to accounts that have null passwords.
  26. null passwords = yes
  27. ## The old plaintext passdb backend. Some Samba features will not work if this passdb backend is used. (NOTE: enabled for size reasons)
  28. ## (tdbsam,smbpasswd,ldapsam)
  29. passdb backend = smbpasswd
  30. ## Set location of smbpasswd ('smbd -b' will show default compiled location)
  31. #smb passwd file = /etc/samba/smbpasswd
  32. ## LAN (IPTOS_LOWDELAY TCP_NODELAY) WAN (IPTOS_THROUGHPUT) WiFi (SO_KEEPALIVE) try&error for buffer sizes (SO_RCVBUF=65536 SO_SNDBUF=65536)
  33. socket options = IPTOS_LOWDELAY TCP_NODELAY
  34. ## If this integer parameter is set to a non-zero value, Samba will read from files asynchronously when the request size is bigger than this value.
  35. ## Note that it happens only for non-chained and non-chaining reads and when not using write cache.
  36. ## The only reasonable values for this parameter are 0 (no async I/O) and 1 (always do async I/O).
  37. ## (1/0)
  38. #aio read size = 0
  39. #aio write size = 0
  40. ## If Samba has been built with asynchronous I/O support, Samba will not wait until write requests are finished before returning the result to the client for files listed in this parameter.
  41. ## Instead, Samba will immediately return that the write request has been finished successfully, no matter if the operation will succeed or not.
  42. ## This might speed up clients without aio support, but is really dangerous, because data could be lost and files could be damaged.
  43. #aio write behind = /*.tmp/
  44. ## lower CPU useage if supported and aio is disabled (aio read size = 0 ; aio write size = 0)
  45. ## is this still broken? issue is from 2019 (NOTE: see https://bugzilla.samba.org/show_bug.cgi?id=14095 )
  46. ## (no, yes)
  47. #use sendfile = yes
  48. ## samba will behave as previous versions of Samba would and will fail the lock request immediately if the lock range cannot be obtained.
  49. #blocking locks = No
  50. ## disable loading of all printcap printers by default (iprint, cups, lpstat)
  51. load printers = No
  52. printcap name = /dev/null
  53. ## Enabling this parameter will disable Samba's support for the SPOOLSS set of MS-RPC's.
  54. disable spoolss = yes
  55. ## This parameters controls how printer status information is interpreted on your system.
  56. ## (BSD, AIX, LPRNG, PLP, SYSV, HPUX, QNX, SOFTQ)
  57. printing = bsd
  58. ## Disable that nmbd is acting as a WINS server for unknow netbios names
  59. #dns proxy = No
  60. ## win/unix user mapping backend
  61. #idmap config * : backend = tdb
  62. ## Allows the server name that is advertised through MDNS to be set to the hostname rather than the Samba NETBIOS name.
  63. ## This allows an administrator to make Samba registered MDNS records match the case of the hostname rather than being in all capitals.
  64. ## (netbios, mdns)
  65. mdns name = mdns
  66. ## Clients that only support netbios won't be able to see your samba server when netbios support is disabled.
  67. #disable netbios = Yes
  68. ## Setting this value to no will cause nmbd never to become a local master browser.
  69. #local master = no
  70. ## (auto, yes) If this is set to yes, on startup, nmbd will force an election, and it will have a slight advantage in winning the election. It is recommended that this parameter is used in conjunction with domain master = yes, so that nmbd can guarantee becoming a domain master.
  71. #preferred master = yes
  72. ## (445 139) Specifies which ports the server should listen on for SMB traffic.
  73. ## 139 is netbios/nmbd
  74. #smb ports = 445 139
  75. ## This is a list of files and directories that are neither visible nor accessible.
  76. ## Each entry in the list must be separated by a '/', which allows spaces to be included in the entry. '*' and '?' can be used to specify multiple files or directories as in DOS wildcards.
  77. veto files = /Thumbs.db/.DS_Store/._.DS_Store/.apdisk/
  78. ## If a directory that is to be deleted contains nothing but veto files this deletion will fail unless you also set the delete veto files parameter to yes.
  79. delete veto files = yes
  80. ################ Filesystem and creation rules ################
  81. ## reported filesystem type (NTFS,Samba,FAT)
  82. #fstype = FAT
  83. ## Allows a user who has write access to the file (by whatever means, including an ACL permission) to modify the permissions (including ACL) on it.
  84. #dos filemode = Yes
  85. ## file/dir creating rules
  86. #create mask = 0666
  87. #directory mask = 0777
  88. #force group = root
  89. #force user = root
  90. #inherit owner = windows and unix
  91. ################################################################