0

我需要将安全部分(代码)添加到位于 Windows 托管环境中的 Web.Config 文件中。此安全部分是为了允许从所有 IP 地址到我们的 Web 应用程序的流量,除了少数 IP 地址;xx.xxx.xx.xx

我对 Visual Basic 脚本一无所知,因为我是一名 php 开发人员,有人可以通过脚本或良好指南帮助我摆脱它

任何建议将不胜感激,等待

4

1 回答 1

1

我能够在 Window Based Hosting 中添加代码来限制 API,将其粘贴到此处以供其他人使用

它是如何完成的

示例 IP 地址限制。注释包含在其中,不是必需的。

允许所有,但阻止特定 IP 或网络

<security>
<ipSecurity allowUnlisted="true">
<!-- this line allows everybody, except those listed below -->
<clear/>
<!-- removes all upstream restrictions -->
<add ipAddress="83.116.19.53"/>
<!-- blocks the specific IP of 83.116.19.53  -->
<add ipAddress="83.116.119.0" subnetMask="255.255.255.0"/>
<!--blocks network 83.116.119.0 to 83.116.119.255-->
<add ipAddress="83.116.0.0" subnetMask="255.255.0.0"/>
<!--blocks network 83.116.0.0 to 83.116.255.255-->
<add ipAddress="83.0.0.0" subnetMask="255.0.0.0"/>
<!--blocks entire /8 network of 83.0.0.0 to 83.255.255.255-->
</ipSecurity>
</security>`
于 2015-07-23T07:19:52.087 回答