An organization implements an Azure virtual network named `VNet-Production` (). The virtual network contains four subnets:
- `FrontEndSubnet` ()
- `BackEndSubnet` ()
- `SecuritySubnet` ()
- `GatewaySubnet` () which contains a Virtual Network Gateway configured with BGP to propagate routes for an on-premises network ().
A virtual machine named `NVA1` is deployed in `SecuritySubnet` and has the private IP address .
You need to implement custom routing to meet the following requirements:
- All outbound traffic from `FrontEndSubnet` to the internet must be routed through `NVA1`.
- All traffic from `FrontEndSubnet` to `BackEndSubnet` must be routed through `NVA1`.
- Traffic from `FrontEndSubnet` to the on-premises network () must bypass `NVA1` and route directly through the Virtual Network Gateway.
Which two actions should you perform to implement this routing configuration? (Select two.)
- Enable IP forwarding on the Azure network interface associated with `NVA1`.Cevap
- Create a route table containing a route for with the next hop type Virtual appliance pointing to , and a route for with the next hop type Virtual appliance pointing to . Associate this route table with `FrontEndSubnet`.Cevap
- CCreate a route table containing a route for with the next hop type Virtual network gateway pointing to , and a route for with the next hop type Virtual network gateway pointing to . Associate this route table with `FrontEndSubnet`.
- DCreate a route table containing a route for with the next hop type Virtual appliance pointing to . Associate this route table with `SecuritySubnet` and `BackEndSubnet`.