I am working on a Portal and want to detect whether the users in on our domain. I have been told that the best way to do this is to do a reverse DNS lookup to check the remote host and whether the user is on our domain and then log them in using their AD credentials.
We want the user to be logged in if they are on our domain:
First we'll do an IP Range check then a reverse DNS lookup...
On another system we use this code in an ASP page
Dim oIIS
Dim vEnableRevDNS
Dim vDisableRevDNS
vEnableRevDNS = 1
vDisableRevDNS = 0
Set oIIS = GetObject("IIS://localhost/w3svc/1/ROOT")
oIIS.Put "EnableReverseDNS", vEnableRevDNS
oIIS.SetInfo
Set oIIS = Nothing
Is there a way to do this in MVC 2:C#?
To clarify: I will still be using Windows Integrated Authentication - however I want the process to be seamless... if you are our network you get automatically logged in... if you are not you get forwarded to a login page
There will be intranet/ extranet and public user access - each will have a different login process - I want to use reverse DNS purely as a mechanism to direct to an entry point.
Thanks for any pointers.