2016-09-07 13 views
0

私たちはFrontEndサイトでAzure Web APPを使用しています。最近私たちのウェブサイトでDOS攻撃を発見しました。私が周りを見つけたとき、私はAzure Cloud Servicesの解決策を知りました。ダイナミックを設定するためのAzure WebでのDOSの保護APP

1):AzureのWebアプリケーションは、ボックスのサポートのうちで保護することができます任意の方法、..私は知っているように

答えて

0

、我々はAzureのWebアプリケーションを保護するための静的/動的IPの制限を設定することができますがありますWindows Azure Web AppのIPアドレスの制限については、this articleを参照してください。
2)Windows Azure Web Appの静的IPアドレス制限を設定する場合は、this articleを参照してください。

this videoも読んで開始できます。

0

Azure Webサイトでは、IIS8の動的IP制限モジュールが有効になっています.DirefoxのWebアプリケーションをDDoS攻撃から保護するには、アプリケーションのweb.configファイルのSystem.WebServerにDynamic Ip Securityを設定します。

<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/

関連する問題