Your Azure subscription contains a virtual network named `VNet1` that has two subnets: `Subnet-Web` and `Subnet-App`.
The network contains the following virtual machines and security configurations:
* `VM-Web1` is in `Subnet-Web` and is associated with an Application Security Group (ASG) named `ASG-Web-Front`.
* `VM-App1` is in `Subnet-App` and is associated with an ASG named `ASG-App-Logic`.
* `Subnet-Web` is associated with a Network Security Group (NSG) named `NSG-Subnet-Web`.
* `Subnet-App` is associated with an NSG named `NSG-Subnet-App`.
* The network interface (NIC) of `VM-App1` is associated with an NSG named `NSG-NIC-App1`.
Currently, the NSGs have the following custom rules:
| Priority | Source | Source Port | Destination | Destination Port | Protocol | Action |
|---|---|---|---|---|---|---|
| 100 | ASG-Web-Front | * | ASG-App-Logic | 80 | TCP | Deny |
| 200 | * | * | * | * | * | Allow |
| Priority | Source | Source Port | Destination | Destination Port | Protocol | Action |
|---|---|---|---|---|---|---|
| 150 | * | * | * | 80 | TCP | Deny |
| 250 | ASG-Web-Front | * | ASG-App-Logic | 80 | TCP | Allow |
| Priority | Source | Source Port | Destination | Destination Port | Protocol | Action |
|---|---|---|---|---|---|---|
| 110 | ASG-Web-Front | * | ASG-App-Logic | 80 | TCP | Allow |
| 120 | VirtualNetwork | * | Any | * | * | Deny |
You need to allow `VM-Web1` to initiate outbound HTTP connections to `VM-App1` on port 80. Which two modifications should you perform to establish this connectivity?
- In `NSG-Subnet-Web`, create an outbound rule with a priority of 90 that allows TCP traffic on port 80 from `ASG-Web-Front` to `ASG-App-Logic`.Answer
- BIn `NSG-Subnet-App`, change the priority of the inbound rule that allows traffic from `ASG-Web-Front` to 300.
- In `NSG-Subnet-App`, change the priority of the inbound rule that allows traffic from `ASG-Web-Front` to 120.Answer
- DIn `NSG-NIC-App1`, change the priority of the inbound rule that denies traffic from `VirtualNetwork` to 105.
- EIn `NSG-NIC-App1`, delete the inbound rule with a priority of 120.