遇到限制 IP 安全的问题。我制作了一个 web.config 文件并将其放在我要限制的文件夹中,请参见下文:
<?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.config 调整为:
<section name="ipSecurity" overrideModeDefault="Allow" />
但是,当浏览到该文件夹中的文件时,我得到一个 403。我已经重新启动了 IIS,并且 IP 地址是正确的。
我错过了什么?