Displaying 4 results from an estimated 4 matches for "lp_disable_netbios".
2005 Oct 17
1
samba-3.0.20a: winbind with "disable netbios = yes"?
...startup. If I
block this port "wbinfo -t", "wbinfo -a username", and ntlm_auth request
fail with:
error code was NT_STATUS_INVALID_COMPUTER_NAME (0xc0000122)
Is this supposed to work? After a quick look at the winbind source code
it is not cleat to me that the code ever checks lp_disable_netbios.
Regards,
--
Christoph Badura, atsec information security GmbH
Theodor-Heuss-Ring 1, 50668 Koeln, Germany
bad@atsec.com, phone +49 221 57962-48, mobile +49 173 571 3345
2024 Jan 25
1
Samba acting as a domain member + netbios
...hat I don't know is why
> this function is called when using 'security = ads', and as a result
> of the fail my domain is added to the failed connection cache.
Whilst name_status_find is meant for netbios, if you look at the code,
there is this near the top of the function:
if (lp_disable_netbios()) {
DEBUG(5,("name_status_find(%s#%02x): netbios is disabled\n",
q_name, q_type));
return False;
}
Which to myself, means that if 'disable netbios = yes' is set in
smb.conf , then return false and log a message if the log level is 5 or
greater.
If 'disable netbios...
2024 Jan 25
1
Samba acting as a domain member + netbios
Thanks for the advice about the security line, I won't use domain type anymore then.
I know name_status_find is using NetBios, what I don't know is why this function is called when using 'security = ads', and as a result of the fail my domain is added to the failed connection cache.
Then, every action that needs to have a look into the cache results in failing, and wbinfo -P
2024 Jan 26
1
Samba acting as a domain member + netbios
...on't know is why
> this function is called when using 'security = ads', and as a result
> of the fail my domain is added to the failed connection cache.
Whilst name_status_find is meant for netbios, if you look at the code, there is this near the top of the function:
if (lp_disable_netbios()) {
DEBUG(5,("name_status_find(%s#%02x): netbios is disabled\n",
q_name, q_type));
return False;
}
Which to myself, means that if 'disable netbios = yes' is set in smb.conf , then return false and lo...