限制IP安全出现问题。我结了一张网。配置文件,并将其放在我试图限制的文件夹中,见下文:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<security>
<ipSecurity allowUnlisted="false" enableProxyMode="true" denyAction="Forbidden">
<clear />
<add ipAddress="123.456.789" allowed="true" />
</ipSecurity>
</security>
</system.webServer>
</configuration>
我也调整了applicationHost。配置:
<section name="ipSecurity" overrideModeDefault="Allow" />
然而,当浏览到该文件夹中的文件时,我得到403。我已经重新启动IIS并且IP地址正确。
我错过了什么?
检查IIS日志中的客户端IP (c-ip),并将其添加到IP -限制规则中