configuration-templates – Diff between revs 81 and 82

Subversion Repositories:
Rev:
Only display areas with differencesIgnore whitespace
Rev 81 Rev 82
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.
-   41 client use spnego = no
-   42 client ntlmv2 auth = no
40   43  
41 # Safe Tweaks 44 # Safe Tweaks
42 use sendfile = true 45 use sendfile = true
43 aio read size = 16384 46 aio read size = 16384
44 aio write size = 16384 47 aio write size = 16384
45 kernel oplocks = yes 48 kernel oplocks = yes
46 49
47 # Logging 50 # Logging
48 log file = /var/log/samba/log.%m 51 log file = /var/log/samba/log.%m
49 log level = 2 52 log level = 2
50   53  
51 # Include local settings. 54 # Include local settings.
52 include = /etc/samba/smb.conf.local 55 include = /etc/samba/smb.conf.local
53   56  
54 # Include shares. 57 # Include shares.
55 include = /etc/samba/smb.conf.share 58 include = /etc/samba/smb.conf.share
56   59