23-Dec-2020 14:04
I'm displaying my cert profiles using tmsh and am wondering what the syntax is if I want to display more than one property at a time , rather than use "all-properties".
Example: Combine the output of these two commands:
tmsh list ltm profile client-ssl ciphers
tmsh list ltm profile client-ssl options
Thanks!
24-Dec-2020
05:40
- last edited on
04-Jun-2023
21:07
by
JimmyPackets
Yes, Its Possible. Find the below output.
tmsh list ltm profile client-ssl ciphers
Ciphers
root@(abc)(cfg-sync Standalone)(Active)(/Common)(tmos)# list ltm profile client-ssl clientssl ciphers
ltm profile client-ssl clientssl {
ciphers DEFAULT
}
tmsh list ltm profile client-ssl options
root@(abc)(cfg-sync Standalone)(Active)(/Common)(tmos)# list ltm profile client-ssl clientssl options
ltm profile client-ssl clientssl {
options { dont-insert-empty-fragments no-tlsv1.3 no-dtlsv1.2 }
}
Ciphers+Options
tmsh list ltm profile client-ssl clientssl ciphers options
root@(abc)(cfg-sync Standalone)(Active)(/Common)(tmos)# list ltm profile client-ssl clientssl ciphers options
ltm profile client-ssl clientssl {
ciphers DEFAULT
options { dont-insert-empty-fragments no-tlsv1.3 no-dtlsv1.2 }
}
-
Hope it works for you