From 0bffde6d94c4148538fbf9d82076bd57e7394c6a Mon Sep 17 00:00:00 2001 From: JJ Date: Tue, 8 Apr 2025 17:58:14 +0100 Subject: first commit --- .../aws-solutions-architect/ssl-tls.md | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 src/certifications/aws-solutions-architect/ssl-tls.md (limited to 'src/certifications/aws-solutions-architect/ssl-tls.md') diff --git a/src/certifications/aws-solutions-architect/ssl-tls.md b/src/certifications/aws-solutions-architect/ssl-tls.md new file mode 100644 index 0000000..49e6956 --- /dev/null +++ b/src/certifications/aws-solutions-architect/ssl-tls.md @@ -0,0 +1,34 @@ +## SSL / TLS Basics + +SSL refers to Secure Socket Layer and is a way to encrypt network traffic that is in flight. + +For AWS it refers to encrypting traffic between the client and the load balancer. Traffic between the load balancer and instances are handled over plain HTTP. + +The S in HTTPS refers to 'secure', which means the traffic is using SSL. + +Nowadays, traffic is encrypted using TLS (Transport Layer Security), which is a newer version of SSL, but people still refer to it as SSL. + +SSl certs are issued by a Certificate Authority (CA) and have an expiration date. + +![](assets/ssl.png) + +## Load Balancer and SSL + +- LB uses an X.509 Certificate +- ACM (AWS Certificate Manager) manages certs +- You must set a default SSL cert +- Clients can use SNI (Server Name Indication) to specify the hostname they reach + + +## Server Name Indication (SNI) + +- This helps manage multiple SSLs on one Server +- Client must indicate server hostname to get the right SSL + +![](assets/sni.png) + +## Load Balancer Support + +- *CLB*: supports 1 SSL +- *ALB*: supports multiple with SNI +- *NLB*: support multiple with SNI -- cgit v1.2.3