An administrator is configuring a hub-and-spoke network topology in Microsoft Azure. The hub virtual network (VNet-Hub) contains an Azure Firewall deployed with the private IP address . Two spoke virtual networks, VNet-Spoke1 (containing Subnet-App with address space ) and VNet-Spoke2 (containing Subnet-DB with address space ), are peered with VNet-Hub.
The administrator associates a route table with Subnet-App containing a route for destination with a next hop type of Virtual appliance and a next hop address of . In the Azure Firewall, a Network Rule is configured to allow TCP traffic on port from to .
A virtual machine in Subnet-App () attempts to establish a SQL database connection to a database server in Subnet-DB (). The connection fails, even though no Network Security Groups (NSGs) are blocking the traffic and the database server is configured to accept connections.
Which of the following is the most likely cause of this connection failure?
- The route table associated with Subnet-DB does not contain a user-defined route for with the next hop pointing to the Azure Firewall, resulting in asymmetric routing where the firewall drops the stateful TCP connection.Cevap
- BVirtual network peering between VNet-Spoke1 and VNet-Spoke2 must be established directly, as transit routing through a hub virtual network is not supported for peered networks without configuring Virtual Network Gateways and Gateway Transit.
- CThe route table associated with Subnet-App has an incorrect next hop type of Virtual network gateway instead of Virtual appliance for the destination .
- DThe default outbound security rule in the Network Security Group (NSG) associated with Subnet-App has a higher priority than the route table rules, preventing traffic from reaching the firewall.