Skip to content

Commit f967d55

Browse files
authored
Merge pull request #188179 from ShichaoQiu/patch-3
refine vnet configuration
2 parents 239185a + 753cd9c commit f967d55

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

articles/spring-cloud/how-to-deploy-in-azure-virtual-network.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,9 @@ If you already have a virtual network to host an Azure Spring Cloud instance, sk
7575

7676
1. For the IPv4 address space, enter **10.1.0.0/16**.
7777

78-
1. Select **Add subnet**. Then enter **service-runtime-subnet** for **Subnet name** and enter **10.1.0.0/28** for **Subnet address range**. Then select **Add**.
78+
1. Select **Add subnet**. Then enter **service-runtime-subnet** for **Subnet name** and enter **10.1.0.0/24** for **Subnet address range**. Then select **Add**.
7979

80-
1. Select **Add subnet** again, and then enter **Subnet name** and **Subnet address range**. For example, enter **apps-subnet** and **10.1.1.0/28**. Then select **Add**.
80+
1. Select **Add subnet** again, and then enter **Subnet name** and **Subnet address range**. For example, enter **apps-subnet** and **10.1.1.0/24**. Then select **Add**.
8181

8282
1. Select **Review + create**. Leave the rest as defaults, and select **Create**.
8383

@@ -121,11 +121,11 @@ If you already have a virtual network to host an Azure Spring Cloud instance, sk
121121
```azurecli
122122
az network vnet subnet create --resource-group $RESOURCE_GROUP \
123123
--vnet-name $VIRTUAL_NETWORK_NAME \
124-
--address-prefixes 10.1.0.0/28 \
124+
--address-prefixes 10.1.0.0/24 \
125125
--name service-runtime-subnet
126126
az network vnet subnet create --resource-group $RESOURCE_GROUP \
127127
--vnet-name $VIRTUAL_NETWORK_NAME \
128-
--address-prefixes 10.1.1.0/28 \
128+
--address-prefixes 10.1.1.0/24 \
129129
--name apps-subnet
130130
```
131131

-162 KB
Loading
-111 KB
Loading

0 commit comments

Comments
 (0)