BASH Script to find ClientSSL's mapped to Virtual Servers
Problem this snippet solves: Often times we may require to generate a report to know how many of the clientssl profiles are mapped to which virtual servers. One can use the simple tmsh list ltm vi...
Updated Jun 06, 2023
Version 2.0jaikumar_f5
MVP
Joined May 16, 2019
jaikumar_f5
May 03, 2018MVP
Yup thats doable too. But instead of
grep -v clientside|grep -v tcp|grep -v "\-\-"|sed 's/{//g
you can combine them as grep -vE "clientside|tcp|--"
too.