Your company has an Azure virtual network named `VNet-Finance` (). The virtual network contains the following three subnets:
* `WebSubnet` ()
* `SecureDMZ` ()
* `AppSubnet` ()
You deploy a Network Virtual Appliance (NVA) named `NVA-1` to `SecureDMZ`. `NVA-1` is assigned the private IP address .
You need to ensure that all traffic sent from `WebSubnet` to `AppSubnet` is routed through `NVA-1` for inspection.
Which two actions should you perform? (Select two.)
- Create a route table, add a route for destination with a next hop type of Virtual Appliance and a next hop IP address of , and associate the route table with WebSubnet.Answer
- Enable IP forwarding on the network interface (NIC) of NVA-1.Answer
- CCreate a route table, add a route for destination with a next hop type of Virtual Network Gateway and a next hop IP address of , and associate the route table with SecureDMZ.
- DCreate a route table, add a route for destination with a next hop type of Virtual Appliance and a next hop IP address of , and associate the route table with AppSubnet.
Answer
Create a route table, add a route for destination with a next hop type of Virtual Appliance and next hop IP address of , associate it with WebSubnet, and enable IP forwarding on the network interface of NVA-1.
To route traffic from the web tier to the app tier through a firewall or NVA, you must define a User-Defined Route (UDR) specifying the destination subnet IP range () and designating the Next Hop Type as a Virtual Appliance pointing to the NVA's IP (). This route table must be associated with the source subnet (WebSubnet) where the traffic originates. Additionally, the NVA's network interface (NIC) in Azure must have IP forwarding enabled so that it does not drop packets destined for other IP addresses.
Step-by-Step Solution
Key Concept
Configuring custom routing through a Network Virtual Appliance (NVA) requires creating a route table, defining a route with a Next Hop Type of 'Virtual Appliance' pointing to the NVA's IP, associating the route table with the source subnet, and enabling IP forwarding on the NVA's network interface.