An administrator manages an Azure subscription with a virtual network named `VNet1`. `VNet1` contains two subnets:
- `Subnet-Web` (), associated with a Network Security Group (NSG) named `NSG-Web`.
- `Subnet-App` (), associated with an NSG named `NSG-App`.
The following virtual machines are deployed:
- `VM-Web1` () and `VM-Web2` () in `Subnet-Web`. The network interfaces (NICs) of both VMs are associated with an Application Security Group (ASG) named `ASG-Web`.
- `VM-App1` () in `Subnet-App`. Its NIC is associated with an ASG named `ASG-App`.
- `VM-App2` () in `Subnet-App`. Its NIC is associated with a dedicated NSG named `NSG-App2-NIC`.
Currently, the NSGs have the following custom rules:
- `NSG-Web` has no custom rules.
- `NSG-App` has a custom inbound rule named `Deny-Web` with priority that denies all protocols and ports from the `10.0.1.0/24` source to `Any` destination.
- `NSG-App2-NIC` has a custom inbound rule named `Deny-All-Inbound` with priority that denies all protocols and ports from `Any` source to `Any` destination.
You need to configure the network security to satisfy the following requirements:
1. Allow HTTPS traffic (TCP port ) from `VM-Web1` and `VM-Web2` to `VM-App1`.
2. Allow SSH traffic (TCP port ) from `VM-Web1` to `VM-App2`.
3. Block all other traffic from `Subnet-Web` to `Subnet-App`.
Which three of the following rules should you configure? (Select three.)
- In `NSG-App`, add an inbound rule with a priority of that allows TCP port traffic from source `10.0.1.4` to destination `10.0.2.5`.Cevap
- In `NSG-App2-NIC`, add an inbound rule with a priority of that allows TCP port traffic from source `10.0.1.4` to destination `10.0.2.5`.Cevap
- In `NSG-App`, add an inbound rule with a priority of that allows TCP port traffic from source `ASG-Web` to destination `ASG-App`.Cevap
- DIn `NSG-App`, add an inbound rule with a priority of that allows TCP port traffic from source `ASG-Web` to destination `ASG-App`.
- EIn `NSG-App2-NIC`, add an inbound rule with a priority of that allows TCP port traffic from source `10.0.1.4` to destination `10.0.2.5`.
- FIn `NSG-App2-NIC`, add an inbound rule with a priority of that allows TCP port traffic from source `ASG-Web` to destination `10.0.2.5`.