我正在运行Win7,IIS7,并使用Windows身份验证为Intranet组建了一个网站。当我输入我的IP用于我的URL时,我可以访问该网站,但登录到Intranet的其他用户无法看到该网站。 IE只是给他们一个'网站无法显示'。
以下是网站的webconfig,我冒充并将Windows作为身份验证模式。
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0" />
<identity impersonate="true" />
<authentication mode="Windows"></authentication>
</system.web>
</configuration>
我是否缺少任何读取权限?
以下是有权访问该网站的当前用户和组:
IIS_WPG
Administrators
USERS(myusername\Users)
IIS_IUSRS(myusername\IIS_IUSRS)
答案 0 :(得分:0)
用户组应该是域级用户组。看起来您目前只允许本地用户
例如:
USERS(mydomain\Users)
答案 1 :(得分:0)
您是否需要在模拟区域中使用用户名和密码?或许不是因为你有Windows身份验证...
<identity imersonate="true" username="someUser" password="somePassword" />