我有一个在 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 可以访问该端。我需要做一个额外的步骤吗?因为不工作。这是最好的方法吗?谢谢你。