带有 IIS 10 的 Windows Server 2019。
我正在尝试在 IIS web.config 中配置“拒绝 IP”条目列表(见下文),但 IP 未被阻止。同时,如果我们通过 IIS 管理器(IP 地址和域限制功能)手动输入相同的 IP,则 IP 会按预期被阻止。
web.config 位于默认位置(默认网站的根文件夹),并且已减少到最低限度,仅用于排除单个 IP 故障(预计 69.122.29.94 将被阻止):
C:\inetpub\wwwroot\web.config
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<location path="Default Web Site">
<system.webServer>
<security>
<ipSecurity allowUnlisted="true">
<add ipAddress="69.122.29.94" subnetMask="255.255.255.255" allowed="false" />
</ipSecurity>
</security>
</system.webServer>
</location>
</configuration>
我不明白哪里出了问题?谢谢。