Elastic Load Balancers (ELB) Flashcards
What is ELB, what does it stand for? What are the three types?
- ELB - Elastic Load Balancer
- Types
- Application Load Balancer
- Network Load Balancer
- Classic Load Balancer
What layer do Application Load Balancers Operate at? Which Protocols?
- HTTP/HTTPS
- Layer 7 - The Application Layer
What are some general attributes of an application load balancer?
- General use
- Intelligent Load Balancer
What is a load balancer health check? What are the possible values returned by a health check?
- Its the ability for the ELB to check EC2 instances to see if they’re up.
- inService
- outOfService
How many rules can you create for an Application Load Balancer
- at least 1 - default
What is an ALB Target Group
- A group of EC2 instances registered with the application load balancer
What is path-based routing?
- When you use the URL path to make routing decisions
What is required to use an HTTPS Listener on an application load balancer
- Must deploy one SSL or TLS certificate on the load balancer
What layer do network balancers operate at? What protocols?
- Layer 4
- TCP, TLS, UDP, TCP_UDP
- What are sticky sessions?
- Why might you use them?
- How do you deal with a missing EC2 instance a person is bound to?
- Binds a request to a particular EC2 instance
- This is usually because of the requirements of an application
- Disable sticky sessions
How can you grant access to your ELB to clients that can only access trusted IP addresses?
you can use the Bring Your Own IP (BYOIP) feature to use the trusted IPs as Elastic IP addresses (EIP) to a Network Load Balancer (NLB
How can you allow multiple domains to serve SSL traffic over the same IP address
Generate an SSL certificate with AWS Cert Manager
Associate the certificate with the the CloudFront web distribution
Enable SNI (server name indication), a TLS extension
How would you analyze the logs from an application load balancer?
Store the logs in S3
Analyze with EMR
Can an elastic load balancer run across regions?
no, it runs across AZs in a single region