An organization is designing a hub-and-spoke virtual network topology in Azure to host a multi-tier web application. The topology consists of the following components:
* A hub virtual network named `vnet-eus-hub` () hosting an Azure Firewall at IP address .
* A production spoke virtual network named `vnet-eus-prod` () peered with the hub virtual network.
* Three subnets inside `vnet-eus-prod`:
* `subnet-web` ()
* `subnet-app` ()
* `subnet-db` ()
The design must satisfy the following routing requirements:
1. All outbound internet traffic from `subnet-web` must be inspected by the Azure Firewall in the hub.
2. All traffic between `subnet-web` and `subnet-app` must be inspected by the Azure Firewall in the hub.
3. Traffic between `subnet-app` and `subnet-db` must bypass the Azure Firewall and remain local within `vnet-eus-prod` to minimize latency.
4. You must minimize administrative overhead and avoid configuring redundant route rules.
Which route table configuration should you implement to meet the requirements?
- ACreate a single route table and associate it with all three subnets. Add a route for with next hop Virtual Appliance (), and a route for with next hop Virtual Appliance ().
- Create a route table for `subnet-web` with routes for and pointing to Virtual Appliance (). Create a separate route table for `subnet-app` with a route for pointing to Virtual Appliance (). Do not associate a custom route table with `subnet-db`.Cevap
- CCreate a single route table and associate it with all three subnets. Add a route for with next hop Virtual Appliance ().
- DCreate a single route table and associate it with `subnet-web` and `subnet-app`. Add a route for with next hop Virtual Appliance (), and a route for with next hop Virtual Appliance ().