Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #
- # This is the main Samba configuration file. You should read the
- # smb.conf(5) manual page in order to understand the options listed
- # here. Samba has a huge number of configurable options most of which
- # are not shown in this example
- #
- #======================= Global Settings =======================
- [global]
- ## Browsing/Identification ###
- # Change this to the workgroup/NT-domain name your Samba server will part of
- workgroup = WORKGROUP
- # server string is the equivalent of the NT Description field
- server string = Samba Server
- # This will prevent nmbd to search for NetBIOS names through DNS.
- dns proxy = no
- #### Debugging/Accounting ####
- # This tells Samba to use a separate log file for each machine
- # that connects
- log file = /var/log/samba/log.%m
- # We want Samba to log a minimum amount of information to syslog. Everything
- # should go to /var/log/samba/log.{smbd,nmbd} instead. If you want to log
- # through syslog you should set the following parameter to something higher.
- syslog = 0
- ####### Authentication #######
- # "security = user" is always a good idea. This will require a Unix account
- # in this server for every user accessing the server.
- security = user
- # This option controls how unsuccessful authentication attempts are mapped
- # to anonymous connections
- map to guest = bad user
- #======================= Share Definitions =======================
- [test]
- # Freizugebender Ordner
- path = /home/pi
- # Kein User+Passwort erforderlich
- guest ok = yes
- # Benutzerkreis einschränken
- ; valid users = jan
- # Schreibzugriff erlauben
- ; writeable = yes
- # Share nicht im Netzwerk zeigen
- ; browseable = no
- # wird zusätzlich zur Freigabe angezeig
- ; comment = Freigabe
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement