We are using Jetty 8.1.14 version. We are sending SYN packets at jetty server usign hping2.
Jetty-ssl.xml : <?xml version="1.0"?> <!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure.dtd"> <Configure id="Server" class="org.eclipse.jetty.server.Server"> <New id="sslContextFactory" class="org.eclipse.jetty.util.ssl.SslContextFactory"> <Set name="KeyStore">/usr/local/platform/.security/tomcat/certs/tomcat.keystore</Set> <Set name="KeyStorePassword">tXo0ur8bhbWqWop7</Set> <Set name="KeyManagerPassword">tXo0ur8bhbWqWop7</Set> <Set name="TrustStore">/usr/../../../tomcat-trust.keystore</Set> <Set name="TrustStorePassword">Nsx6pJsCPijqts2f</Set> <Set name="KeyStoreType">PKCS12</Set> <Set name="TrustStoreType">PKCS12</Set> </New> <Call name="addConnector"> <Arg> <New class="org.eclipse.jetty.server.ssl.SslSelectChannelConnector"> <Arg> <Ref id="sslContextFactory"/> </Arg> <Set name="Port">7443</Set> <Set name="maxIdleTime">90000</Set> <Set name="Acceptors">2</Set> <Set name="AcceptQueueSize">100</Set> <Set name="IncludeCipherSuites"> <Array type="java.lang.String"> <Item>TLS_RSA_WITH_AES_256_CBC_SHA</Item> </Array> </Set> </New> </Arg> </Call> </Configure> -- View this message in context: http://jetty.4.x6.nabble.com/jetty-users-Jetty-SSL-port-does-not-close-even-maxIdleTime-is-reached-tp4962355p4962358.html Sent from the Jetty User mailing list archive at Nabble.com. _______________________________________________ jetty-users mailing list [email protected] https://dev.eclipse.org/mailman/listinfo/jetty-users
