0

我有一个在 IIS 6.0 中运行的网站,该网站是一个带有框架 4.0 的 asp.net 我们有一个未托管在客户端上的应用程序,而是托管在我们这边。客户端要求仅允许特定 IP 的访问。

所以我在 web.config 中添加了 IP 列表,如下所示:

<security>
  <ipSecurity allowUnlisted="false">    
    <clear/> <!-- removes all upstream restrictions -->
    <add ipAddress="XXX.XXX.XXX.114" subnetMask="255.255.255.0" allowed="true"/>
<add ipAddress="XXX.XXX.XXX.85" subnetMask="255.255.255.0" allowed="true"/>
   </ipSecurity>
 </security>

在此示例中,只有两个 IP 可以访问该端。我需要做一个额外的步骤吗?因为不工作。这是最好的方法吗?谢谢你。

4

1 回答 1

0

我认为您的答案在此链接中IP Security

    Compatibility

    Version   Notes

IIS 7.5     The <ipSecurity> element was not modified in IIS 7.5.

IIS 7.0     The <ipSecurity> element was introduced in IIS 7.0.

IIS 6.0     The <ipSecurity> element replaces the IIS 6.0 IPSecurity metabase property.
于 2012-10-15T23:35:23.117 回答