An administrator is configuring security rules for an Azure virtual network named `VNet1`. `VNet1` contains two subnets: `Subnet-Front` () and `Subnet-Back` ().
The virtual machines are configured as follows:
* `VM-Web` is in `Subnet-Front` and is associated with the Application Security Group (ASG) `ASG-Web`.
* `VM-Admin` is in `Subnet-Front` and is associated with the ASG `ASG-Admin`.
* `VM-App` is in `Subnet-Back` and is associated with the ASG `ASG-App`.
The Network Security Group (NSG) associations are:
* `NSG-Front` is associated with `Subnet-Front`. It contains only default rules.
* `NSG-Back` is associated with `Subnet-Back`.
* `NSG-NIC-App` is associated with the network interface (NIC) of `VM-App`.
| Priority | Source | Destination | Port | Protocol | Action |
|---|---|---|---|---|---|
| 100 | ASG-Admin | ASG-App | 443 | TCP | Allow |
| 200 | ASG-Web | ASG-App | 443 | TCP | Deny |
| Priority | Source | Destination | Port | Protocol | Action |
|---|---|---|---|---|---|
| 150 | Any | ASG-App | 443 | TCP | Allow |
| 250 | ASG-Web | ASG-App | 443 | TCP | Deny |
You need to allow HTTPS (TCP port 443) traffic from `VM-Web` to `VM-App`, while explicitly blocking HTTPS traffic from `VM-Admin` to `VM-App`.
Which two changes should you perform? (Choose two.)
- In NSG-Back, change the action of the rule with priority 200 to Allow.Cevap
- In NSG-Back, change the action of the rule with priority 100 to Deny.Cevap
- CIn NSG-NIC-App, change the priority of the rule with priority 250 to 100.
- DIn NSG-NIC-App, change the action of the rule with priority 250 to Allow.