Forum Discussion

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.