Displaying 3 results from an estimated 3 matches for "haihua".
2019 May 31
1
Windows AD report KRB5KDC_ERR_ETYPE_NOSUPP when client request AES ticket
...mmand report the samba server support all the enctypes.
'dks4$' uses "msDS-SupportedEncryptionTypes": 31 (0x0000001f)
[X] 0x00000001 DES-CBC-CRC
[X] 0x00000002 DES-CBC-MD5
[X] 0x00000004 RC4-HMAC
[X] 0x00000008 AES128-CTS-HMAC-SHA1-96
[X] 0x00000010 AES256-CTS-HMAC-SHA1-96
Thanks,
Haihua Yang
2019 Sep 26
1
why auth3_check_password load smb.conf again
Hi,
In function auth3_check_password of file source3/auth/auth_ntlmssp.c, it
load smb.conf by lp_load_with_shares(get_dyn_CONFIGFILE());.
I am wondering why it is needed since smbd has load config before and it
hurts the performance when smb.conf is large.
Thanks,
Haihua
2023 Nov 21
0
is it safe to encode/decode uid_t/gid_t in 4 bytes?
Hi,
Samba internally uses 8 bytes to encode/decode uid_t/gid_t, e.g.,
_PUBLIC_ enum ndr_err_code ndr_push_uid_t(struct ndr_push *ndr, int
ndr_flags, uid_t u)
{
NDR_PUSH_CHECK_FLAGS(ndr, ndr_flags);
return ndr_push_hyper(ndr, NDR_SCALARS, (uint64_t)u);
}
I want to know if it is safe to use 4 bytes to reduce the size in storing
security_info in tdb.
I am not aware of if there is