Skip to content

Commit d257ce7

Browse files
committed
updates
1 parent f006980 commit d257ce7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

includes/load-balancer-multi-ip-cli.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,16 +55,16 @@ To achieve the scenario outlined in this article complete the following steps:
5555
az network lb frontend-ip create --resource-group contosofabrikam --lb-name mylb --public-ip-name PublicIp2 --name fabrikamfe
5656
```
5757
58-
8. Create your backend address pools - *contosopool* and *fabrikampool*, a [probe](/azure/virtual-machines/linux/create-cli-complete?toc=%2fazure%2fvirtual-network%2ftoc.json) - *HTTP*, and your load balancing rules - *HTTPc* and *HTTPf*:
58+
8. Create your backend address pools - *contosopool* and *fabrikampool*, a [probe](/azure/virtual-machines/linux/create-cli-complete?toc=%2fazure%2fvirtual-network%2ftoc.json) - *HTTP*, and your load balancing rules - *HTTPruleContoso* and *HTTPruleFabrikam*:
5959
6060
```azurecli
6161
az network lb address-pool create --resource-group contosofabrikam --lb-name mylb --name contosopool
6262
azure network lb address-pool create --resource-group contosofabrikam --lb-name mylb --name fabrikampool
6363
6464
az network lb probe create --resource-group contosofabrikam --lb-name mylb --name HTTP --protocol "http" --interval 15 --count 2 --path index.html
6565
66-
az network lb rule create --resource-group contosofabrikam --lb-name mylb --name HTTPc --protocol tcp --probe-name http--frontend-port 5000 --backend-port 5000 --frontend-ip-name contosofe --backend-address-pool-name contosopool
67-
az network lb rule create --resource-group contosofabrikam --lb-name mylb --name HTTPf --protocol tcp --probe-name http --frontend-port 5000 --backend-port 5000 --frontend-ip-name fabrikamfe --backend-address-pool-name fabrikampool
66+
az network lb rule create --resource-group contosofabrikam --lb-name mylb --name HTTPruleContoso --protocol tcp --probe-name http--frontend-port 5000 --backend-port 5000 --frontend-ip-name contosofe --backend-address-pool-name contosopool
67+
az network lb rule create --resource-group contosofabrikam --lb-name mylb --name HTTPruleFabrikam --protocol tcp --probe-name http --frontend-port 5000 --backend-port 5000 --frontend-ip-name fabrikamfe --backend-address-pool-name fabrikampool
6868
```
6969
7070
9. Check the output to [verify your load balancer](/azure/virtual-machines/linux/create-cli-complete?toc=%2fazure%2fvirtual-network%2ftoc.json) was created correctly by running the following command:

0 commit comments

Comments
 (0)