Forum Discussion

Anthony_Gerace_'s avatar
Anthony_Gerace_
Historic F5 Account
Jun 14, 2005

proxy feature - invalid SSL version mask

 

What are the appropriate values for the client/server invalid SSL version mask methods? When I retreive them I'm receiving a huge number 16777216 if SSL V2 is selected. Do we have these referenced somewhere what the expected values are/should be?

 

 

 

thanks.

 

 

Anthony
  • Loc_Pham_101863's avatar
    Loc_Pham_101863
    Historic F5 Account
    Here's what the SDK documentation says (under API Reference -> ITCM -> ITCMLocalLB -> Proxy -> Constants:

     

     

    A list of constants to be used as bitmask when creating a proxy.

     

    This bitmask indicates the SSL protocol version that should not be used for SSL negotiation. Used in client_invalid_ssl_version_mask and server_invalid_ssl_version_mask of create_ex_2 and create_ex_3.

     

     

    PROXY_SSL_NO_SSLV2 = 16777216 (0x01000000)

     

    PROXY_SSL_NO_SSLV3 = 33554432 (0x02000000)

     

    PROXY_SSL_NO_TLSV1 = 67108864 (0x04000000)

     

     

    Thanks,

     

    Loc