在 Window 托管环境中限制 IP 地址

Restrict IP Address in Window Hosting Envoirment

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

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

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

我能够在 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>`