Hi,
we finally bought our CIFS license. :)
FILER2> version NetApp Release 6.0.1R2: Fri Feb 9 01:12:44 PST 2001
We _don't_ intend to use a Domain Controller (do we have to?).
To the moment, and after some reading I face following problems:
the indicated copy+paste of a crypted password from an unix server to the /vol/vol0/etc/passwd fails, I keep getting an NT_STATUS_WRONG_PASSWORD. If I delete the password field I can logon with no passwd;
the "cifs passwd PASS" pasted into the password field in /vol/vol0/etc/passwd gives the same behavior as the previous;
Any user can login as ANONYMOUS (even to the C$ share): smbclient //filer-2.nfs/C$/ -U idontexist -I filer-2.nfs [...] Anonymous login successful
TIA for you help.
When you ran cifs setup, did you select unix password authentication?
In the /vol/vol0/etc/passwd file, the filer expects the standard unix 13 character encrypted password string. Linux /etc/shadow uses a longer md5 hash of some sort and this doesn't work. If you don't have a file with the 13 character strings, then you can generate them yourself with perl like this:
$cleartext="mypasswd"; $salt="Xy"; $encrypted = crypt($cleartext, $salt); print("$encrypted\n");
$salt is any two characters chosen from these 64 characters:
ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789./
Steve Losen scl@virginia.edu phone: 434-924-0640
University of Virginia ITC Unix Support