An organization is designing a hub-and-spoke network topology in Azure. The hub virtual network, `vnet-hub-core` (address space: ), hosts a central network virtual appliance (NVA) at IP address that provides firewall and inspection services. The spoke virtual network, `vnet-spoke-data` (address space: ), contains two subnets: `snet-db` () hosting database servers, and `snet-app` () hosting application servers. The networks are connected via virtual network peering.
The security policy requires that all outbound internet traffic from the database servers in `snet-db` must be inspected by the hub NVA. However, database servers must communicate directly with application servers in `snet-app` within the same virtual network without routing through the hub NVA, minimizing latency and transaction costs.
To achieve this configuration, a custom route table will be associated with the `snet-db` subnet. Which route configuration should be added to the route table?
- A route for with the Next Hop Type set to Virtual Appliance and the Next Hop Address set to .Answer
- BA route for with the Next Hop Type set to Virtual Appliance and the Next Hop Address set to , and a default route for to the Internet.
- CSeparate routes for each individual public IP address range of the internet destinations with the Next Hop Type set to Virtual Appliance and the Next Hop Address set to .
- DA route for with the Next Hop Type set to Virtual Appliance pointing to a Basic Load Balancer that distributes traffic to the NVA instances.