An organization deploys a three-tier architecture in a single Azure virtual network named `VNet-Secure` (). The virtual network contains the following subnets:
* `Subnet-Web` ()
* `Subnet-DB` ()
* `Subnet-DMZ` ()
A third-party security firewall operates as a Network Virtual Appliance (NVA) in `Subnet-DMZ` with the private IP address . By default, Azure system routes allow direct IP communication between all subnets.
You must configure the environment to force all outbound traffic from `Subnet-Web` destined for `Subnet-DB` to traverse the firewall NVA.
Which two configurations should you implement? (Select two.)
- Associate a route table with `Subnet-Web` that contains a user-defined route for with a next hop type of Virtual appliance and a next hop IP address of .Cevap
- Enable IP forwarding on the Azure network interface of the firewall Network Virtual Appliance.Cevap
- CAssociate a route table with `Subnet-Web` that contains a user-defined route for with a next hop type of Virtual Network Gateway and a next hop IP address of .
- DEnable IP forwarding on the Azure network interfaces of all virtual machines residing in `Subnet-Web`.
- EAssociate a route table with `Subnet-DMZ` that contains a user-defined route for with a next hop type of Virtual Network.
Cevap
To force traffic from the Web subnet to the database subnet through the firewall, you must create a route table with a route targeting the database subnet () using the Virtual appliance next hop type with the NVA's IP address (), associate this route table with the Web subnet, and enable IP forwarding on the NVA's network interface.
To successfully route traffic through an NVA, a user-defined route must be configured and associated with the source subnet where traffic originates. The route must specify the destination prefix (in this case, the database subnet ), set the next hop type to Virtual appliance, and specify the NVA's private IP address (). In addition, the NVA's network interface in Azure must have IP forwarding enabled so that it can forward traffic that is not natively addressed to it.
Adım Adım Çözüm
Anahtar Kavram
Routing traffic through a Network Virtual Appliance (NVA) requires configuring a user-defined route with the 'Virtual appliance' next hop type and enabling IP forwarding on the NVA's network interface.