An organization has its IT infrastructure in a hybrid setup with an on-premises environment and an Oracle Cloud Infrastructure (OCI) Virtual Cloud Network (VCN) in the us-phoenix-1 region.
The on-premises applications communicate with compute instances inside the VCN over a hardware VPN connection.
They are looking to implement an Intrusion Detection and Prevention (IDS/IPS) system for their OCI environment.
This platform should have the ability to scale to thousands of compute instances running inside the VCN.
How should they architect their solution on OCI to achieve this goal? (Choose the best answer.)
Click on the arrows to vote for the correct answer
A. B. C. D.B.
Option A: Set up an OCI Private Load Balancer and configure IDS/IPS related health checks at TCP and/or HTTP level to inspect traffic.
This option suggests setting up an Oracle Cloud Infrastructure Private Load Balancer and configuring IDS/IPS health checks at the TCP and/or HTTP level. This Load Balancer acts as a front-end that receives traffic and forwards it to backend instances, which could be the compute instances running inside the VCN. The health checks can be configured to inspect the traffic and detect any suspicious activity. This option can provide horizontal scalability to the IDS/IPS system by adding more backend instances to the Load Balancer.
Advantages:
Disadvantages:
Option B: Configure autoscaling on a compute instance pool and set vNIC to promiscuous mode to collect traffic across the VCN and send it to the IDS/IPS platform for inspection.
This option suggests configuring an autoscaling compute instance pool and setting the Virtual Network Interface Card (vNIC) to promiscuous mode to collect traffic across the VCN. The collected traffic can be sent to an IDS/IPS platform for inspection. Autoscaling can help provide horizontal scalability to the IDS/IPS system by adding more compute instances to the pool when needed.
Advantages:
Disadvantages:
Option C: Configure each host with an agent that collects all network traffic and sends that traffic to the IDS/IPS platform for inspection.
This option suggests configuring each compute instance running inside the VCN with an agent that collects network traffic and sends it to an IDS/IPS platform for inspection. This approach can provide direct access to the network traffic flowing through the VCN and can be more precise in detecting suspicious activity.
Advantages:
Disadvantages:
Option D: There is no need to implement an IPS/IDS system as traffic coming over IPSec VPN tunnels is already encrypted.
This option suggests that the traffic coming over the IPSec VPN tunnels is already encrypted, and there is no need to implement an IDS/IPS system. However, encryption does not guarantee protection against all types of attacks, and an IDS/IPS system can provide additional security measures to detect and prevent malicious activity.
Advantages:
Disadvantages:
Conclusion: Option A and Option B are the most suitable solutions for implementing an IDS/IPS system on OCI. Option A provides horizontal scalability through the use of a Load Balancer and IDS/IPS health checks,