|
I have found a couple references to this problem none reference you exact problem but they may help lead you to the correct answer. The cause is "double accessing" a resource from the same Windows machine. It may be because you are already auto-logged from the Windows 2000 machine. You can sever the connections by rebooting or use the following trick from the command prompt on your Windows client:
NET USE * /DELETE
This should remove all shares to other computers from Windows 2000. You may find that the following Microsoft Knowledge Base articles helpful too "Error: The Credentials Supplied Conflict with an Existing Set of Credentials" or "Err Msg: The Credentials Supplied Conflict with an Existing...".
Here are some relevant articles from the Samba mailing list.
You can solve the problem by creating different users for each resource.
Basically, the post states that if the Windows network redirector can't handle it, you can solve the problem by using different entries in your local lmhosts file (on the NT box).
For example:
net use servershare1 /user:1
net use 10.9.8.7share2 /user:user2
10.9.8.7 is the IP address of "server."
|