An administrator configures virtual networking in an Azure subscription. A virtual network named `VNet-Corp` contains two subnets: `Subnet-Web` () and `Subnet-DB` (). A virtual machine named `VM-Web1` is deployed in `Subnet-Web` and has its network interface associated with an Application Security Group (ASG) named `ASG-Web`. A virtual machine named `VM-DB1` is deployed in `Subnet-DB` and has its network interface associated with an ASG named `ASG-DB`.
The subnets and network interfaces are configured with the following Network Security Groups (NSGs):
* `NSG-SubnetDB` is associated with `Subnet-DB` and contains the following inbound rule:
* Priority: , Source: `ASG-Web`, Port: , Destination: Any, Action: Allow
* `NSG-NicDB` is associated with the network interface of `VM-DB1` and contains the following inbound rules:
* Priority: , Source: `ASG-Web`, Port: , Destination: Any, Action: Deny
* Priority: , Source: Any, Port: , Destination: Any, Action: Allow
When `VM-Web1` attempts to establish a database connection to `VM-DB1` on TCP port , what is the outcome of the traffic flow?
- The connection is blocked by the network security group associated with the network interface (NIC) of VM-DB1.Cevap
- BThe connection is allowed because the rule with priority 130 in the NIC-level network security group overrides the Deny rule.
- CThe connection is blocked by the network security group associated with Subnet-DB.
- DThe connection is allowed because the rule with priority 120 in the subnet-level network security group overrides the NIC-level network security group rules.