Can I exclude TLSv1.1 in addition to the protocols listed in the guide?
In the InstallDirectory/PerformanceCenter/jetty/etc/jetty-ssl-context.xml on CA Performance Center,
Add TLSv1.1 as in:
<Set name="ExcludeProtocols">
<Array type="java.lang.String">
<Item>TLSv1.1</Item>
<Item>TLSv1</Item>
<Item>SSLv3</Item>
<Item>SSLv2</Item>
<Item>SSLv2Hello</Item>
</Array>
</Set>