pardeep nuna
pardeep nuna

Reputation: 11

Multiple window domain authentication IIS server

My application server is on domain like abcuat.local. Window authentication is working fine. Now I want to add one more domain like abc.domain. Port is already open for both domain. How we can implement this on IIS server or in the c# code. Thanks in advance

Upvotes: 1

Views: 1380

Answers (1)

Manoj Choudhari
Manoj Choudhari

Reputation: 5634

This configuration is not dependent on IIS.

What you have to do is to setup trust between the two domain controllers - which you want to use for windows authentication.

Please ensure that all the appropriate ports are open between the two domain controllers between the trusted domains.

You will find the port information and other details in this article.

Once the domain trust is setup properly, the windows authentication would automatically work in IIS.

Hope this helps.

Upvotes: 1

Related Questions