IP限制和域名限制&退回状态代码?

时间:2015-12-16 14:30:59

标签: iis iis-8.5 ip-restrictions

我们正在使用IPDR,它正在完美地工作,因为它阻止了我们期望它阻止它并允许它应该允许的那些东西。我们感到困惑的是它为什么将状态代码返回给客户端(500)。

<location path="pathtoblock">
    <system.webServer>
      <security>
        <ipSecurity allowUnlisted="false" denyAction="NotFound" >
          <clear/>
          <add allowed="true" ipAddress="127.0.0.1" />
          <add allowed="true" ipAddress="192.168.1.1" />
        </ipSecurity>
      </security>
    </system.webServer>
  </location>

从上面可以看出,我们正在使用denyAction="NotFound"。所以可以理解,所以我们期待404错误,但我们在"The page cannot be displayed because an internal server error has occurred."浏览器中收到500错误和错误消息我检查了IIS日志:

date time  s-ip     cs-method   cs-uri-stem cs-uri-query    s-port cs-username c-ip cs(User-Agent) cs(Referer) sc-status sc-substatus sc-win32-status time-taken
2015-11-18 18:06:25 192.168.1.2 GET         /pathtoblock - 443 -  192.168.1.3     Mozilla/5.0+(Windows+NT+6.3;+WOW64)+AppleWebKit/537.36+(KHTML,+like+Gecko)+Chrome/46.0.2490.86+Safari/537.36 - 404 503 5 62

为什么我们没有像预期的那样收到404?

0 个答案:

没有答案