You have an Azure subscription that contains a virtual network named `VNet1`. `VNet1` contains two subnets: `SubnetA` () and `SubnetB` ().
The virtual machines are configured as follows:
* `VM1` is in `SubnetA` and has a network interface named `NIC1`. `NIC1` is associated with an Application Security Group named `ASG-Web`.
* `VM2` is in `SubnetB` and has a network interface named `NIC2`. `NIC2` is associated with an Application Security Group named `ASG-DB`.
* `VM3` is in `SubnetB` and has a network interface named `NIC3`. `NIC3` is not associated with any Application Security Group.
The Network Security Groups (NSGs) are configured as follows:
* `NSG-SubnetA` is associated with `SubnetA`.
* `NSG-NIC1` is associated with `NIC1`.
* `NSG-NIC2` is associated with `NIC2`.
* `SubnetB` and `NIC3` have no associated NSGs.
The NSGs contain the following custom rules:
| Priority | Source | Destination | Port | Protocol | Action |
|---|---|---|---|---|---|
| `ASG-Web` | `ASG-DB` | TCP | Allow | ||
| Any | Any | TCP | Deny |
| Priority | Source | Destination | Port | Protocol | Action |
|---|---|---|---|---|---|
| Any | TCP | Allow |
| Priority | Source | Destination | Port | Protocol | Action |
|---|---|---|---|---|---|
| Any | TCP | Deny | |||
| `ASG-Web` | `ASG-DB` | TCP | Allow |
Which of the following statements correctly describe the connectivity when `VM1` attempts to establish a TCP connection to `VM2` and `VM3` on port ? (Select TWO.)
- Traffic from `VM1` to `VM2` is blocked inbound by the Network Security Group on `VM2`'s network interface because the Deny rule with priority is evaluated before the Allow rule with priority .Cevap
- Traffic from `VM1` to `VM3` is blocked outbound by the Network Security Group on `SubnetA` because it does not match the Allow rule with priority and matches the Deny rule with priority .Cevap
- CTraffic from `VM1` to `VM2` is allowed because the Allow rule with priority takes precedence because it specifies a more granular Application Security Group (ASG) mapping than the subnet prefix in the rule with priority .
- DTraffic from `VM1` to `VM3` is allowed because `VM3` has no Network Security Group associated with its subnet or network interface, bypassing the outbound restrictions of `SubnetA`.