exam questions

Exam AZ-101 All Questions

View all questions & answers for the AZ-101 exam

Exam AZ-101 topic 3 question 29 discussion

Actual exam question from Microsoft's AZ-101
Question #: 29
Topic #: 3
[All AZ-101 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.
Each correct selection is worth one point.
NOTE:
Hot Area:

Show Suggested Answer Hide Answer
Suggested Answer:
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, 3 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 7 times
sapien45
5 years, 2 months ago
i agree
upvoted 2 times
...
praveen97
4 years, 11 months ago
Agree with redboris.
upvoted 1 times
praveen97
4 years, 11 months ago
Slight correction - Answers are : Box 1: New-AzureRMLoadBalancerRuleConfig Bo2: -LoadBalancingRule
upvoted 1 times
...
...
...
InsaneCreep
Most Recent 5 years, 3 months ago
incorrect because New-AzLoadBalancerInboundNatRuleConfig does not have parameters BackEndAddressPool and Probe It should be new-azloadbalander and LoadbalanderRule
upvoted 3 times
InsaneCreep
5 years, 3 months ago
It should be New-AzLoadBalancerRuleConfig and LoadBalancingRule
upvoted 4 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 ...