Validate user Active Directory on external server

0

I have an application in php and I need to validate the login against an Active Directory server, that I have already done when the two servers are local, but in this case they are not and they do not open an Active Directory server port for security . They tell me that in these cases a gateway or gateway is used, something similar to what systems like Teamviewer use, but I do not know how it can be implemented. Another option that I have seen would be to create a webservice on the server where the Active Directory is, but to access it I will need to have the corresponding port.

Any ideas? thanks

    
asked by jaduran 28.09.2018 в 11:36
source

1 answer

0

authentication technologies with Active Directory were designed for internal network, when trying to make a login from outside the network with Active Directory credentials as you generate an unnecessary and potential security risk not only in your system but also in the complete system of (possibly) a company. That said if you still want to continue you can do it in a simple way with a WebService and LDAP technology, I leave a reference link

Application-Login-Through-Active-Directory-LDAP

NOTE: this WebService is with .NET technology

    
answered by 28.09.2018 в 14:45