A Cantrill - High Availability and Scaling Flashcards

1
Q

True or False: Internet facing LB nodes can access only public EC2 Instances, NOT private.

A

False. Internet-Facing LB nodes can access BOTH public and private EC2s that are behind them

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Which ELB is faster? NLB or ALB

A

NLB is faster than ALB because they dont inspect incoming requests.

Allowing them to foward incoming requests more quickly, reducing latency.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How can ALB rules help handle large specific Enterprise customers?

A

Filter traffic based on the Source IP.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What protocols does NLB support?

A

Layer 4 - TCP, TLS, UDP, TCP_UDP

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What are some specific use cases for NLB over ALB?

A

SMTP, SSH, Game servers, Financial apps (not http/s)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

If you need unbroken E2E encryption support for your LB which should you choose?

A

NLB using TCP listeners. This will maintain the encryption after it passes through the LB.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

If your ALB needs to be able to provide static IP whitelisting what LB should you choose?

A

NLB provides the ability to whitelist Static IPs.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What ALB can be integrated with Privatelink?

A

NLBs can support Privatelink

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Can you edit / update Launch configurations and Launch templates?

A

Launch Configs and templates are NOT editable.

Launch templates do have version capabilities.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is simple scaling policy?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is a GWLB?

A

Gateway Load Balancers enable you to deploy, scale, and manage virtual appliances, such as firewalls, intrusion detection and prevention systems, and deep packet inspection systems.

It combines a transparent network gateway (that is, a single entry and exit point for all traffic) and distributes traffic while scaling your virtual appliances with the demand.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is SSL Offload?

A

HTTPS to the LB, HTTP to the instance

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Which load balancer is allocated with a static IP?

A

Network Load Balancer

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

How do you ensure EC2s in an ASG across multiple AZs receives equal % of traffic?

A

cross-zone load balancing - distributes traffic across the registered targets in all enabled Availability Zones

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Does ELB have a feature that allows you to view information such as requests, client IP address, latencies, request paths, and server responses? And if so what is this feature called?

A

Yes, ELB provides access logs that capture detailed information about requests sent to your load balancer. This is called Access Logs.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is Amazon CloudWatch Application Insights used for?

A

A feature that allows CloudWatch to scan resources you specify (RDS, EC2, ECS Anywhere, SQL) and will recommend and configure logs and metrics in CW for these applications.

17
Q

What layer of OSI model is gRPC and which ELB supports this protocol?

A

gRPC is a layer 7 protocol, therefore ALB is suitable to support this.

18
Q

What layer is SQL injection attempts and cross-site scripting?

A

Layer 7.