AWS – VPC Creation

Steps to create VPC in AWS

  1. Decide what IP Range we need to use : 10.1.0.0/16 (255.255.0.0)
  2. Create a VPC and name it as Ford. Enable DNS Hostnames.
  3. Create 3 Subnets as below:

    • Ford-Subnet-1 – 10.1.1.0/24 – us-east-1a
    • Ford-Subnet-2 – 10.1.2.0/24 – us-east-1b
    • Ford-Subnet-3 – 10.1.3.0/24 – us-east-1c

    Once subnets are created, enable automatic public ip assignemtn.

  4. Create internet gateway using Name Ford-IGW and attach to VPC
  5. Create a new routing table as Ford-Main-Table and attach Subnets to it.
  6. Create a route towards IGW.
  7. Create a Security Group and allow all ports.
  8. Create a Key Pair
  9. Deploy a new VM/Instance/Server and connect using the key u created in step 8.

Reference

Leave a Reply

Your email address will not be published. Required fields are marked *