An administrator is configuring security rules for an Azure virtual network named `VNet1`. The virtual network contains two subnets: `Subnet-Web` () and `Subnet-Data` ().
The environment contains the following resources:
- `VM-Web1`: Located in `Subnet-Web` and associated with the Application Security Group `ASG-Web`.
- `VM-Data1`: Located in `Subnet-Data` and associated with the Application Security Group `ASG-Data`.
- `NSG-SubnetWeb`: A Network Security Group associated with `Subnet-Web`.
- `NSG-SubnetData`: A Network Security Group associated with `Subnet-Data`.
- `NSG-NicData`: A Network Security Group associated with the network interface of `VM-Data1`.
Currently, database traffic on TCP port from `VM-Web1` to `VM-Data1` is blocked. The security groups contain the custom rules shown in the following tables:
| Priority | Source | Destination | Port | Protocol | Action |
|---|---|---|---|---|---|
| 500 | `ASG-Web` | `ASG-Data` | Any | Any | Deny |
| Priority | Source | Destination | Port | Protocol | Action |
|---|---|---|---|---|---|
| 600 | `10.10.1.0/24` | `ASG-Data` | 1433 | TCP | Deny |
NSG-NicData (Inbound Rules)
- Only default rules are active.
You need to allow SQL Server database traffic on TCP port from `VM-Web1` to `VM-Data1` while maintaining the principle of least privilege.
Which two configuration changes should you perform?
- Add an outbound rule to `NSG-SubnetWeb` with a priority of 400 that allows outbound TCP traffic on port 1433 from `ASG-Web` to `ASG-Data`.Cevap
- Add an inbound rule to `NSG-SubnetData` with a priority of 500 that allows inbound TCP traffic on port 1433 from `ASG-Web` to `ASG-Data`.Cevap
- CAdd an outbound rule to `NSG-SubnetWeb` with a priority of 600 that allows outbound TCP traffic on port 1433 from `ASG-Web` to `ASG-Data`.
- DAdd an inbound rule to `NSG-SubnetData` with a priority of 700 that allows inbound TCP traffic on port 1433 from `ASG-Web` to `ASG-Data`.
- EAdd an inbound rule to `NSG-NicData` with a priority of 400 that allows inbound TCP traffic on port 1433 from `ASG-Web` to `ASG-Data`.