I've been trying to follow the instructions on the website http://lansweeper.com/kb/restrict.aspx.
My setup is a Win2k8R2 server, running IIS7, and Lansweeper 4.2.0.70.
I followed the instructions and installed Windows Authentication in IIS, set muy LanSweeper AppPool to use Classic Pipeline Mode, and under Authentication for my Lansweeper website I have Windows Authentication Enabled and Anonymous Authentication disabled.
Here is my web.config from my Lansweeper:
<configuration>
<appSettings>
<add key="MM_CONNECTION_HANDLER_Lansweeper" value="sqlserver.htm" />
<add key="MM_CONNECTION_STRING_Lansweeper" value="Persist Security Info=False;Data Source=AUSWDS01V\SQLEXPRESS;Initial Catalog=lansweeperdb;User ID=lansweeperuser;Password=******;Connect Timeout=120" />
<add key="MM_CONNECTION_DATABASETYPE_Lansweeper" value="SQLServer" />
<add key="MM_CONNECTION_SCHEMA_Lansweeper" value="" />
<add key="MM_CONNECTION_CATALOG_Lansweeper" value="" />
</appSettings>
<system.web>
<authentication mode="Windows" />
<identity impersonate="true" />
<authorization>
<allow roles="MyDomain\My GroupName" />
<deny users="*" />
</authorization>
<compilation debug="false" defaultLanguage="VB" />
</system.web>
</configuration>
I have the MyDomain\My Groupname set to an actual Security group in our AD.
What's odd is I cannot authenticate with Internet Explorer 8. It just repeatedly prompts for a username and password.
Any ideas why I cannot get IE to authenticate?