Technical Forum
Ask questions. Discover Answers.
cancel
Showing results for 
Search instead for 
Did you mean: 

all unbound ssl client profiles

Andre-Germany
Nimbostratus
Nimbostratus

Hello everyone,

 

is there a way to view all unbound ssl client profiles?

 

Thank Andre

5 REPLIES 5

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.

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}'

 

You can check it under Config Explorer > Ltm > Profile> ClientSSL Profile on ihealth page once qkview file is uploaded.

 

Hope it helps!

Mayur

 

See if you find this helpful.

 

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