Forum Discussion

Bohumir_Hejduk_'s avatar
Bohumir_Hejduk_
Icon for Nimbostratus rankNimbostratus
Oct 12, 2015

Statistics for used

Hello guys, we have BigIP 3900 and using it as reverse proxy (virtual servers, iRules). I need to get the statistics about: a) which web browsers + versions (e.g. Internet Explorer, Firefox) are used...
  • Vitaliy_Savrans's avatar
    Oct 13, 2015

    Hello,

    to get cipher statistics you can use:

    show ltm profile client-ssl profile_name
    

    the part of the output will be something like this:

    Ciphers
    Advanced Encryption Standard (AES)        9.8M
    Digital Encryption Standard (DES)         1.5M
    Rivest Cipher 2 (RC2)                        0
    Rivest Cipher 4 (RC4)                        0
    IDEA (old SSLv2 cipher)                      0
    No Encryption                                0
    

    to get user-agent information you can use irule:

    when HTTP_REQUEST { 
     log local0. "Client IP:[IP::client_addr] has been blocked with user agent :[HTTP::header User-Agent]" 
     }