64 AWS Interview Questions - What is a Route Table in AWS and How does it work

แชร์
ฝัง
  • เผยแพร่เมื่อ 25 ส.ค. 2024
  • 64 AWS Interview Questions - What is a Route Table in AWS and How does it work
    🎉AWS Certified Developer Associate Free Course:
    tinyurl.com/dv...
    🎉 Slides on the channel are available here in the link below:
    ko-fi.com/pyth...
    🎉 Pythoholic is Creating visual content for all tech and programming on TH-cam!
    You can support by buying a coffee ☕️ here -
    ko-fi.com/pyth...
    🍀 If you wish to support me please choose the links below:
    INSTAMOJO: instamojo.com/...
    PAYPAL: paypal.me/pythoholic
    GADGETS I USE: www.amazon.in/shop/pythoholic
    🎉AWS Solutions Architect Associate Certification 2021 Playlist:
    tinyurl.com/y4...
    Learn Once. Never Forget
    🍀 TH-camr @BePythoholic 🎲
    🍀 ko-fi.com/pyth...
    🍀 buymeacoffee.co...
    🍀 Podcast (Blabber Cloud) : tinyurl.com/Pyt...
    🎯 Click Below
    🚨 TH-cam -- tinyurl.com/PythoholicYT
    Disclaimer: The content provided in the channel is not affiliated in any way to the organization. We provide information here on the channel based on the knowledge we have on the topic. We advise our viewers to please do their own research and read more about them from the source provided by the organization to get a better outlook on the topic that has been covered.
    These videos are just to provide you a platform to learn, and there can be mistakes and we are always trying to improve based on your feedback. we recommend viewers have an open mind. Please support the channel to get more content like these in the future.
    #AWS #Technology #Pythoholic

ความคิดเห็น • 3

  • @deepakranjanmishra5641
    @deepakranjanmishra5641 9 หลายเดือนก่อน

    Kindly explain how we can make a subnet and the instances inside it completely private.

    • @Pythoholic
      @Pythoholic  7 หลายเดือนก่อน +1

      To create a completely private subnet with instances that are not accessible from the internet, you can follow these steps:
      1. **Create a VPC**: If you don't already have one, create a Virtual Private Cloud (VPC) in your cloud provider's environment (like AWS).
      2. **Create a Private Subnet**:
      - Within your VPC, create a new subnet. This subnet will be designated as private.
      - When creating the subnet, ensure it does not have a route to the Internet Gateway.
      3. **Update Route Table**:
      - Associate the private subnet with a route table that does not have a route to an Internet Gateway.
      - Ensure that the route table allows for local VPC traffic.
      4. **Launch Instances in the Private Subnet**:
      - When launching new instances (like EC2 instances in AWS), select the private subnet.
      - Do not assign a public IP or Elastic IP to these instances.
      5. **Set Up a NAT Gateway or NAT Instance** (Optional):
      - If your instances in the private subnet need to initiate outbound traffic to the internet (for updates, patches, etc.), use a NAT Gateway or NAT Instance.
      - Place the NAT Gateway or NAT Instance in a public subnet and ensure it has a route to the Internet Gateway.
      - Update the private subnet's route table to direct internet-bound traffic to the NAT Gateway or NAT Instance.
      6. **Security Groups and Network ACLs**:
      - Configure Security Groups for your instances to control inbound and outbound traffic at the instance level.
      - Set up Network Access Control Lists (NACLs) to provide a layer of security at the subnet level.
      7. **No External Access**:
      - Ensure that Security Groups and NACLs are configured to not allow inbound traffic from the internet.
      8. **Private DNS (Optional)**:
      - If using AWS, enable private DNS within your VPC to allow instances to communicate with each other using their private DNS names.
      By following these steps, you create a private subnet where instances do not have direct access to the internet and cannot be accessed directly from the internet. This is a common setup for backend systems, databases, and application servers that need to be secured.

    • @deepakranjanmishra5641
      @deepakranjanmishra5641 7 หลายเดือนก่อน

      Thanks a lot