Reputation: 6634
In my project, I am using PingFederate and want to integrate AD of two separate domains. It is pretty simple to integrate one but wasnt able to find any documentation on how to integrate 2 separate ADs of different domains. Additionally, I want to have IP restrictions as well (like users from IP1 would be authenticated against AD1 and users from IP2 would be authenticated against AD2).
I am using Agent-less integration.
Upvotes: 0
Views: 327
Reputation: 356
Using PingFederate as the Identity PRovider (IdP), you would use an Authentication Selector, specifically the CIDR Selector for IP Restriction. This inspects the HTTP request for IP ranges using CIDR notation. The configuration for the Authentication Selector would then define a specific HTML Form Adapter using a specific Password Credential Validator (PCV). For example, CIDR Selector for IP1 would invoke the HTML1 form adapter that uses PCV to AD1, and then the CIDR Selector for IP2 would invoke HTML2 form adapter that uses PCV to AD2, and so forth. Authentication selectors have a default if none of the IP ranges match, which could redirect to an error page or goto some default authentication HTML Adapter form.
Upvotes: 2