Forum Discussion

dominatorz_1208's avatar
dominatorz_1208
Icon for Nimbostratus rankNimbostratus
Mar 15, 2013

shortest command for SSLprofile

Dear Experts

 

 

I am having around 30-40 LTM boxes and some of the boxes have +100 V.servers and +50 clientssl profiled each. I need to find out whcih which clientssl profile is linked to v.server listening on service port 443.

 

please could you help me to find any shortcut way to find the above request. at present I am going one by one v.server with the command b virtual list and looking into that is there any clientssl profile configured.

 

Many thanks in advance for your help

 

2 Replies

  • e.g.

    [root@ve10:Active] config  b virtual all profiles all profile name |grep -i clientssl
    VIRTUAL SERVER PROFILE bar/clientssl - Profile Name: clientssl
    VIRTUAL SERVER PROFILE foo/clientssl - Profile Name: clientssl
    
    [root@ve10:Active] config  b virtual bar list
    virtual bar {
       destination 172.28.19.252:443
       ip protocol 6
       profiles {
          clientssl {
             clientside
          }
          tcp {}
       }
    }
    [root@ve10:Active] config  b virtual foo list
    virtual foo {
       destination 172.28.19.252:4343
       ip protocol 6
       profiles {
          clientssl {
             clientside
          }
          tcp {}
       }
    }