exam questions

Exam AZ-103 All Questions

View all questions & answers for the AZ-103 exam

Exam AZ-103 topic 16 question 16 discussion

Actual exam question from Microsoft's AZ-103
Question #: 16
Topic #: 16
[All AZ-103 Questions]

HOTSPOT -
You are creating an Azure load balancer.
You need to add an IPv6 load balancing rule to the load balancer.
How should you complete the Azure PowerShell script? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
Hot Area:

Show Suggested Answer Hide Answer
Suggested Answer: Explanation
References:
https://docs.microsoft.com/en-us/azure/load-balancer/load-balancer-ipv6-internet-ps

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
redboris
Highly Voted 5 years, 2 months ago
The first part looks like a New-AzLoadBalancerRuleConfig The second part is actually a New-AzLoadBalancer which uses the above So the correct answers are: 1. New-AzLoadBalancerRuleConfig 2. LoadBalancingRule Explained in the following example: $lbrule1v6 = New-AzLoadBalancerRuleConfig -Name "HTTPv6" -FrontendIpConfiguration $FEIPConfigv6 -BackendAddressPool $backendpoolipv6 -Probe $healthProbe -Protocol Tcp -FrontendPort 80 -BackendPort 8080 $inboundNATRule1v6 = New-AzLoadBalancerInboundNatRuleConfig -Name "NicNatRulev6" -FrontendIpConfiguration $FEIPConfigv6 -Protocol TCP -FrontendPort 443 -BackendPort 4443 $NRPLB = New-AzLoadBalancer -ResourceGroupName NRP-RG -Name 'myNrpIPv6LB' -Location 'West US' -FrontendIpConfiguration $FEIPConfigv4,$FEIPConfigv6 -InboundNatRule $inboundNATRule1v6,$inboundNATRule1v4 -BackendAddressPool $backendpoolipv4,$backendpoolipv6 -Probe $healthProbe,$RDPprobe -LoadBalancingRule $lbrule1v4,$lbrule1v6,$RDPrule Source: https://docs.microsoft.com/en-us/azure/load-balancer/load-balancer-ipv6-internet-ps#create-lb-rules-nat-rules-a-probe-and-a-load-balancer
upvoted 18 times
...
aws
Highly Voted 5 years, 7 months ago
New-AzLoadBalancerInboundNatRuleConfig inboundnatrule
upvoted 17 times
...
Eggsamine
Most Recent 4 years, 9 months ago
Repeat of Topic 4, question 1: https://www.examtopics.com/exams/microsoft/az-103/view/18/
upvoted 3 times
...
GParreiras
4 years, 9 months ago
1. New-AzLoadBalancerInboundNatRuleConfig 2. New-AzLoadBalancerRuleConfig
upvoted 2 times
GParreiras
4 years, 9 months ago
sorry... Box 1: New-AzureRMLoadBalancerRuleConfig Box 2: -LoadBalancingRule
upvoted 2 times
...
...
YPR
4 years, 10 months ago
The correct answer is : 1. New-AzureLoadBalancerRuleConfig 2.LoadBalancingRule
upvoted 1 times
YPR
4 years, 10 months ago
Slight correction : Box 1: New-AzureRMLoadBalancerRuleConfig Bo2: -LoadBalancingRule
upvoted 2 times
praveen97
4 years, 9 months ago
Agree with YPR
upvoted 1 times
...
...
...
salm990
4 years, 10 months ago
not showing multiple choices for me
upvoted 1 times
YPR
4 years, 10 months ago
somehow the multiple choices are missing. The same question exist multiple times in the dumps, you can check there (4 times repeated). In two places the multiple choices are missing and in two places the multiple choices are visible.
upvoted 1 times
...
...
varsri
4 years, 10 months ago
Ans 1.New-AzLoadBalancerRuleConfig $lbrule1v6 = New-AzLoadBalancerRuleConfig -Name "HTTPv6" -FrontendIpConfiguration $FEIPConfigv6 -BackendAddressPool $backendpoolipv6 -Probe $healthProbe -Protocol Tcp -FrontendPort 80 -BackendPort 8080 2. InboundNatRule $NRPLB = New-AzLoadBalancer -ResourceGroupName NRP-RG -Name 'myNrpIPv6LB' -Location 'West US' -FrontendIpConfiguration $FEIPConfigv4,$FEIPConfigv6 -InboundNatRule https://docs.microsoft.com/en-us/azure/load-balancer/load-balancer-ipv6-internet-ps
upvoted 2 times
...
jonnybugaloo
4 years, 10 months ago
The image: https://www.examtopics.com/assets/media/exam-media/02519/0014300001.jpg Answer: Box 1 - New-AzureRMLoadBalancerInboundNatRuleConfig Box 2 - InboundNatRule
upvoted 2 times
macco455
4 years, 10 months ago
Disagree. I believe the answer should be: New-AzureLoadBalancerRuleConfig -LoadBalancingRule If the question is asked, it will have the newer commands on it minus the RM. FYI
upvoted 2 times
...
...
Cloudyuga
4 years, 11 months ago
correct answers are 1. New-AzLoadBalancerRuleConfig & 2. LoadBalancingRule
upvoted 3 times
...
julianosorio
5 years, 2 months ago
https://www.examtopics.com/assets/media/exam-media/02519/0014300001.jpg
upvoted 2 times
...
DM
5 years, 3 months ago
https://www.examtopics.com/exams/microsoft/az-101/view/16/
upvoted 10 times
...
karthirk2k7
5 years, 3 months ago
Create the NAT rules New-AzLoadBalancerInboundNatRuleConfig Create a load balancer rule New-AzLoadBalancerRuleConfig
upvoted 3 times
Hanuman
4 years, 10 months ago
correct as mentioned to create a rule & not to create load balancer. 1. New-AzLoadBalancerInboundNatRuleConfig 2. New-AzLoadBalancerRuleConfig https://docs.microsoft.com/en-us/azure/load-balancer/load-balancer-ipv6-internet-ps
upvoted 3 times
jjkidd72
4 years, 7 months ago
Correct! What he said ^
upvoted 1 times
...
...
...
karthirk2k7
5 years, 3 months ago
New-AzLoadBalancerRuleConfig
upvoted 6 times
AJ_V1
5 years, 2 months ago
https://www.examtopics.com/exams/microsoft/az-101/view/16/ shows use of backendport (not fully visible) so New-AzLoadBalancerInboundNatRuleConfig is correct.
upvoted 1 times
...
...
CHeck
5 years, 5 months ago
thanks
upvoted 1 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...
exam
Someone Bought Contributor Access for:
SY0-701
London, 1 minute ago