az network cross-region-lb address-pool address

Manage backend addresses of the cross-region load balance backend address pool.

Commands

az network cross-region-lb address-pool address add

Add one backend address into the load balance backend address pool.

az network cross-region-lb address-pool address list

List all backend addresses of the load balance backend address pool.

az network cross-region-lb address-pool address remove

Remove one backend address from the load balance backend address pool.

az network cross-region-lb address-pool address add

Add one backend address into the load balance backend address pool.

az network cross-region-lb address-pool address add --frontend-ip-address
                                                    --lb-name
                                                    --name
                                                    --pool-name
                                                    --resource-group

Examples

Add one backend address into the load balance backend address pool.

az network cross-region-lb address-pool address add -g MyResourceGroup --lb-name MyLb --pool-name MyAddressPool -n MyAddress --frontend-ip-address /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_lb_address_pool_addresses000001/providers/Microsoft.Network/loadBalancers/regional-lb/frontendIPConfigurations/fe-rlb2

Required Parameters

--frontend-ip-address

Resource id of the frontend ip configuration defined in regional loadbalancer.

--lb-name

The load balancer name.

--name -n

Name of the backend address.

--pool-name

The name of the backend address pool. If only one exists, omit to use as default.

--resource-group -g

Name of resource group. You can configure the default group using az configure --defaults group=<name>.

az network cross-region-lb address-pool address list

List all backend addresses of the load balance backend address pool.

az network cross-region-lb address-pool address list --lb-name
                                                     --pool-name
                                                     --resource-group

Examples

List all backend addresses of the load balance backend address pool.

az network cross-region-lb address-pool address list -g MyResourceGroup --lb-name MyLb --pool-name MyAddressPool

Required Parameters

--lb-name

The load balancer name.

--pool-name

The name of the backend address pool. If only one exists, omit to use as default.

--resource-group -g

Name of resource group. You can configure the default group using az configure --defaults group=<name>.

az network cross-region-lb address-pool address remove

Remove one backend address from the load balance backend address pool.

az network cross-region-lb address-pool address remove --lb-name
                                                       --name
                                                       --pool-name
                                                       --resource-group

Examples

Remove one backend address from the load balance backend address pool.

az network cross-region-lb address-pool address remove -g MyResourceGroup --lb-name MyLb --pool-name MyAddressPool -n MyAddress

Required Parameters

--lb-name

The load balancer name.

--name -n

Name of the backend address.

--pool-name

The name of the backend address pool. If only one exists, omit to use as default.

--resource-group -g

Name of resource group. You can configure the default group using az configure --defaults group=<name>.