Printer FriendlyEmail Article Link

Gateway: How do I disable TLSv1.0 from tomcat?

Environment/Versions
Gateway using tomcat version 6.
Answer
Update the server.xml file and include sslEnabledProtocols with the protocols that you want supported.  This will disable the protocols that you do not want supported.  

Example if want to support TLSv1.1 and TLSv1.2 but not TLSv1.0:

<Connector port="8080" protocol="HTTP/1.1" SSLEnabled="true" maxThreads="150" scheme="https" secure="true" keystoreFile="/spirent/CenterOpGateway/certs/wegs_keystore.p12" keystorePass="wegs-Five12" clientAuth="false" sslProtocol="TLS" sslEnabledProtocols="TLSv1.1,TLSv1.2"/>

Product : TEST PORTAL,Gateway