Windows Azure Platform Family of articles Catalog
This chapter will show you how to create application gateway for the public network, and we need to prepare for the following tasks:
1. Create a new Azure Resource Group named LEIAPPGWRG
2. Under this resource group, create a new arm virtual network, named Leiappgatewayvnet, and create a subnet.
Please note that under this virtual network, there must be an empty subnet, or a single subnet dedicated to application gateway.
We create 2 subnet under Leiappgatewayvnet:
-A named Web-subnet
-A named Appgateway-subnet, specifically for application gateway use
Next start the text:
1. Under LEIAPPGWRG, we create a new application Gateway, named Leiappgateway. Such as:
In
(1) Name is Application Gateway
(2) Tier is the service type of application gateway. I choose standard here
(3) SKU Size, there are three types, namely small, medium and large. I choose medium here.
(4) Instance count, set the number of instances, you can choose 2-10
(5) Resource Group, we chose the previously created Resource group
(6) Location, we choose the China East Data Center
2. Then, we set up virtual Network. Such as:
In
(1) Virtual Network, select the leiappgatewayvnet we created earlier
(2) Subnet subnet, select Appgateway-subnet
(3) IP Address Type, select public
(4) Public IP Address, we create a new network IP addresses
(5) Protocol, we choose HTTP
(6) Port, we choose 80
Please note that if we choose protocol to be HTTPS, you will need to upload the PFX certificate. Such as:
Finally, we click OK to create it.
3. We wait for the Appication gateway to be created, you need to increase the intranet IP address of the backend server.
When the client accesses application gateway, it can import the traffic to the back-end server through the intranet IP address.
This way, when the client accesses the application gateway, the traffic is sent to the backend intranet IP at 10.1.0.4, 10.1.0.5
The above 2 IPs belong to another subnet:web-subnet subnet
Azure Application Gateway (2) Application Gateway for public network