An enterprise is designing a secure hub-and-spoke network topology in Azure. The topology consists of the following components:
* A hub virtual network named `vnet-prod-hub` () containing:
* A subnet named `snet-nva` () that hosts a Network Virtual Appliance (NVA) at IP address .
* A subnet named `GatewaySubnet` () that hosts an ExpressRoute Virtual Network Gateway.
* A peered spoke virtual network named `vnet-prod-spoke` () containing a subnet named `snet-app` ().
The ExpressRoute gateway connects to an on-premises network (). Virtual network peering is configured to allow gateway transit.
You need to design a routing solution that meets the following requirements:
1. All traffic from `snet-app` destined for the on-premises network must be inspected by the NVA.
2. All traffic from the on-premises network destined for `snet-app` must be inspected by the NVA.
3. The NVA must be able to forward inspected traffic to its final destination without routing loops or losing connectivity.
Which two configurations should you include in the design?
- Associate a route table with the GatewaySubnet that contains a route for 10.200.0.0/16 with the next hop set to Virtual appliance (10.100.1.4).Cevap
- Associate a route table with snet-app that contains a route for 192.168.0.0/16 with the next hop set to Virtual appliance (10.100.1.4), and disable BGP route propagation on the route table.Cevap
- CAssociate a route table with snet-nva that contains a route for 10.100.0.0/16 with the next hop set to Virtual appliance (10.100.1.4).
- DDisable BGP route propagation on the route table associated with the GatewaySubnet.
- EAssociate a route table with snet-app that contains a route for 10.100.0.0/16 with the next hop set to Virtual Network Gateway.