Skip to content

Commit 779e571

Browse files
authored
Merge pull request #57906 from vhorne/ag-create-portal
UI updates
2 parents fcf2589 + f5dd5bd commit 779e571

File tree

2 files changed

+34
-25
lines changed

2 files changed

+34
-25
lines changed

articles/application-gateway/application-gateway-create-gateway-portal.md

Lines changed: 34 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.author: victorh
1111

1212
# Create an application gateway using the Azure portal
1313

14-
You can use the Azure portal to create or manage application gateways. This quickstart shows you how to create network resources, backend servers, and an application gateway.
14+
You can use the Azure portal to create or manage application gateways. This article shows you how to create network resources, backend servers, and an application gateway.
1515

1616
If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
1717

@@ -23,35 +23,42 @@ Sign in to the Azure portal at [http://portal.azure.com](http://portal.azure.com
2323

2424
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.
2525

26-
1. Click **New** found on the upper left-hand corner of the Azure portal.
27-
2. Select **Networking** and then select **Application Gateway** in the Featured list.
28-
3. Enter these values for the application gateway:
26+
1. Click **Create a resource** found on the upper left-hand corner of the Azure portal.
27+
2. Click **Networking** and then click **Application Gateway** in the Featured list.
28+
29+
### Basics
30+
31+
1. Enter these values for the application gateway:
2932

3033
- *myAppGateway* - for the name of the application gateway.
3134
- *myResourceGroupAG* - for the new resource group.
3235

3336
![Create new application gateway](./media/application-gateway-create-gateway-portal/application-gateway-create.png)
3437

35-
4. Accept the default values for the other settings and then click **OK**.
36-
5. Click **Choose a virtual network**, click **Create new**, and then enter these values for the virtual network:
38+
2. Accept the default values for the other settings and then click **OK**.
39+
40+
### Settings
41+
42+
1. Click **Choose a virtual network**, click **Create new**, and then enter these values for the virtual network:
3743

3844
- *myVNet* - for the name of the virtual network.
3945
- *10.0.0.0/16* - for the virtual network address space.
4046
- *myAGSubnet* - for the subnet name.
41-
- *10.0.0.0/24* - for the subnet address space.
47+
- *10.0.0.0/24* - for the subnet address range.
4248

4349
![Create virtual network](./media/application-gateway-create-gateway-portal/application-gateway-vnet.png)
4450

45-
6. Click **OK** to create the virtual network and subnet.
46-
6. 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**.
47-
8. Accept the default values for the Listener configuration, leave the Web application firewall disabled, and then click **OK**.
48-
9. Review the settings on the summary page, and then click **OK** to create the virtual network, the public IP address, and the application gateway. It may take several minutes for the application gateway to be created, wait until
49-
the deployment finishes successfully before moving on to the next section.
51+
6. Click **OK** to go back to the Settings page.
52+
7. Under **Frontend IP configuration** ensure **IP address type** is set to **public**, and under **Public IP address**, ensure **Create new** is selected. Type *myAGPublicIPAddress* for the public IP address name. Accept the default values for the other settings and then click **OK**.
5053

51-
### Add a subnet
54+
### Summary
55+
56+
Review the settings on the summary page, and then click **OK** to create the virtual network, the public IP address, 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.
57+
58+
## Add a subnet
5259

5360
1. Click **All resources** in the left-hand menu, and then click **myVNet** from the resources list.
54-
2. Click **Subnets**, and then click **Subnet**.
61+
2. Click **Subnets**, and then click **+ Subnet**.
5562

5663
![Create subnet](./media/application-gateway-create-gateway-portal/application-gateway-subnet.png)
5764

@@ -63,20 +70,22 @@ In this example, you create two virtual machines that are used as backend server
6370

6471
### Create a virtual machine
6572

66-
1. Click **New**.
73+
1. On the Azure portal, click **Create a resource**.
6774
2. Click **Compute** and then select **Windows Server 2016 Datacenter** in the Featured list.
6875
3. Enter these values for the virtual machine:
6976

77+
- *myResourceGroupAG* for the resource group.
7078
- *myVM* - for the name of the virtual machine.
7179
- *azureuser* - for the administrator user name.
7280
- *Azure123456!* for the password.
73-
- Select **Use existing**, and then select *myResourceGroupAG*.
7481

75-
4. Click **OK**.
76-
5. Select **DS1_V2** for the size of the virtual machine, and click **Select**.
77-
6. Make sure that **myVNet** is selected for the virtual network and the subnet is **myBackendSubnet**.
78-
7. Click **Disabled** to disable boot diagnostics.
79-
8. Click **OK**, review the settings on the summary page, and then click **Create**.
82+
Accept the other defaults and click **Next: Disks**.
83+
4. Accept the disk defaults and click **Next: Networking**.
84+
5. Make sure that **myVNet** is selected for the virtual network and the subnet is **myBackendSubnet**.
85+
6. Accept the other defaults and click **Next: Management**.
86+
7. Click **Off** to disable boot diagnostics. Accept the other defaults and click **Review + create**.
87+
8. Review the settings on the summary page, and then click **Create**.
88+
9. Wait for the virtual machine creation to complete before continuing.
8089

8190
### Install IIS
8291

@@ -102,9 +111,10 @@ In this example, you create two virtual machines that are used as backend server
102111
103112
### Add backend servers
104113
105-
3. Click **All resources**, and then click **myAppGateway**.
114+
1. Click **All resources**, and then click **myAppGateway**.
106115
4. Click **Backend pools**. A default pool was automatically created with the application gateway. Click **appGatewayBackendPool**.
107-
5. Click **Add target** to add each virtual machine that you created to the backend pool.
116+
5. Under **Targets**, click **IP address or FQDN** select **Virtual machine**.
117+
6. Under **Virtual Machine**, add myVM and myVM2 virtual machines and their associated network interfaces.
108118
109119
![Add backend servers](./media/application-gateway-create-gateway-portal/application-gateway-backend.png)
110120
@@ -120,11 +130,10 @@ In this example, you create two virtual machines that are used as backend server
120130
121131
![Test application gateway](./media/application-gateway-create-gateway-portal/application-gateway-iistest.png)
122132
123-
124133
## Clean up resources
125134
126135
When no longer needed, delete the resource group, application gateway, and all related resources. To do so, select the resource group that contains the application gateway and click **Delete**.
127136
128137
## Next steps
129138
130-
In this quickstart, you created a resource group, network resources, and backend servers. You then used those resources to create an application gateway. To learn more about application gateways and their associated resources, continue to the how-to articles.
139+
In this article, you created a resource group, network resources, and backend servers. You then used those resources to create an application gateway. To learn more about application gateways and their associated resources, see [What is Azure Application Gateway?](overview.md)
351 Bytes
Loading

0 commit comments

Comments
 (0)