Skip to content

Commit edda7f4

Browse files
author
Michael Bender
committed
Updates
1 parent 0ea0a89 commit edda7f4

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

articles/load-balancer/configure-inbound-NAT-rules-vm-scale-set.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.custom: template-how-to
1313

1414
In this article you'll learn how to configure, update, and delete inbound NAT Rules for Virtual Machine Scale Set instances. Azure offers two options for Inbound NAT rules. The first option is the ability to add a single inbound NAT rule to a single backend resource. The second option is the ability to create a group of inbound NAT rules for a backend pool. Additional information on the various options is provided [here](inbound-nat-rules.md). It's recommended to use the second option for inbound NAT rules when using Virtual Machine Scale Sets, since this option provides better flexibility and scalability.
1515

16-
[Add your introductory paragraph]
16+
1717

1818
<!-- 3. Prerequisites
1919
Optional. If you need prerequisites, make them your first H2 in a how-to guide.
@@ -33,7 +33,7 @@ Individual inbound NAT rules can't be added to a Virtual Machine Scale Set. Howe
3333

3434
To add a whole set of inbound NAT rules for the Virtual Machine Scale Sets, first create an inbound NAT rule in the load balancer that targets a backend pool.
3535

36-
The new inbound NAT rule shouldn't have an overlapping front-end port range with existing inbound NAT rules. To view existing inbound NAT rules that are set up, use this [CLI command](/cli/azure/network/lb/inbound-nat-rule?view=azure-cli-latest):
36+
The new inbound NAT rule shouldn't have an overlapping front-end port range with existing inbound NAT rules. To view existing inbound NAT rules that are set up, use this [CLI command](/cli/azure/network/lb/inbound-nat-rule):
3737

3838
```azurecli
3939
@@ -53,13 +53,16 @@ The new inbound NAT rule shouldn't have an overlapping front-end port range with
5353
## Update inbound NAT rules
5454
When using inbound NAT rules with Virtual Machine Scale Sets, Individual inbound NAT rules can't be updated. However, you can update a set of inbound NAT rules that target a backend pool.
5555

56+
```azurecli
57+
5658
az network lb inbound-nat-rule update
5759
-g MyResourceGroup
5860
--lb-name MyLb
5961
-n MyNatPool
6062
--frontend-port-range-start 150
6163
--frontend-port-range-end 250
6264
65+
```
6366
## Delete inbound NAT rules
6467

6568
When using inbound NAT rules with Virtual Machine Scale Sets, Individual inbound NAT rules can't be deleted. However, you can delete the entire set of inbound NAT rules by deleting the inbound NAT rule that targets a specific backend pool.

0 commit comments

Comments
 (0)