You support an Azure infrastructure with a hub-and-spoke virtual network topology. The hub virtual network is named `Hub-VNet` () and contains a firewall appliance in subnet `FirewallSubnet` () with a private IP address of . A spoke virtual network named `Spoke1-VNet` () contains a backend processing subnet named `BackendSubnet` (). `Hub-VNet` and `Spoke1-VNet` are connected using virtual network peering with transit settings configured.
You must direct all outbound internet traffic from virtual machines located in `BackendSubnet` through the firewall appliance in the hub.
Which two configuration actions are required to achieve this routing behavior? (Select two.)
- Associate a route table with `BackendSubnet` that contains a route with the destination prefix , a next hop type of Virtual appliance, and a next hop IP address of .Answer
- Enable IP forwarding on the network interface of the firewall appliance in the hub.Answer
- CAssociate a route table with `BackendSubnet` that contains a route with the destination prefix , a next hop type of Virtual Network Gateway, and a next hop IP address of .
- DEnable IP forwarding within the subnet properties of `BackendSubnet` and `FirewallSubnet`.
Answer
Associate a route table with the backend subnet containing a route with the destination prefix and a next hop type of Virtual appliance pointing to the firewall IP address, and enable IP forwarding on the firewall's network interface.
To route outbound internet traffic from a spoke subnet through a firewall appliance in the hub, you must create a User-Defined Route (UDR) for with a next hop type of Virtual appliance pointing to the firewall's IP address and associate it with the spoke subnet. Additionally, the firewall's network interface must have IP forwarding enabled so it can process and forward traffic intended for other destinations.
Step-by-Step Solution
Key Concept
Routing spoke traffic through a hub NVA requires a route table with a Virtual appliance next hop associated with the spoke subnet, along with enabling IP forwarding on the NVA's NIC.