2016-09-07 8 views
0

우리는 FrontEnd 사이트에 Azure Web APP를 사용하고 있습니다. 최근에 우리는 웹 사이트에서 DOS 공격을 발견했습니다. 내가 인터넷 검색을 할 때 Azure Cloud Services에 대한 솔루션을 알아야했습니다. 동적 구성을위한Azure Web에서의 DOS 보호 APP

1) : 푸른 웹 APP 상자 지원 중 보호 할 수있는 방법 .. 내가 아는 한

답변

0

, 우리는 우리의 푸른 웹 응용 프로그램을 보호하기 위해 정적/동적 IP 제한을 구성 할 수 있는가 Windows Azure Web App의 IP 주소 제한은 this article을 참조하십시오.
2) Windows Azure Web App에서 고정 IP 주소 제한을 구성하려면 this article을 참조하십시오.

this video도 읽을 수 있습니다.

0

Azure 웹 사이트에서 IIS8 용 동적 IP 제한 모듈을 사용할 수 있습니다. 다음과 같이 응용 프로그램의 web.config 파일에서 System.WebServer 아래에 동적 IP 보안을 구성하여 Azure 웹 응용 프로그램을 DDoS 공격으로부터 보호 할 수 있습니다.

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

관련 문제