mirror of
https://github.com/samba-team/samba.git
synced 2025-01-26 10:04:02 +03:00
Add extra bits to our 'netlogon' response in CLDAP and NBT.
I've studied now the netlogon attribute from the CLDAP request and have compared them with the table presented in the WSPP docs (http://msdn.microsoft.com/en-us/library/cc201036.aspx). The first two bytes seem to be correct, but that the third and fourth one is completely clear with SAMBA 4. Signed-off-by: Andrew Bartlett <abartlet@samba.org> (This used to be commit 3024a43c25e3ec9821d94a27d5cf738890b1b8f3)
This commit is contained in:
parent
41493cbe68
commit
bec7a95207
@ -256,7 +256,8 @@ NTSTATUS fill_netlogon_samlogon_response(struct ldb_context *sam_ctx,
|
||||
server_type =
|
||||
NBT_SERVER_DS | NBT_SERVER_TIMESERV |
|
||||
NBT_SERVER_CLOSEST | NBT_SERVER_WRITABLE |
|
||||
NBT_SERVER_GOOD_TIMESERV;
|
||||
NBT_SERVER_GOOD_TIMESERV | NBT_SERVER_DS_DNS_CONTR |
|
||||
NBT_SERVER_DS_DNS_DOMAIN;
|
||||
|
||||
if (samdb_is_pdc(sam_ctx)) {
|
||||
server_type |= NBT_SERVER_PDC;
|
||||
@ -274,6 +275,10 @@ NTSTATUS fill_netlogon_samlogon_response(struct ldb_context *sam_ctx,
|
||||
server_type |= NBT_SERVER_KDC;
|
||||
}
|
||||
|
||||
if (!ldb_dn_compare_base(ldb_get_root_basedn(sam_ctx), ldb_get_default_basedn(sam_ctx))) {
|
||||
server_type |= NBT_SERVER_DS_DNS_FOREST;
|
||||
}
|
||||
|
||||
pdc_name = talloc_asprintf(mem_ctx, "\\\\%s", lp_netbios_name(lp_ctx));
|
||||
domain_uuid = samdb_result_guid(dom_res->msgs[0], "objectGUID");
|
||||
realm = samdb_result_string(ref_res->msgs[0], "dnsRoot", lp_realm(lp_ctx));
|
||||
@ -285,6 +290,7 @@ NTSTATUS fill_netlogon_samlogon_response(struct ldb_context *sam_ctx,
|
||||
|
||||
flatname = samdb_result_string(ref_res->msgs[0], "nETBIOSName",
|
||||
lp_workgroup(lp_ctx));
|
||||
/* FIXME: Hardcoded site names */
|
||||
server_site = "Default-First-Site-Name";
|
||||
client_site = "Default-First-Site-Name";
|
||||
load_interfaces(mem_ctx, lp_interfaces(lp_ctx), &ifaces);
|
||||
|
@ -353,7 +353,13 @@ interface nbt
|
||||
NBT_SERVER_TIMESERV = 0x00000040,
|
||||
NBT_SERVER_CLOSEST = 0x00000080,
|
||||
NBT_SERVER_WRITABLE = 0x00000100,
|
||||
NBT_SERVER_GOOD_TIMESERV = 0x00000200
|
||||
NBT_SERVER_GOOD_TIMESERV = 0x00000200,
|
||||
NBT_SERVER_NDNC = 0x00000400,
|
||||
NBT_SERVER_SEL_SEC_DOM_6 = 0x00000800,
|
||||
NBT_SERVER_FUL_SEC_DOM_6 = 0x00001000,
|
||||
NBT_SERVER_DS_DNS_CONTR = 0x04000000,
|
||||
NBT_SERVER_DS_DNS_DOMAIN = 0x02000000,
|
||||
NBT_SERVER_DS_DNS_FOREST = 0x01000000
|
||||
} nbt_server_type;
|
||||
|
||||
typedef [bitmap32bit,public] bitmap {
|
||||
|
Loading…
x
Reference in New Issue
Block a user