我有一个在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可以访问该端。 我需要做一个额外的步骤吗?因为不行。这是最好的方式吗? 谢谢。
答案 0 :(得分: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.