View previous topic :: View next topic |
Author |
Message |
immure n00b
Joined: 27 Mar 2005 Posts: 16
|
Posted: Fri Apr 01, 2005 11:20 pm Post subject: SAMBA not allowing guest access to shares |
|
|
Am being asked for a user login with the following config... However an identical config on another machine works fine.
/home/mike/files/local/ is drwxr-xr-x 87 mike users 4096 Apr 1 23:46 Movies
Code: |
mars root # cat /etc/samba/smb.conf
[global]
workgroup = COMSCARE
server string = God of War
domain master = no
local master = no
preferred master = no
restrict anonymous = no
map to guest = Bad User
guest ok = yes
max protocol = NT
ldap ssl = No
server signing = Auto
guest account = guest
security = share
[TV]
path = /home/mike/files/drive3/TV
[movies]
path = /home/mike/files/local/Movies
[music]
path = /home/mike/files/drive1/Music/Albums |
Does anyone have any idea why this is happening? My head is hurting.. |
|
Back to top |
|
|
immure n00b
Joined: 27 Mar 2005 Posts: 16
|
Posted: Fri Apr 01, 2005 11:37 pm Post subject: |
|
|
Nevermind, the following config randomly worked.
Love samba.
Code: | [global]
workgroup = COMSCARE
server string = God of War
domain master = no
local master = no
preferred master = no
restrict anonymous = no
map to guest = Bad User
guest ok = yes
max protocol = NT
ldap ssl = No
server signing = Auto
guest account = mike
security = share
[homes]
case sensitive = no
msdfs proxy = no
[movies]
guest account = mike
case sensitive = no
guest only = yes
msdfs proxy = no
path = /home/mike/files/local/Movies
[TV]
case sensitive = no
msdfs proxy = no
path = /home/mike/files/drive3/TV
[music]
case sensitive = no
msdfs proxy = no
path = /home/mike/files/drive1/Music
mike@mars mike $ |
|
|
Back to top |
|
|
|