Skip to content

Commit b3cbb0d

Browse files
authored
Fix the NIC Names Command
The AZ CLI command to fetch the NIC names from the Backend Address Pool is incorrect. the current command generates 'Nones'. The command has been corrected now.
1 parent b156138 commit b3cbb0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/virtual-machines/linux/tutorial-load-balancer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ az network lb address-pool show \
284284
--lb-name myLoadBalancer \
285285
--name myBackEndPool \
286286
--query backendIpConfigurations \
287-
--output tsv | cut -f4
287+
--output tsv | cut -f5
288288
```
289289

290290
The output is similar to the following example, which shows that the virtual NIC for VM 2 is no longer part of the backend address pool:

0 commit comments

Comments
 (0)