Working with SSL


 

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 EventLog Analyzer server using SSL.

    note

    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:

    Generating a valid certificate

    1. If you have a keystore file for using HTTPS, place the file under <EventLogAnalyzer Home>\server\default\conf directory and rename it as "test.keystore"
    2. If you do not have the keystore file, please follow the steps to create the same.
    3. For example, if the EventLog Analyzer home is C:\AdventNet\ME\EventLog, then the command will be "C:\AdventNet\ME\EventLog\jre\bin\keytool" -genkey -alias tomcat -keyalg RSA -keystore test.keystore

    Disabling HTTP

    When you have enabled SSL, HTTP will continue to be enabled on the web server port (default 8080). To disable HTTP follow the steps below:

    1. Edit the server.xml file present in <EventLogAnalyzer_Home>/server/default/deploy/jbossweb-tomcat50.sar directory.
    2. Comment out the HTTP connection parameters, by placing the <!-- tag before, and the --> tag after the following lines:
    <!-- A HTTP/1.1 Connector on port 8400 -->
    <Connector port="8400" address="${jboss.bind.address}"
    maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
    enableLookups="false" redirectPort="8443" acceptCount="100"
    connectionTimeout="20000" disableUploadTimeout="true"/>

     

    Enabling SSL

    1. In the same file, enable the HTTPS connection parameters, by removing the <!-- tag before, and the --> tag after the following lines:

      <!--

      <!-- SSL/TLS Connector configuration using the admin devl guide keystore -->
      <Connector port="8443" address="${jboss.bind.address}"
      maxThreads="100" minSpareThreads="5" maxSpareThreads="15"
      scheme="https" secure="true" clientAuth="false"
      keystoreFile="${jboss.server.home.dir}/conf/test.keystore"
      keystorePass="change" sslProtocol = "TLS" />

      -->

 

Note While creating keystore file, you can enter the password as per your requirement. But ensure that the same password is configured, in the server.xml file. Example password is configured as 'change'.


Changing the web server port

  1. Edit the sample-bindings.xml file present in <EventLogAnalyzer_Home>/server/default/conf directory
  2. Replace the default values for the following parameters as follows:
    Default Value
    New Value
    <xsl:variable name="portHttps" select="$port + 363"/> <xsl:variable name="portHttps" select="8443"/>
    </delegate-config><binding port="8400"/></service-config> </delegate-config><binding port="8443"/></service-config>

     

Configuring HTTPS Configuration Parameters for 64 bit/128 bit encryption

If you want to configure the HTTPS connection parameters for 64 bit/128 bit encryption, add the following parameter at the end of the SSL/TLS Connector tag:

 

SSLCipherSuite="SSL_RSA_WITH_3DES_EDE_CBC_SHA"

 

<!-- SSL/TLS Connector configuration using the admin devl guide keystore -->
<Connector port="8443" address="${jboss.bind.address}"
maxThreads="100" minSpareThreads="5" maxSpareThreads="15"
scheme="https" secure="true" clientAuth="false"
keystoreFile="${jboss.server.home.dir}/conf/test.keystore"
keystorePass="change" sslProtocol = "TLS"

SSLCipherSuite="SSL_RSA_WITH_3DES_EDE_CBC_SHA"/>

 

Verifying SSL Setup

  1. Restart the EventLog Analyzer server.
  2. Verify that the following message appears:

    Server started.

    Please connect your client at http://localhost:8443

  3. Connect to the server from a web browser by typing https://<hostname>:8443 where <hostname> is the machine where the server is running

 



Copyright © 2008, AdventNet Inc. All Rights Reserved.