An Azure environment contains the following resources:
- A virtual network named `VNet1` with two subnets: `Subnet-Web` () and `Subnet-DB` ().
- A virtual machine named `VM-Web1` in `Subnet-Web` with its network interface associated with an Application Security Group (ASG) named `ASG-Web`.
- A virtual machine named `VM-DB1` in `Subnet-DB` with its network interface associated with an ASG named `ASG-DB`.
- `Subnet-DB` is associated with a Network Security Group (NSG) named `NSG-Subnet`.
- The network interface of `VM-DB1` is associated with an NSG named `NSG-NIC`.
The NSGs contain the following custom inbound security rules:
| Priority | Source | Destination | Port | Protocol | Action |
|---|---|---|---|---|---|
| 200 | 10.0.1.0/24 | Any | Any | Any | Deny |
| Priority | Source | Destination | Port | Protocol | Action |
|---|---|---|---|---|---|
| 300 | VirtualNetwork | Any | Any | Any | Deny |
You need to allow database traffic from `VM-Web1` to `VM-DB1` on TCP port 1433. All other traffic from `Subnet-Web` to `Subnet-DB` must remain blocked.
Which two security rules should you create to meet these requirements? (Select TWO.)
- In `NSG-Subnet`, create an inbound rule with Priority 150, Source: `ASG-Web`, Destination: `ASG-DB`, Port: 1433, Protocol: TCP, Action: Allow.Answer
- In `NSG-NIC`, create an inbound rule with Priority 250, Source: `ASG-Web`, Destination: `ASG-DB`, Port: 1433, Protocol: TCP, Action: Allow.Answer
- CIn `NSG-Subnet`, create an inbound rule with Priority 250, Source: `ASG-Web`, Destination: `ASG-DB`, Port: 1433, Protocol: TCP, Action: Allow.
- DIn `NSG-NIC`, create an inbound rule with Priority 350, Source: `ASG-Web`, Destination: `ASG-DB`, Port: 1433, Protocol: TCP, Action: Allow.