An organization has a hub-and-spoke virtual network topology in Microsoft Azure configured as follows:
- VNet-Hub (address space ) contains a subnet named Subnet-DMZ () and a subnet named Subnet-Data ().
- Subnet-DMZ hosts a Network Virtual Appliance (NVA) with the private IP address .
- VNet-Spoke1 (address space ) contains a subnet named Subnet-App1 ().
- VNet-Hub and VNet-Spoke1 are connected via virtual network peering with default settings.
You must implement a routing policy for traffic originating from Subnet-App1 that meets the following requirements:
1. All traffic destined for the hub virtual network () must be inspected by the NVA.
2. All traffic destined for the database servers in Subnet-Data () must bypass the NVA and connect directly over the virtual network peering connection.
3. The NVA must be permitted to forward traffic that is not destined for its local network interfaces.
Which three configuration steps should you perform to meet these requirements? (Select three.)
- Enable IP forwarding on the Azure network interface associated with the Network Virtual Appliance (NVA).Answer
- Create a route table, associate it with Subnet-App1, and add a route for with a next hop type of Virtual appliance and a next hop IP address of .Answer
- In the route table associated with Subnet-App1, add a route for with a next hop type of Virtual network.Answer
- DIn the route table associated with Subnet-App1, add a route for with a next hop type of Virtual network gateway.
- ECreate a route table, associate it with Subnet-DMZ, and add a route for with a next hop type of Virtual network.
- FEnable IP forwarding on the Azure network interfaces of all virtual machines residing in Subnet-App1.