title | description | services | author | manager | editor | tags | ms.service | ms.topic | ms.workload | ms.date | ms.author |
---|---|---|---|---|---|---|---|---|---|---|---|
Create an application gateway with a web application firewall - Azure portal | Microsoft Docs |
Learn how to create an application gateway with a web application firewall by using the Azure portal. |
application-gateway |
vhorne |
jpconnock |
tysonn |
azure-resource-manager |
application-gateway |
article |
infrastructure-services |
01/26/2018 |
victorh |
You can use the Azure portal to create an application gateway with a web application firewall (WAF). The WAF uses OWASP rules to protect your application. These rules include protection against attacks such as SQL injection, cross-site scripting attacks, and session hijacks.
In this article, you learn how to:
[!div class="checklist"]
- Create an application gateway with WAF enabled
- Create the virtual machines used as backend servers
- Create a storage account and configure diagnostics
Log in to the Azure portal at https://portal.azure.com
A virtual network is needed for communication between the resources that you create. Two subnets are created in this example: one for the application gateway, and the other for the backend servers. You can create a virtual network at the same time that you create the application gateway.
-
Click New found on the upper left-hand corner of the Azure portal.
-
Select Networking and then select Application Gateway in the Featured list.
-
Enter these values for the application gateway:
- myAppGateway - for the name of the application gateway.
- myResourceGroupAG - for the new resource group.
- Select WAF for the tier of the application gateway.
-
Accept the default values for the other settings and then click OK.
-
Click Choose a virtual network, click Create new, and then enter these values for the virtual network:
- myVNet - for the name of the virtual network.
- 10.0.0.0/16 - for the virtual network address space.
- myAGSubnet - for the subnet name.
- 10.0.0.0/24 - for the subnet address space.
-
Click OK to create the virtual network and subnet.
-
Click Choose a public IP address, click Create new, and then enter the name of the public IP address. In this example, the public IP address is named myAGPublicIPAddress. Accept the default values for the other settings and then click OK.
-
Accept the default values for the Listener configuration, leave the Web application firewall disabled, and then click OK.
-
Review the settings on the summary page, and then click OK to create network resources and the application gateway. It may take several minutes for the application gateway to be created, wait until the deployment finishes successfully before moving on to the next section.
-
Click All resources in the left-hand menu, and then click myVNet from the resources list.
-
Click Subnets, and then click Subnet.
-
Enter myBackendSubnet for the name of the subnet and then click OK.
In this example, you create two virtual machines to be used as backend servers for the application gateway. You also install IIS on the virtual machines to verify that the application gateway was successfully created.
-
Click New.
-
Click Compute and then select Windows Server 2016 Datacenter in the Featured list.
-
Enter these values for the virtual machine:
- myVM - for the name of the virtual machine.
- azureuser - for the administrator user name.
- Azure123456! for the password.
- Select Use existing, and then select myResourceGroupAG.
-
Click OK.
-
Select DS1_V2 for the size of the virtual machine, and click Select.
-
Make sure that myVNet is selected for the virtual network and the subnet is myBackendSubnet.
-
Click Disabled to disable boot diagnostics.
-
Click OK, review the settings on the summary page, and then click Create.
-
Open the interactive shell and make sure that it is set to PowerShell.
-
Run the following command to install IIS on the virtual machine:
Set-AzureRmVMExtension ` -ResourceGroupName myResourceGroupAG ` -ExtensionName IIS ` -VMName myVM ` -Publisher Microsoft.Compute ` -ExtensionType CustomScriptExtension ` -TypeHandlerVersion 1.4 ` -SettingString '{"commandToExecute":"powershell Add-WindowsFeature Web-Server; powershell Add-Content -Path \"C:\\inetpub\\wwwroot\\Default.htm\" -Value $($env:computername)"}' ` -Location EastUS
-
Create a second virtual machine and install IIS using the steps that you just finished. Enter myVM2 for its name and for VMName in Set-AzureRmVMExtension.
-
Click All resources, and then click myAppGateway.
-
Click Backend pools. A default pool was automatically created with the application gateway. Click appGateayBackendPool.
-
Click Add target to add each virtual machine that you created to the backend pool.
-
Click Save.
In this tutorial, the application gateway uses a storage account to store data for detection and prevention purposes. You could also use Log Analytics or Event Hub to record data.
- Click New found on the upper left-hand corner of the Azure portal.
- Select Storage, and then select Storage account - blob, file, table, queue.
- Enter the name of the storage account, select Use existing for the resource group, and then select myResourceGroupAG. In this example, the storage account name is myagstore1. Accept the default values for the other settings and then click Create.
Configure diagnostics to record data into the ApplicationGatewayAccessLog, ApplicationGatewayPerformanceLog, and ApplicationGatewayFirewallLog logs.
-
In the left-hand menu, click All resources, and then select myAppGateway.
-
Under Monitoring, click Diagnostics logs.
-
Click Add diagnostics setting.
-
Enter myDiagnosticsSettings as the name for the diagnostics settings.
-
Select Archive to a storage account, and then click Configure to select the myagstore1 storage account that you previously created.
-
Select the application gateway logs to collect and retain.
-
Click Save.
-
Find the public IP address for the application gateway on the Overview screen. Click All resources and then click myAGPublicIPAddress.
-
Copy the public IP address, and then paste it into the address bar of your browser.
In this article, you learned how to:
[!div class="checklist"]
- Create an application gateway with WAF enabled
- Create the virtual machines used as backend servers
- Create a storage account and configure diagnostics
To learn more about application gateways and their associated resources, continue to the how-to articles.