samba - no permission? [panther]

Racer D

what?
I'm trying to setup a samba server on my 10.3 I've set up my smb.conf and I created a user, but when I try to connect to a share I get permission denied

this is my smb.conf
Code:
[global]
server string = racer
netbios name = racer
netbios aliases = racer
guest account = pcguest
workgroup = HOME
encrypt passwords = yes
password level = 20

[Web]
comment = web
path = /Users/racer/Sites
read only = no
public = yes

and this is my output when I run "smbclient -L //racer -U racer" on openbsd machine:
Code:
        Sharename      Type      Comment
        ---------      ----      -------
        Web            Disk      web
        IPC$           IPC       IPC Service (racer)
        ADMIN$         IPC       IPC Service (racer)

        Server               Comment
        ---------            -------

        Workgroup            Master
        ---------            -------
        HOME                 ATHLON

when I try to connect via my mac I get "some data in smb://racer/ could not be read or written" (error code -36)
Tried chmoding the dir to 666, no luck
If I try to connect via openbsd & sharity-light it just hangs and I have to close my ssh session.

also when I run "smbpasswd" as a normal user I get this after filling in the passwords:
Code:
machine 127.0.0.1 rejected the session setup. Error was : NT_STATUS_LOGON_FAILURE.
Failed to change password for racer
It works if I sudo it though

so anyone here with the lsightest idea what could be wrong?
 
ugh, got it to work
had to change "guest account = pcguest" to "guest account = racer", since racer is a user in the db. but why does it connect as guest? I did specify a user. Is my smb.conf wrong?
 
Back
Top