Your company has an Azure environment with a hub-and-spoke virtual network topology. The hub virtual network (VNet-Hub) contains an Azure Firewall deployed in the AzureFirewallSubnet with a private IP address of 10.0.1.4. A spoke virtual network (VNet-Spoke1) is peered with VNet-Hub and contains a subnet named Subnet-Web (10.1.1.0/24) housing web servers.
You need to meet the following requirements:
1. Route all outbound internet traffic from Subnet-Web through the Azure Firewall.
2. Allow the web servers in Subnet-Web to access the FQDN *.github.com over HTTPS.
Which two configurations should you perform? (Select two.)
- In a route table associated with Subnet-Web, add a route for destination 0.0.0.0/0 with the next hop type set to Virtual appliance and the next hop address set to 10.0.1.4.Cevap
- In the Azure Firewall policy, create an application rule with the protocol set to HTTPS, the target FQDN set to *.github.com, and the source set to 10.1.1.0/24.Cevap
- CIn a route table associated with Subnet-Web, add a route for destination 0.0.0.0/0 with the next hop type set to Virtual network gateway and the next hop address set to 10.0.1.4.
- DIn a Network Security Group (NSG) associated with Subnet-Web, create an outbound security rule with a priority of 100 that denies all outbound traffic, and an outbound rule with a priority of 1000 that allows HTTPS traffic to *.github.com.
Cevap
In a route table associated with Subnet-Web, add a route for destination 0.0.0.0/0 with the next hop type set to Virtual appliance and the next hop address set to 10.0.1.4; and in the Azure Firewall policy, create an application rule with the protocol set to HTTPS, the target FQDN set to *.github.com, and the source set to 10.1.1.0/24.
To route outbound traffic from a spoke subnet through a hub Azure Firewall, you must configure a user-defined route (UDR) for 0.0.0.0/0 pointing to the firewall's private IP address. The next hop type must be set to Virtual appliance. To allow the web servers to access wildcard domain names such as *.github.com over HTTPS, you must configure an application rule in the firewall policy. This rule specifies the source IP range, the protocol and port (HTTPS:443), and the target FQDN.
Adım Adım Çözüm
Anahtar Kavram
Routing spoke traffic through a hub firewall and performing outbound FQDN filtering using application rules.