Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Anonymous access and NTLM authentication in IIS

I have a server set up with IIS, and my site has some pages which should allow anonymous access and some pages which should require the "Integrated Windows authentication". On the Authentication Method screen in IIS it looks like you can enable both "Integrated Windows Authentication" and anonymous access, but the documentation I've read seems to indicate you can only use one or the other.

Does anyone know how to allow anonymous access to some pages and require NTLM authentication on others?

Thanks,

like image 847
Andrew Hampton Avatar asked Jan 29 '09 19:01

Andrew Hampton


2 Answers

Enabling both Anonymous Access and Windows Authentication means it will try Anonymous Access first, if that fails it will fall back to Windows Authentication. If you need to do both, you can either do as suggested with the web.config, or put the pages that need protection in a sub-folder in IIS, and enable only windows authentication on that.

like image 99
Sam Cogan Avatar answered Oct 20 '22 12:10

Sam Cogan


You have to use the authorization section in web.config.

To make only specific folders require authentication, you can have web.config with only the authorization element in subfolders like so:

<configuration>
   <system.web>
      <authorization>
         <deny users="?" />
      </authorization>
   </system.web>
</configuration>
like image 40
Daniel Schaffer Avatar answered Oct 20 '22 12:10

Daniel Schaffer