Azure Web APP 中的 DOS 保护 [英] DOS Protection in Azure Web APP

查看:13
本文介绍了Azure Web APP 中的 DOS 保护的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我们将 Azure Web APP 用于我们的前端站点.最近我们在我们的网站上发现了 DOS 攻击.当我四处搜索时,我了解了 Azure 云服务的解决方案.有什么办法,可以通过开箱即用的支持来保护 Azure Web APP..

We are using Azure Web APP for for our FrontEnd site. Recently we have discovered DOS attack on our website. When I googled around I got to know solution for Azure Cloud Services. Is there any way, Azure Web APP can be protected with out of box support..

推荐答案

Azure 网站为 IIS8 启用了动态 IP 限制模块.您可以通过在 System 下配置动态 IP 安全来保护您的 Azure Web 应用免受 DDOS 攻击.WebServer 在您应用的 web.config 文件中,如下所示.

Azure Web Sites enabled the Dynamic IP Restrictions module for IIS8.You can protect your Azure Web App from DDOS Attacks by configuring Dynamic Ip Security under System.WebServer in your App's web.config file as follows.

   <security>
  <dynamicIpSecurity denyAction="NotFound">
  <!--<denyByConcurrentRequests enabled="true" maxConcurrentRequests="20" />-->
    <denyByRequestRate enabled="true" maxRequests="20" requestIntervalInMilliseconds="5000"/>     
  </dynamicIpSecurity>
</security>

阅读参考以获取更多信息https://azure.microsoft.com/fr-fr/blog/confirming-dynamic-ip-address-restrictions-in-windows-azure-web-sites/

Read Reference For More Information https://azure.microsoft.com/fr-fr/blog/confirming-dynamic-ip-address-restrictions-in-windows-azure-web-sites/

这篇关于Azure Web APP 中的 DOS 保护的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆