Intranet website authentication using windows logon

后端 未结 4 1953
轮回少年
轮回少年 2021-01-05 16:51

I\'m building an internal website in Perl and I would like to get it to use Windows credentials for authentication. My research so far has turned up a lot of keywords: Kerbe

4条回答
  •  庸人自扰
    2021-01-05 17:26

    Are your servers part of a Microsoft Active Directory?

    • Active Directory is LDAP-compliant. Therefore, you can setup LDAP to authenticate your users

    • Are you using Apache? If so, there is a module that allows you to authenticate to an Active Directory directory: mod_ auth_sspi

    • Finally, Microsoft has created Active Directory Service Interfaces (ASDI) to solve these types of problems. There is a lot of information at MSDN. For example, this is how the open-source Hudson CI server authenticates to Active Directory.

    I hope one of these suggestions help you.

提交回复
热议问题