Forum Discussion

Fallout1984's avatar
Fallout1984
Icon for Cirrocumulus rankCirrocumulus
Dec 23, 2020

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

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

  • 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