クラウド エンジニアが接続の問題のトラブルシューティングを行っています。あるサブネット内の IP 192.168.1.10 を持つアプリケーション サーバーは、別のサブネット内の IP 192.168.2 20 を持つ MySQL データベース サーバーに接続していません。クラウド エンジニアは次の情報を確認します。 アプリケーション サーバー ステートフル ファイアウォール 通信の問題を解決するには、クラウド エンジニアが対処する必要があるのは次のうちどれですか?
正解:C
The connectivity issue between the application server and the MySQL database server in different subnets is likely due to the MySQL Server Stateful Firewall's inbound rules. The application server has an IP of 192.168.1.10, but the MySQL server's inbound rules only permit IP 192.168.1.10/32 on port 3306. This rule allows only a single IP address (192.168.1.10) to communicate on port 3306, which is typical for MySQL. However, if the application server's IP is not 192.168.1.10 or the application is trying to communicate on a different port, it would be blocked. To fix the communication issue, the cloud engineer should address the inbound rules on the MySQL Server Stateful Firewall to ensure that the application server's IP address and the required port are allowed.