October 23, 2022 7:00 PM PDT


This document summarizes the key points discussed during the Load Balancer Live Demo, focusing on the implementation and configuration of an L4 load balancer using LVS. The demo included setting up a virtual IP (VIP), configuring real servers, and ensuring high availability through the use of keepalived.

Presenter: Brother M, Tech Lead

System Design Summary
Configuration Steps
Kernel Configuration
  1. Change the kernel parameters on the destination machines:

    • Navigate to /proc/sys/net/ipv4/conf
    • Configure parameters for ens33, all, lo, and virbr0:
      echo 1 > /proc/sys/net/ipv4/conf/ens33/arp_ignore
      echo 2 > /proc/sys/net/ipv4/conf/ens33/arp_announce
      echo 1 > /proc/sys/net/ipv4/conf/all/arp_ignore
      echo 2 > /proc/sys/net/ipv4/conf/all/arp_announce
      
  2. Map the VIP to the loopback device on Tomcat servers.

Load Balancer Configuration
  1. Bind the VIP on the load balancer:

    ifconfig
    
    • The load balancer will have one network card with two IP addresses.
  2. Start Apache servers on real servers:

    • Configure each Apache server to return a static page indicating its identity (server1 or server2).
  3. Confirm accessibility of real servers by visiting their real IP addresses.

LVS Load Balancer Configuration
  1. Configure round robin for incoming packets:

    ipvsadm -A -t 192.168.1.250:80 -s rr
    
  2. Configure outgoing packets to direct to different real servers:

    ipvsadm -a -t 192.168.1.250:80 -r 192.168.1.12 -g
    ipvsadm -a -t 192.168.1.250:80 -r 192.168.1.13 -g
    
  3. Test the load balancer by curling the webpage from the VIP:

    • Confirm that requests are distributed to real servers in a round-robin fashion.
High Availability Configuration
  1. Set up keepalived on master and backups:

    • Configuration file: /etc/keepalived/keepalived.conf
    • Use virtual_server for persistent timeout settings.
  2. Start keepalived:

    • The master broadcasts its status.
    • Keepalived uses HTTP requests to check the health of real servers and auto-configures the load balancer accordingly.
Testing Failover Mechanisms
Additional Testing
HTTPS Configuration
Summary

The flow of requests is as follows:

User -> DNS -> L4 LB -> L7 LB -> Tomcat Real Servers