How do you select load balancer for your application requirement?

VPC and Subnet
A virtual private cloud (VPC) is a virtual network dedicated to your AWS account. It is logically isolated from other virtual networks in the AWS Cloud. You can launch your AWS resources, such as Amazon EC2 instances, into your VPC. You can specify an IP address range for the VPC, add subnets, associate security groups, and configure route tables.
When you create a VPC, you must specify a range of IPv4 addresses for the VPC in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16. This is the primary CIDR block for your VPC.
A subnet is a range of IP addresses in your VPC. You can launch AWS resources into a specified subnet. Use a public subnet for resources that must be connected to the internet, and a private subnet for resources that won't be connected to the internet .
To protect the AWS resources in each subnet, you can use multiple layers of security, including security groups and network access control lists (ACL).
Elastic Load Balancer (ELB)
Q. How do you select load balancer for your application requirement?
1. Application Load Balancer
2. Network Load Balancer
3. Classic Load Balancer

Comments