Public Samba Server: Difference between revisions

From SambaWiki
(New page explaining how to set up a public smb server)
 
m (Updated link)
 
(7 intermediate revisions by 3 users not shown)
Line 1: Line 1:
#REDIRECT [[Setting_up_Samba_as_a_Standalone_Server]]
In some situations, it is valuable to have unauthenticated access to a Samba server, where the username and password supplied by the client is ignored.

To share (for example) /data on a Samba server first create an smb.conf with:

[globals]
map to guest = bad user

[share]
path = /data
guest ok = yes

To allow write access to the share change it to:

[share]
path = /data
guest ok = yes
read only = no

Finally, ensure that the Samba guest account (typcially nobody) has the posix permissions to read and write (as appropriate) /data on your server's file system.

To change the guest account, set:

[globals]
guest account = samba_guest
map to guest = bad user

This configuration will still permit authentication - any user in your Samba password database (passdb.tdb, smbpasswd etc) can still authenticate, as long as the username is correct.

To test access to the share will work regardless of username specified by the client, run:

smbclient //server/share -Unot_a_user%foo
smb> ls
smb> get file

(where file is a file in /data)

Latest revision as of 15:37, 7 January 2017