mediummultiple choiceObjective-mapped

A security team requires all outbound internet traffic from a workload subnet to pass through an NVA at 10.1.4.4. The subnet is already associated with an NSG that allows the traffic. Which UDR should the administrator add to the route table for that subnet?

Question 1mediummultiple choice
Full question →

A security team requires all outbound internet traffic from a workload subnet to pass through an NVA at 10.1.4.4. The subnet is already associated with an NSG that allows the traffic. Which UDR should the administrator add to the route table for that subnet?

Answer choices

Why each option matters

Good practice is not just finding the correct option. The wrong answers often show the exact trap the exam wants you to fall into.

A

Distractor review

Destination 10.1.4.4/32 with next hop type Internet.

This route does not send default outbound traffic through the appliance. It points to the wrong next hop type.

B

Best answer

Destination 0.0.0.0/0 with next hop type Virtual appliance and next hop IP 10.1.4.4.

To force all internet-bound traffic through a network virtual appliance, the route table needs a default route that matches 0.0.0.0/0 and sends traffic to the appliance's private IP. The next hop type must be Virtual appliance, and the next hop IP should be 10.1.4.4. This overrides Azure's default system route for internet traffic from that subnet, while still allowing NSG rules to control whether the traffic is permitted.

C

Distractor review

Destination 0.0.0.0/0 with next hop type Virtual network gateway.

A virtual network gateway is used for VPN or ExpressRoute paths, not for sending traffic to an NVA inside the VNet.

D

Distractor review

Destination 10.1.4.0/24 with next hop type None.

A None next hop would blackhole matching traffic instead of forwarding it through the security appliance.

Common exam trap

Common exam trap: usable hosts are not the same as total addresses

Subnetting questions often tempt you into counting all addresses. In normal IPv4 subnets, the network and broadcast addresses are not usable host addresses.

Technical deep dive

How to think about this question

Subnetting questions test whether you can identify the network, broadcast address, usable range, mask and correct subnet. Slow down enough to calculate the block size correctly.

KKey Concepts to Remember

  • CIDR notation defines the prefix length.
  • Block size helps identify subnet boundaries.
  • Network and broadcast addresses are not usable hosts in normal IPv4 subnets.
  • The required host count determines the smallest suitable subnet.

TExam Day Tips

  • Write the block size before choosing the subnet.
  • Check whether the question asks for hosts, subnets or a specific address range.
  • Do not confuse /24, /25, /26 and /27 host counts.

Related practice questions

Related AZ-104 practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

More questions from this exam

Keep practising from the same exam bank, or move into a focused topic page if this question exposed a weak area.

FAQ

Questions learners often ask

What does this AZ-104 question test?

CIDR notation defines the prefix length.

What is the correct answer to this question?

The correct answer is: Destination 0.0.0.0/0 with next hop type Virtual appliance and next hop IP 10.1.4.4. — A UDR can override Azure's default system route when traffic must follow a specific path. For outbound internet access inspection, the common pattern is a default route for 0.0.0.0/0 pointing to the NVA's private IP using the Virtual appliance next hop type. That sends all unmatched outbound traffic to 10.1.4.4 for inspection or logging before it exits. The NSG still applies separately, so routing and security remain distinct controls. Why others are wrong: A host route to the appliance itself does not steer general outbound traffic, and the Internet next hop would bypass the NVA. Virtual network gateway is for hybrid connectivity, not an appliance in the subnet. A None next hop drops traffic instead of forwarding it. Only the default route to the appliance matches the stated requirement.

What should I do if I get this AZ-104 question wrong?

Then try more questions from the same exam bank and focus on understanding why the wrong options are tempting.

Discussion

Loading comments…

Sign in to join the discussion.