An enterprise is designing a hub-and-spoke virtual network topology in Azure. The hub virtual network, `vnet-weur-hub` (address space: ), contains a subnet `snet-firewall` () hosting a firewall Network Virtual Appliance (NVA) at IP address . Another subnet in the hub, `snet-shared` (), hosts a shared DNS server at IP address .
The spoke virtual network, `vnet-weur-prod-app` (address space: ), is connected to `vnet-weur-hub` using virtual network peering with default settings. Inside `vnet-weur-prod-app`, there are two subnets: `snet-web` () hosting web servers and `snet-db` () hosting database servers (including a database server at ).
To enforce security, a route table named `rt-snet-web` is associated with `snet-web` and configured with the following user-defined routes (UDRs):
- Route 1: Address prefix , Next hop type: Virtual appliance, Next hop IP address:
- Route 2: Address prefix , Next hop type: Virtual appliance, Next hop IP address:
What is the routing behavior for outbound traffic originating from a web server in `snet-web` () destined for the database server () and the DNS server ()?
- Traffic to both the database server and the DNS server bypasses the firewall NVA.Cevap
- BTraffic to both the database server and the DNS server is routed to the firewall NVA.
- CTraffic to the database server is routed to the firewall NVA, while traffic to the DNS server bypasses the firewall NVA.
- DTraffic to the DNS server is routed to the firewall NVA, while traffic to the database server bypasses the firewall NVA.