exam questions

Exam AZ-103 All Questions

View all questions & answers for the AZ-103 exam

Exam AZ-103 topic 4 question 1 discussion

Actual exam question from Microsoft's AZ-103
Question #: 1
Topic #: 4
[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:
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
Vallivel
Highly Voted 5 years ago
box 1: New-AzureRMLoadBalancerRuleConfig box2: -LoadBalancingRule
upvoted 29 times
Cloudyuga
4 years, 11 months ago
Yes. This is a correct answer even i feel
upvoted 2 times
...
praveen97
4 years, 9 months ago
Yes, this is the correct answer.
upvoted 1 times
...
dhriti72
4 years, 9 months ago
Even the link that has been provided says this is the answer, LOL I think the answer-er got it mixed up with NAT rules
upvoted 2 times
...
...
snoocer
Highly Voted 5 years, 1 month ago
wrong, it is "New-AzureRMLoadBalancerRuleConfig" (new Command "New-AzLoadBalancerRuleConfig") and "-LoadBalancingRule" --> example: New-AzLoadBalancer ` -ResourceGroupName $rgName ` -Name 'MyLoadBalancer' ` -SKU Standard ` -Location $location ` -FrontendIpConfiguration $feip ` -BackendAddressPool $bepool ` -Probe $probe ` -LoadBalancingRule $rule ` -InboundNatRule $natrule1,$natrule2,$natrule3 see: https://docs.microsoft.com/en-us/azure/load-balancer/quickstart-create-standard-load-balancer-powershell
upvoted 28 times
certificatores
5 years ago
this make sense but the link does not provide info about whether ipv4 and ipv6 load balancers and rules are created the same way or not
upvoted 4 times
...
fransbj
5 years, 1 month ago
I agree, They are asking for the Loadbalancing rule, not for the Inbound NAT rule. Load balancing rules - contains rules mapping a public port on the load balancer to port in the back-end address pool. Inbound NAT rules - contains rules mapping a public port on the load balancer to a port for a specific virtual machine in the back-end address pool. https://docs.microsoft.com/en-us/azure/load-balancer/load-balancer-ipv6-internet-ps
upvoted 4 times
...
...
tashakori
Most Recent 1 year, 1 month ago
- New-AzureRMLoadBalancerRuleConfig - InboundNatRule
upvoted 1 times
...
uellington
3 years, 12 months ago
Wrong answer in BOX1 $lbrule = New-AzureRmLoadBalancerRuleConfig $probe -InboundNatRule https://docs.microsoft.com/en-us/powershell/module/azurerm.network/new-azurermloadbalancer?view=azurermps-6.13.0 PS C:\> $lbrule = New-AzureRmLoadBalancerRuleConfig -Name "MyLBruleName" -FrontendIPConfiguration $frontend -BackendAddressPool $backendAddressPool -Probe $probe -Protocol "Tcp" -FrontendPort 80 -BackendPort 80 -IdleTimeoutInMinutes 15 -EnableFloatingIP -LoadDistribution SourceIP PS C:\> $lb = New-AzureRmLoadBalancer -Name "MyLoadBalancer" -ResourceGroupName "MyResourceGroup" -Location "West US" -FrontendIpConfiguration $frontend -BackendAddressPool $backendAddressPool -Probe $probe -InboundNatRule $inboundNatRule1,$inboundNatRule2 -LoadBalancingRule $lbrule
upvoted 1 times
...
solarwinds123
4 years, 4 months ago
https://docs.microsoft.com/en-us/azure/virtual-network/virtual-network-ipv4-ipv6-dual-stack-standard-load-balancer-powershell $lbrule_v6 = New-AzLoadBalancerRuleConfig ` -Name "dsLBrule_v6" ` -FrontendIpConfiguration $frontendIPv6 ` -BackendAddressPool $backendPoolv6 ` -Protocol Tcp ` -FrontendPort 80 ` -BackendPort 80 ` -probe $probe $lb = New-AzLoadBalancer ` -ResourceGroupName $rg.ResourceGroupName ` -Location $rg.Location ` -Name "MyLoadBalancer" ` -Sku "Standard" ` -FrontendIpConfiguration $frontendIPv4,$frontendIPv6 ` -BackendAddressPool $backendPoolv4,$backendPoolv6 ` -LoadBalancingRule $lbrule_v4,$lbrule_v6 ` -Probe $probe The answer is incorrect, as seen above
upvoted 1 times
...
Thi
4 years, 5 months ago
box 1: New-AzureRMLoadBalancerRuleConfig box2: -LoadBalancingRule
upvoted 2 times
...
yicim24216
4 years, 7 months ago
It can't be New-AzLoadBalancerInboundNatRuleConfig. That command does not have a probe parameter.
upvoted 3 times
...
Lains2019
4 years, 8 months ago
After reading below, https://docs.microsoft.com/en-us/azure/load-balancer/load-balancer-ipv6-internet-ps I believe the answers should be: - New-AzLoadBalancerRuleConfig - -LoadBalancingRule
upvoted 2 times
...
hassaanch
4 years, 10 months ago
the given answer is correct
upvoted 6 times
...
hyperguys
4 years, 10 months ago
the answer given is correct https://docs.microsoft.com/en-us/azure/load-balancer/load-balancer-ipv6-overview
upvoted 2 times
[Removed]
4 years, 9 months ago
I think that you are right. IPV6 using NAT → The load balancer routes the IPv6 packets to the private IPv6 addresses of the VMs using network address translation (NAT). The IPv6 Internet client cannot communicate directly with the IPv6 address of the VMs.
upvoted 3 times
...
...
YPR
4 years, 10 months ago
Correct Answer is : box 1: New-AzureRMLoadBalancerRuleConfig box2: -LoadBalancingRule
upvoted 4 times
...
Kallandor
4 years, 10 months ago
The answer given is WRONG. In the link provided (https://docs.microsoft.com/en-us/azure/load-balancer/load-balancer-ipv6-internet-ps) in the answer is possible to compare the scripts for create the NAT RULES: $inboundNATRule1v6 = New-AzLoadBalancerInboundNatRuleConfig -Name "NicNatRulev6" -FrontendIpConfiguration $FEIPConfigv6 -Protocol TCP -FrontendPort 443 -BackendPort 4443 And also the script to create the LOAD BALANCER RULE: $lbrule1v6 = New-AzLoadBalancerRuleConfig -Name "HTTPv6" -FrontendIpConfiguration $FEIPConfigv6 -BackendAddressPool $backendpoolipv6 -Probe $healthProbe -Protocol Tcp -FrontendPort 80 -BackendPort 8080
upvoted 1 times
...
nfett
4 years, 11 months ago
answer per prasanta is right. New-AzLoadBalancerRuleConfig and -LoadBalancingRule https://docs.microsoft.com/en-us/powershell/module/azurerm.network/new-azurermloadbalancerruleconfig?view=azurermps-6.13.0
upvoted 1 times
...
ExamGuy01
4 years, 11 months ago
$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 https://docs.microsoft.com/en-us/azure/load-balancer/load-balancer-ipv6-internet-ps
upvoted 2 times
...
[Removed]
4 years, 11 months ago
Correct answer is : New-AzLoadBalancerRuleConfig and -LoadBalancingRule
upvoted 4 times
...
divtandel
4 years, 11 months ago
As per creating load balancer for IPv6 the MS documents says use this command $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 Hence here NatRule is required. $inboundNATRule1v6 = New-AzLoadBalancerInboundNatRuleConfig -Name "NicNatRulev6" -FrontendIpConfiguration $FEIPConfigv6 -Protocol TCP -FrontendPort 443 -BackendPort 4443
upvoted 1 times
...
pandeya442
5 years ago
$lbrule1v6 = New-AzLoadBalancerRuleConfig -Name "HTTPv6" -FrontendIpConfiguration $FEIPConfigv6 -BackendAddressPool $backendpoolipv6 -Probe $healthProbe -Protocol Tcp -FrontendPort 80 -BackendPort 8080
upvoted 2 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