![]() ![]() ![]() |
The SSL protocol provides several features that enable secure transmission of Web traffic. These features include data encryption, server authentication, and message integrity.
You can enable secure communication from web clients to the NetFlow Analyzer server using SSL.
![]() |
The steps provided describe how to enable SSL functionality and generate certificates only. Depending on your network configuration and security needs, you may need to consult outside documentation. For advanced configuration concerns, please refer to the SSL resources at http://www.apache.org and http://www.modssl.org |
Stop the server, if it is running, and follow the steps below to enable SSL support:
When you have enabled SSL, HTTP will continue to be enabled on the web server port (default 8090). To disable HTTP follow the steps below:
<!-- A HTTP/1.1 Connector on port
8090 --> <Connector port="8090" address="${jboss.bind.address}" maxThreads="150" minSpareThreads="25" maxSpareThreads="75" enableLookups="false" redirectPort="8493" acceptCount="100" connectionTimeout="20000" disableUploadTimeout="true"/> |
<!-- SSL/TLS Connector configuration
using the admin devl guide keystore <Connector port="8493" address="${jboss.bind.address}" maxThreads="100" minSpareThreads="5" maxSpareThreads="15" scheme="https" secure="true" clientAuth="false" keystoreFile="${jboss.server.home.dir}/conf/chap8.keystore" keystorePass="rmi+ssl" sslProtocol = "TLS" /> --> |
Default Value | New Value |
---|---|
keystoreFile= "${jboss.server.home.dir}/conf/chap8.keystore |
keystoreFile= "${jboss.server.home.dir}/conf/server.keystore |
keystorePass="rmi+ssl" | keystorePass="pqsecured" |
Default Value | New Value |
---|---|
<xsl:variable name="portHttps" select="$port + 363"/> | <xsl:variable name="portHttps" select="8493"/> |
</delegate-config> </service-config> |
</delegate-config> </service-config> |
Server started.
Please connect your client at http://localhost:8493
![]() ![]() ![]() |