Displaying 5 results from an estimated 5 matches for "smb_apasswd".
Did you mean:
dsmb_passwd
2001 Apr 20
0
Fudging domain support - samba 2.2.0
....2.0/source/smbd/reply.c Wed Apr 18 15:59:55 2001
***************
*** 616,623 ****
if(lp_security() != SEC_DOMAIN)
return False;
! if (!check_domain_match(orig_user, domain))
! return False;
ret = domain_client_validate(orig_user, domain,
smb_apasswd, smb_apasslen,
--- 616,625 ----
if(lp_security() != SEC_DOMAIN)
return False;
! if (!check_domain_match(orig_user, domain)) {
! DEBUG(0,("Domain %s remapped to %s\n",domain,global_myworkgroup));
! domain = global_myworkgroup;
! }
ret = domain_client_valid...
1998 Jun 19
1
SAMBA 1.9.18p8, username map, server security
I have a problem with new version (1.9.18p8) of SAMBA and username
mapping.
Configuration:
WindowsNT 4.0 Workstation + SP1
WindowsNT domain - NTEP01 is PDC
Digital UNIX 3.2C
Username on NT:
Babor
Username on UNIX:
baborl
In SMB.CONF I have following lines:
[global]
security = server
password server = NTEP01
username map = /usr/local/samba/lib/username.map
username.map:
baborl = babor
1998 Jul 13
1
password server problem
We are using samba with a NT4.0 Primary Domain Controller as a samba password
server.
Logon validation on the primary domain controller works fine, the NT machine
validates the user password.
BUT: On the NT PDC the event log shows numerous entries saying:
Unknown user or wrong password
Did anybody experience this too ????
Rainer von Bongartz
/D/I/L/
rainer.von-bongartz@dil.de
1998 Aug 20
0
macro subsitution inconsistancies
...king at the sources, I tracked this down to reply.c:reply_sesssetup_and_X, which contains this code and comment:
/* If no username is sent use the guest account */
if (!*user)
{
pstrcpy(user,lp_guestaccount(-1));
/* If no user and no password then set guest flag. */
if( *smb_apasswd == 0)
guest = True;
}
This makes sense, considering that it then tries to read the file /etc/smb-confs/smb.conf.guest (my guest account = guest).
I don't know if this should be chalked up to a bug in NT (not sending a username to get a browse list on subsequient requests unlike ho...
2003 Dec 01
0
No subject
...y.c 11 Sep 2001 02:45:02 -0000
@@ -776,7 +776,8 @@
add_session_user(user);
if (!guest) {
- valid_password = NT_STATUS_IS_OK(pass_check_smb(user, domain,
+// stj
+ valid_password = NT_STATUS_IS_OK(pass_check_smb(orig_user, domain,
(unsigned char *)smb_apasswd,
smb_apasslen,
(unsigned char *)smb_ntpasswd,
Tim Potter wrote:
>Andrew Bartlett writes:
>
>[...]
>
>>>It seems a bit confusing at the moment with request_username and
>>>smb_username kind of meaning the...