An enterprise has a hub-and-spoke network topology in Azure to support a multi-tier application. The topology contains the following configurations:
* Hub VNet (`vnet-hub-weur`): Address space . It contains an Azure Route Server and a Network Virtual Appliance (`nva-core` at ) that dynamically advertises the prefix via BGP.
* Spoke VNet (`vnet-prod-spoke`): Address space . It contains a subnet named `subnet-prod` (). The spoke VNet is peered with the hub VNet with gateway transit enabled so that it receives the routes propagated by the Route Server.
* **Security Scanner (`nva-scan` at )**: Deployed in the hub VNet for inspecting traffic destined to specific security zones.
You need to design a routing solution for resources in `subnet-prod` to ensure that all traffic destined for the network is routed through the security scanner (`nva-scan`) instead of the core NVA (`nva-core`).
Which of the following configurations should you recommend?
- Associate a route table with `subnet-prod` and add a user-defined route for with a next hop type of Virtual Appliance pointing to .Answer
- BAssociate a route table with `subnet-prod` and add a user-defined route for with a next hop type of Virtual Appliance pointing to .
- CAssociate a route table with `subnet-prod`, disable gateway route propagation on the route table, and add a user-defined route for with a next hop type of Virtual Appliance pointing to .
- DConfigure a custom routing policy on the Azure Route Server in `vnet-hub-weur` to filter out the BGP advertisement of to `vnet-prod-spoke`.