Get hands-on experience with 20+ free Google Cloud products and $300 in free credit for new customers.

How to enable TLS 1.2 protocol (and suppress SSLv3, TLS1 and TLS1.1) for all outbound connections ?

Not applicable

How to specify the Protocol list as part of the SSLInfo in the target endpoint element ?

Solved Solved
1 14 9,694
1 ACCEPTED SOLUTION

Not applicable

You can specify the Protocol list as part of the SSLInfo in the target endpoint element

For example :-

<HTTPTargetConnection>
    <URL>https://foo.com</URL>
    <SSLInfo>
        <Protocols>
            <Protocol>TLSv1.2</Protocol>
        </Protocols>
    </SSLInfo>
</HTTPTargetConnection>

The protocol definition in the <HTTPTargetConnection> will allow only TLS1.2 protocol to work.

View solution in original post

14 REPLIES 14