IdentityServer 4 with Active Directory Indoor

Our client has many applications, and they want to integrate it for one-time registration (single sign-on), but they want to have their own server when using the active directory.

We decided to evaluate identityserver, so we found this http://docs.identityserver.io/en/latest/topics/windows.html, in which identifitserver 4 supports the active directory, but here we do not see where we are going to put the LPAD //. ... a route to connect to the active directory ... so we doubt whether identityserver supports Active Directory or not, or maybe we cannot perform it very well. Thank.

+6
source share
1 answer

IdentityServer supports several ways to authenticate Windows users.

  • Integrated Windows authentication if the machine running IS is associated with a domain (as described in the documentation)
  • Username / password login page via LDAP (manual code from account controller)
  • through federation (for example, using OpenID Connect / ADFS or a domain joined to IdentityServer)
+6
source

Source: https://habr.com/ru/post/1685037/


All Articles