diff options
author | Andrew Tridgell <tridge@samba.org> | 2002-10-03 14:23:06 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2002-10-03 14:23:06 +0000 |
commit | fa066fdde31d649929affa2d53fd52de1d5447fb (patch) | |
tree | d9e5b8ffe5a7ea95262fe76543364e9cce80a4b3 | |
parent | c1346cdca9a4a5290b91428878bd4b2f122eb6b1 (diff) | |
download | samba-fa066fdde31d649929affa2d53fd52de1d5447fb.tar.gz samba-fa066fdde31d649929affa2d53fd52de1d5447fb.tar.bz2 samba-fa066fdde31d649929affa2d53fd52de1d5447fb.zip |
.NET likes both forms of servicePrincipalName in the machine account
record
(This used to be commit 8ff6d40d7fe4dc11e9ba194a55995c0926202df9)
-rw-r--r-- | source3/libads/ldap.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/source3/libads/ldap.c b/source3/libads/ldap.c index 2133bf0719..809faa24b3 100644 --- a/source3/libads/ldap.c +++ b/source3/libads/ldap.c @@ -1031,6 +1031,7 @@ static ADS_STATUS ads_add_machine_acct(ADS_STRUCT *ads, const char *hostname, ADS_MODLIST mods; const char *objectClass[] = {"top", "person", "organizationalPerson", "user", "computer", NULL}; + char *servicePrincipalName[3] = {NULL, NULL, NULL}; if (!(ctx = talloc_init_named("machine_account"))) return ADS_ERROR(LDAP_NO_MEMORY); @@ -1048,6 +1049,12 @@ static ADS_STATUS ads_add_machine_acct(ADS_STRUCT *ads, const char *hostname, } new_dn = talloc_asprintf(ctx, "cn=%s,%s,%s", hostname, ou_str, ads->config.bind_path); + servicePrincipalName[0] = talloc_asprintf(ctx, "HOST/%s", hostname); + servicePrincipalName[1] = talloc_asprintf(ctx, "HOST/%s.%s", + hostname, + ads->config.realm); + strlower(&servicePrincipalName[1][5]); + free(ou_str); if (!new_dn) goto done; @@ -1066,7 +1073,7 @@ static ADS_STATUS ads_add_machine_acct(ADS_STRUCT *ads, const char *hostname, ads_mod_str(ctx, &mods, "sAMAccountName", samAccountName); ads_mod_strlist(ctx, &mods, "objectClass", objectClass); ads_mod_str(ctx, &mods, "userPrincipalName", host_upn); - ads_mod_str(ctx, &mods, "servicePrincipalName", host_spn); + ads_mod_strlist(ctx, &mods, "servicePrincipalName", servicePrincipalName); ads_mod_str(ctx, &mods, "dNSHostName", hostname); ads_mod_str(ctx, &mods, "userAccountControl", controlstr); ads_mod_str(ctx, &mods, "operatingSystem", "Samba"); |