20-May-2021 00:47
Hello Guys,
Need support to get the command line to get VIP name and associated SSL client profile.
Thanks
GPG
21-May-2021
09:18
- last edited on
04-Jun-2023
20:53
by
JimmyPackets
Hello Ganesh.
Try with this command.
tmsh list ltm virtual profiles { $(tmsh list ltm profile client-ssl | grep "profile" | awk '{print $4}' | tr '\n' ' ') }
Regards,
Dario.
21-May-2021 14:47
Hello Dario,
above command showing syntax error
Admin@(PROD-LB2)(cfg-sync In Sync)(Active)(/Common)(tmos)# list ltm virtual profiles { $(tmsh list ltm profile client-ssl | grep "profile" | awk '{print $4}' | tr '\n' ' ') }
Syntax Error: "awk", grep is currently the only filter that is supported
22-May-2021
01:41
- last edited on
04-Jun-2023
20:53
by
JimmyPackets
Hello Ganesh.
You have to execute the above command from bash shell, not from tmsh shell.
Write this command before, to jump to your bash shell:
run /util bash
Then
tmsh list ltm virtual profiles { $(tmsh list ltm profile client-ssl | grep "profile" | awk '{print $4}' | tr '\n' ' ') }
Regards,
Dario.
21-May-2021 14:55
My device is running on BIGIP-12.1.5.2-0.0.10.iso
23-May-2021 13:48
Hello Dario,
Thanks for response !
Above command successfully executed but we are not able to get all VIP details.
Thanks
GPG
24-May-2021 10:12
Hello Ganesh.
What do you mean?
This previous command should only display Virtual+ClientSSL info. That's what you have requested. Could you clarify your question with an example?
Regards,
Dario.
26-May-2021
02:26
- last edited on
24-Mar-2022
02:11
by
li-migration
Have you had a chance to look at my codeshare.
https://devcentral.f5.com/s/articles/bash-script-to-find-clientssls-mapped-to-virtual-servers-1143
26-May-2021 16:08
Thanks Dario !
Your script is excellent , As we are getting desired output.
Thanks for your support 🙂
Thanks
GPG