ExamGecko
Question list
Search
Search

List of questions

Search

Related questions











Question 325 - AZ-104 discussion

Report
Export

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.


Question 325
Correct answer: Question 325

Explanation:

Powershell command to create a load balancer rule (AzureRm module new version is AZ as given in below command):

$lbrule1v6 = New-AzLoadBalancerRuleConfig

-Name "HTTPv6"

-FrontendIpConfiguration $FEIPConfigv6

-BackendAddressPool $backendpoolipv6

-Probe $healthProbe

-Protocol Tcp

-FrontendPort 80

-BackendPort 8080

Powershell command to create the load balancer using the previously created objects :

New-AzLoadBalancer

-ResourceGroupName NRP-RG

-Name 'myNrpIPv6LB'

-Location 'West US'

-FrontendIpConfiguration $FEIPConfigv6

-InboundNatRule $inboundNATRule1v6

-BackendAddressPool $backendpoolipv6

-Probe $healthProbe

-LoadBalancingRule $lbrule1v6

Reference:

https://docs.microsoft.com/en-us/azure/load-balancer/load-balancer-ipv6-internet-ps

asked 26/09/2024
Jelle Kamp
41 questions
User
0 comments
Sorted by

Leave a comment first