Forum Discussion

Root44's avatar
Root44
Icon for Altostratus rankAltostratus
Sep 08, 2015

Adding Load Balancer with SSL

What is the command for adding LB with port and server port, SSL traffice (yes), persistence (SSL), LB algorithm (LC), and Keep alive ( TCP- handshake)?

 

1 Reply

  • You'll need to create a server pool first:

    create ltm pool test-pool members replace-all-with { 11.11.11.11:80 11.11.11.12:80 } load-balancing-mode least-connections-member
    

    then a client SSL profile (assuming you've already uploaded the cert and key:

    create ltm profile client-ssl test-ssl cert www.bigdomain.com.crt key www.bigdomain.com.key
    

    and then you can create the virtual server:

    create ltm virtual test-vs destination 14.14.14.14:443 pool test-pool profiles add { test-ssl } source-address-translation { type automap }
    

    The above is an absolute basic requirement for building any virtual server (with client side SSL), so you'll need to tweak it accordingly.