|
XP not able to mount Linux share through SAMBA
Hi all,
Have RH-9 on a machine, samba running, and a Win-XP machine that tries to mount ptshare. In the network neighborhood on the XP machine I see workgroup MSHOME and RHLinux (my RH machine) under it, but get a message about privs: "\\RHLinux is not accessible. You might not have permissions to use this network resource. Contact the system administrator blablabla"
I can ping the both machines from each other. When I try
net use x: \\192.168.1.103\ptshare it actually prompts me for a user and password but then get error 53 on the XP.
On the linux box I can do: smbclient //192.168.1.103/ptshare then hit enter on the password prompt, and it puts me on the smb: /> prompt and I can do e.g. ls which shows a file that sits in /home/peter/ptshare, so that seems to work.
Anybody any suggestions why the XP machine is having trouble?
Here's my smb.conf.
[global]
workgroup = MSHOME
server string = Samba Server on RedHat Linux
hosts allow = 192.168.1. 192.168.2. 127.
printcap name = /etc/printcap
load printers = yes
printing = cups
log file = /var/log/samba/%m.log
max log size = 0
security = share
encrypt passwords = yes
smb passwd file = /etc/samba/smbpasswd
unix password sync = Yes
passwd program = /usr/bin/passwd %u
passwd chat = *New*password* %n\n *Retype*new*password* %n\n *passwd:*all*authentication*tokens*updated*successfully*
pam password change = yes
obey pam restrictions = yes
socket options = TCP_NODELAY SO_RCVBUF=8192 SO_SNDBUF=8192
dns proxy = no
[homes]
comment = Home Directories
browseable = no
writable = yes
valid users = %S
create mode = 0664
directory mode = 0775
[printers]
comment = All Printers
path = /var/spool/samba
browseable = no
guest ok = no
writable = no
printable = yes
[tmp]
comment = Temporary file space
path = /tmp
read only = no
public = yes
[ptshare]
comment = Peter's Home
path = /home/peter/Share
public = yes
writable = yes
printable = no
|