我们正在为我们的FrontEnd站点使用Azure Web APP。最近我们在我们的网站上发现了DOS攻击。当我用谷歌搜索的时候,我知道了Azure云服务的解决方案。是否有任何方法可以通过开箱即用的支持来保护Azure Web应用程序。
发布于 2017-10-17 21:32:29
Azure网站为IIS8启用了动态IP限制模块。您可以通过在应用程序的web.config文件中的System.WebServer下配置动态Ip安全来保护Azure Web应用程序免受DDOS攻击,如下所示。
<security>
<dynamicIpSecurity denyAction="NotFound">
<!--<denyByConcurrentRequests enabled="true" maxConcurrentRequests="20" />-->
<denyByRequestRate enabled="true" maxRequests="20" requestIntervalInMilliseconds="5000"/>
</dynamicIpSecurity>
</security>发布于 2016-09-08 11:24:42
据我所知,我们可以配置静态/动态IP限制来保护我们的Azure web应用程序:
1)有关在Restrictions Web App中配置动态IP地址限制的信息,请参阅this article。
2)有关在configure Web App中配置静态IP地址限制的信息,请参阅this article。
你也可以阅读this video来开始学习。
https://stackoverflow.com/questions/39370217
复制相似问题