Disclaimer

Monday, 9 June 2025

OCI - Networking

 




VCN - Virtual Cloud Network

















































Q) What is the different between Internet Gateway Vs NAT gateway?


🔹 Internet Gateway (IG):

  • It allows bi-directional traffic (inbound & outbound) between the public internet and resources in a public subnet.

  • Resources must have a public IP address to use an Internet Gateway.

  • Used when your compute instances or load balancers need to be directly accessible from the internet.

  • You can have only one Internet Gateway per VCN.

  • Requires updating route tables and security lists to allow traffic.

Example: Hosting a public web application server that users access via the internet.




🔹 NAT Gateway:

  • It allows outbound-only internet access for instances in a private subnet (i.e., instances without public IPs).

  • No inbound traffic from the internet is allowed, which makes it more secure.

  • It allows downloading patches, software updates, or communicating with external services without exposing the instance.

  • You can create multiple NAT Gateways in a VCN, but a subnet can route traffic to only one NAT Gateway.

  • Requires route table entries to direct traffic from private subnets to the NAT Gateway.

Example: A private application server that needs to install OS updates from the internet but must remain unreachable from outside.



🔸 Summary Comparison:

FeatureInternet GatewayNAT Gateway
Used WithPublic SubnetsPrivate Subnets
Public IP RequiredYesNo
Traffic TypeInbound and OutboundOutbound Only
SecurityLess Secure (Exposed)More Secure (No Internet Inbound)
Number Allowed per VCN1Multiple
Subnet Routing LimitationN/AOne NAT per subnet (via route table)



















No comments:

Post a Comment

Understanding SQL Plan Baselines in Oracle Database

  Understanding SQL Plan Baselines in Oracle Database SQL Plan Baseline is the feature in Oracle started from Database 11g that helps to pre...