Tuesday, December 4, 2018

Things to be learned before learning Load Balancing



Network Layers (Keep in mind when working with diffrent protocols)





Difference between HTTPS and SSL


SSL (Secure Socket Layer) or TLS (Transport Layer Security) works on top of the transport layer, in your examples TCP. TLS can be used for more or less any protocol, HTTPS is just one common instance of it.
In regular, non-encrypted HTTP, the protocol stack can look like this:
When using HTTPS, the stack looks like this:
  • HTTP
  • TLS (SSL)
  • TCP
  • IP
  • Ethernet

(ONGOING ARTICLE - Please comment questions you've faced during LB configurations... Thanks !)

References

https://s3.amazonaws.com/edu.cohesive.net/OSI-layer-model.gif
https://stackoverflow.com/questions/6093430/difference-between-https-and-ssl

Things to be learned before learning Load Balancing

Network Layers (Keep in mind when working with diffrent protocols) Difference between HTTPS and SSL SSL (Secure Socket Layer...