Forum Discussion

5 Replies

  • Do you mean the client SSL profiles which are not associated with any of the virtual server? If yes, you can upload Qkview file on F5 ihealth and see all the profiles and their association.

    • Andre-Germany's avatar
      Andre-Germany
      Icon for Nimbostratus rankNimbostratus

      Yes exactly that's what I mean

       

      Where exactly can I find this in F5 ihealth

  • Hi Andre,

    tmsh show ltm virtual profiles | grep 'Ltm::ClientSSL Profile:' | awk '{print $4}' | sort -u > cs-bind.txt
    tmsh list ltm profile client-ssl | grep ltm | awk '{print $4}' | sort -u > cs-all.txt
    diff cs-bind.txt cs-all.txt | grep ">" | awk '{print $2}'
     
    tmsh show ltm virtual profiles | grep 'Ltm::ServerSSL Profile:' | awk '{print $4}' | sort -u > ss-bind.txt
    tmsh list ltm profile server-ssl | grep ltm | awk '{print $4}' | sort -u > ss-all.txt
    diff ss-bind.txt ss-all.txt | grep ">" | awk '{print $2}'
  • See if you find this helpful.

     

    https://devcentral.f5.com/s/articles/bash-script-to-find-clientssls-mapped-to-virtual-servers-1143