Quantcast
Channel: Azure Management Portal forum
Viewing all articles
Browse latest Browse all 4189

Check connection between NAT rules and VM Nics in Azure Portal

$
0
0
Introduction:
With Azure CLI, I have created Resource Group, Load Balancer, Load Balancer rules, Load Balancer NAT rules, Backend Pool, Probe, Network Security Group, Network Security Group rules and Network Interfaces (Virtual Machines not yet).

Load balancer has a backend pool with two VMs, and also I created two Nat rules for port 22 of that VMs.

For more detaill, I created the Network Interfaces of VMs with the following commands:

az network nic create \
    --resource-group OpenDataResourceGroup \
    --name myNic1 \
    --vnet-name myVnet \
    --subnet mySubnet \
    --network-security-group myNetworkSecurityGroup \
    --lb-name MyLoadBalancer \
    --lb-address-pools myBackEndPool \
    --lb-inbound-nat-rules myLoadBalancerRuleSSH1

az network nic create \
    --resource-group OpenDataResourceGroup \
    --name myNic2 \
    --vnet-name myVnet \
    --subnet mySubnet \
    --network-security-group myNetworkSecurityGroup \
    --lb-name myLoadBalancer \
    --lb-address-pools myBackEndPool \
    --lb-inbound-nat-rules myLoadBalancerRuleSSH2

Problem:

I can check in Azure Portal is all right, except I cannot see the link between Nat rules and Nics. In creation commands, it is defined by the last param (see commands above with --lb-inbound-nat-rules)

Question:

Where can I check in Azure Portal that the connection between Nic and Nat rule was correctly created?

Viewing all articles
Browse latest Browse all 4189

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>