configuration-templates – Diff between revs 82 and 83

Subversion Repositories:
Rev:
Only display areas with differencesIgnore whitespace
Rev 82 Rev 83
1 ########################################################################### 1 ###########################################################################
2 ## Copyright (C) Wizardry and Steamworks 2017 - License: GNU GPLv3 ## 2 ## Copyright (C) Wizardry and Steamworks 2017 - License: GNU GPLv3 ##
3 ## Please see: http://www.gnu.org/licenses/gpl.html for legal details, ## 3 ## Please see: http://www.gnu.org/licenses/gpl.html for legal details, ##
4 ## rights of fair usage, the disclaimer and warranty conditions. ## 4 ## rights of fair usage, the disclaimer and warranty conditions. ##
5 ########################################################################### 5 ###########################################################################
6 ## Optimized standalone configuration template for Samba servers. ## 6 ## Optimized standalone configuration template for Samba servers. ##
7 ## ## 7 ## ##
8 ## Ideal for: ## 8 ## Ideal for: ##
9 ## * Virtual machine file sharing ## 9 ## * Virtual machine file sharing ##
10 ## ## 10 ## ##
11 ## Requirements: ## 11 ## Requirements: ##
12 ## * Samba 3.x ## 12 ## * Samba 3.x ##
13 ## * PAM Samba Password Module (Debian: libpam-smbpass) ## 13 ## * PAM Samba Password Module (Debian: libpam-smbpass) ##
14 ## ## 14 ## ##
15 ## File placement layout: ## 15 ## File placement layout: ##
16 ## / ## 16 ## / ##
17 ## `-- etc ## 17 ## `-- etc ##
18 ## `-- samba ## 18 ## `-- samba ##
19 ## |-- smb.conf ## 19 ## |-- smb.conf ##
20 ## |-- smb.conf.local ## 20 ## |-- smb.conf.local ##
21 ## `-- smb.conf.share ## 21 ## `-- smb.conf.share ##
22 ## ## 22 ## ##
23 ## Files Description: ## 23 ## Files Description: ##
24 ## * /etc/samba/smb.conf (this file) ## 24 ## * /etc/samba/smb.conf (this file) ##
25 ## * /etc/samba/smb.conf.local (local server-site settings) ## 25 ## * /etc/samba/smb.conf.local (local server-site settings) ##
26 ## * /etc/samba/smb.conf.share (samba shares go here) ## 26 ## * /etc/samba/smb.conf.share (samba shares go here) ##
27 ## ## 27 ## ##
28 ########################################################################### 28 ###########################################################################
29   29  
30 [global] 30 [global]
31 bind interfaces only = yes 31 bind interfaces only = yes
32 name resolve order = lmhosts host wins bcast 32 name resolve order = lmhosts host wins bcast
33   33  
34 # Standalone. 34 # Standalone.
35 preferred master = yes 35 preferred master = yes
36 security = USER 36 security = USER
37 # For compatibility with scripts. 37 # For compatibility with scripts.
38 passdb backend = smbpasswd 38 passdb backend = smbpasswd
39 map to guest = bad user 39 map to guest = bad user
40 # For compatibility with clients. 40 # For compatibility with clients.
41 client use spnego = no 41 client use spnego = no
42 client ntlmv2 auth = no 42 client ntlmv2 auth = no
-   43  
-   44 # Better compatibility with OSX.
-   45 unix extensions = no
43   46  
-   47 # Safe Tweaks
44 # Safe Tweaks 48 socket options=SO_RCVBUF=131072 SO_SNDBUF=131072 TCP_NODELAY IPTOS_LOWDELAY
-   49 use sendfile = true
-   50 max xmit = 65535
-   51 max connections = 65535
-   52 max open files = 65535
45 use sendfile = true 53 min receivefile size = 16384
46 aio read size = 16384 54 aio read size = 16384
-   55 aio write size = 16384
-   56 read raw = yes
-   57 write raw = yes
-   58 getwd cache = yes
47 aio write size = 16384 59 dead time = 15
-   60 kernel oplocks = yes
48 kernel oplocks = yes 61 server multi channel support = yes
49 62
50 # Logging 63 # Logging
51 log file = /var/log/samba/log.%m 64 log file = /var/log/samba/log.%m
52 log level = 2 65 log level = 2
53   66  
54 # Include local settings. 67 # Include local settings.
55 include = /etc/samba/smb.conf.local 68 include = /etc/samba/smb.conf.local
56   69  
57 # Include shares. 70 # Include shares.
58 include = /etc/samba/smb.conf.share 71 include = /etc/samba/smb.conf.share
59   72