samba/smb.conf
author ft
Thu, 27 Feb 2014 17:12:59 +0100
changeset 0 60bc07f3f415
child 1 25dc3362ba5d
permissions -rw-r--r--
initial commit
     1 [global]
     2 	interfaces = eth0 lo
     3 	bind interfaces only = yes
     4 	workgroup = osec
     5 	restrict anonymous = no
     6 	server string = osecvm
     7 	security = share
     8 	disable spoolss = yes
     9 	unix extensions = no
    10 	guest account = root
    11 
    12 
    13 	# disable printing
    14 	load printers = no
    15         printing = cups
    16         printcap name = /dev/null
    17         show add printer wizard = no
    18         disable spoolss = yes
    19 
    20 	# disable netbios
    21 	disable netbios = yes
    22 
    23 [USB]
    24 	comment = Zugriff auf USB Sticks
    25 	path = /var/run/usbmount/
    26 	read only = no
    27 	browseable = yes
    28 	writeable = yes
    29 	follow symlinks = yes
    30 	available = yes
    31 	public = yes
    32 	guest ok = yes
    33 	wide links = no
    34 
    35 [Download]
    36 	comment = Zugriff auf Downloads
    37 	path = /var/run/Downloads/
    38 	read only = yes
    39 	browseable = yes
    40 	writeable = no
    41 	follow symlinks = yes
    42 	available = yes
    43 	public = yes
    44 	guest ok = yes
    45 	wide links = no
    46