这是我的 web.config,其中有一些用于阻止 Ipaddress 的标签
<configuration>
<connectionStrings>
...
</connectionStrings>
<appSettings>
....
</appSettings>
<runtime>
....
</runtime>
<system.webServer>
<security>
<ipSecurity allowUnlisted="false">
<clear/>
<add ipAddress="127.0.0.1" allowed="true"/>
<add ipAddress="83.116.19.53" allowed="true"/>
</ipSecurity>
</security>
</system.webServer>
</configuration>
我的意图是阻止除上述之外的任何其他 IP。以上是我希望网站可以访问的唯一 IP 地址。但是使用“ipSecurity”标签,我总是收到 500 - 内部服务器错误,没有它,网站运行良好。
我已确保在服务器上安装了“IP 和域限制”。如果我遗漏了什么,请告诉我。谢谢你。