Search code examples
c#asp.net-core-mvc.net-coresingle-sign-onidentityserver4

IdentityServer 4 with Active Directory on Premise


Our client have many applications and they want to integrate it to just log once (single sign on), but they want that using active directory on premise they have their own server.

We decided to evaluate identityserver so we found this http://docs.identityserver.io/en/latest/topics/windows.html that identitserver 4 support active directory but here we dont see where we are going to put the LPAD//... route to connect to the active directory... so we are with doubts if identityserver supports or not Active directory or Maybe we cant undertand it very well. Thank you.


Solution

  • IdentityServer supports multiple ways to authenticate Windows users

    • Windows integrated authentication if the machine running IS is domain joined (as the documentation describes)
    • Username/password login page via LDAP (manual code from the account controller)
    • via federation (e.g. with OpenID Connect/ADFS or a domain joined IdentityServer)