SOLVED

Authenticating onpremise users in Azure ADDS

Copper Contributor

Hi,

 

we want onpremises users to authenticate to Azure ADDS with their onpremises domain credentials to maintain the default password and GPO.

 

It is possible?

 

Thanks.

3 Replies
In a hybrid environment, objects and credentials from an on-premises AD DS domain can be synchronized to Azure AD using Azure AD Connect. Once those objects are successfully synchronized to Azure AD, the automatic background sync then makes those objects and credentials available to applications using the managed domain.

What's not synchronize from an on-premises AD DS environment to Azure AD or Azure AD DS:
OU's , Group policy, excluded attribute, sysvol, computer objects, SidHistory attributes for users and groups
best response confirmed by Sandro Alves (Copper Contributor)
Solution

Just to add to what @Seshadrr said already:

  • objects (users and groups) in AAD DS directory have different SIDs (it's a different domain/forest than the on-premises one), but the original SIDs (source objects) are saved to SIDHistory
  • users will be using different UPN suffix (the one you choose when you enable AAD DS in your environment), but the prefix will be the same as in the original ADDS domain.
  • passwords: the idea with AADDS is to be able to use the same credentials, but it requires Password-Hash-Sync enabled in AAD Connect configuration as described here.
  • OU structure and GPOs are not replicated to AADDS, but you can still create custom OUs and GPOs in the managed AADDS directory. You just need to export/import or re-create them manually

Hi
I'm assuming that you're talking about Azure AD and not Azure ADDS which is a managed domain services and cannot by design handle local identites  . Currently your users have "local identities" so to be able to leverage Azure AD with the same identity you need to convert those objects to "hybrid identities"
How ?
You need to download Azure AD connect and configure it to sync your users

https://docs.microsoft.com/en-us/azure/active-directory/hybrid/whatis-azure-ad-connect
You may alo need to look at Azure AD connect cloud sync which is the new offering .
You can use the below link to know more about this tool and see the comparison between the two.
https://docs.microsoft.com/en-us/azure/active-directory/cloud-sync/what-is-cloud-sync
You can find bunch of informations about best practices for the install like below
https://thesysadminchannel.com/azure-ad-connect-best-practices-installation-guide/
Once the directory synchronisation and in place your users can leverage their user principal names to connect Microsoft Online Services with the same password . Also You can configure Single Sign On .

1 best response

Accepted Solutions
best response confirmed by Sandro Alves (Copper Contributor)
Solution

Just to add to what @Seshadrr said already:

  • objects (users and groups) in AAD DS directory have different SIDs (it's a different domain/forest than the on-premises one), but the original SIDs (source objects) are saved to SIDHistory
  • users will be using different UPN suffix (the one you choose when you enable AAD DS in your environment), but the prefix will be the same as in the original ADDS domain.
  • passwords: the idea with AADDS is to be able to use the same credentials, but it requires Password-Hash-Sync enabled in AAD Connect configuration as described here.
  • OU structure and GPOs are not replicated to AADDS, but you can still create custom OUs and GPOs in the managed AADDS directory. You just need to export/import or re-create them manually

View solution in original post