An enterprise application deployment contains EC2 instances in an application subnet (10.10.1.0/24) that must connect to a Microsoft SQL Server database cluster in a database subnet (10.10.2.0/24) on TCP port 1433. The default Network Access Control Lists (NACLs) have been replaced with custom NACLs that deny all traffic by default.
The current configurations are:
- The application subnet's custom NACL has an outbound rule allowing TCP port 1433 to 10.10.2.0/24, and an inbound rule allowing TCP ports 1024-65535 from 10.10.2.0/24.
- The database subnet's custom NACL has an inbound rule allowing TCP port 1433 from 10.10.1.0/24, and an outbound rule allowing TCP port 1433 to 10.10.1.0/24.
- The security groups associated with the instances allow the necessary stateful database traffic.
Although the security groups are correctly configured, database connections from the application subnet fail. Which of the following changes to the custom NACL configurations will resolve this connectivity issue?
- In the database subnet's NACL, modify the outbound rule to allow TCP port range 1024-65535 to destination 10.10.1.0/24.Cevap
- BIn the database subnet's NACL, modify the inbound rule to allow TCP port range 1024-65535 from source 10.10.1.0/24.
- CIn the application subnet's NACL, modify the inbound rule to allow TCP port 1433 from source 10.10.2.0/24.
- DIn the database Security Group, add an outbound rule allowing TCP port range 1024-65535 to the application Security Group.