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

tmsh command (displaying multiple select properties rather than all of them)

Fallout1984
Cirrocumulus
Cirrocumulus

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!

1 REPLY 1

Samir
MVP
MVP

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