CA XCOM Gateway FTP users can request secure communication by using FTP client software that is capable of using the FTPS protocol and selecting that protocol, in place of FTP, when connecting to the CA XCOM Gateway FTP server. For more information, see the chapter "Using CA XCOM Gateway FTP."
To enable the use of the ftps and ftp protocols
If preferred, the JBOSS/Tomcat keystore referenced in the preceding section can be shared by both Tomcat and the Apache FTP Server.
Note: The two listener names must be different; one of them must be "default" and you can specify any name for the other one (in this example, "ftps" is the other name).
<listeners>
<nio-listener name="ftps" port="22" implicit-ssl="true">
<!-- Uncomment this section to configure explicit SSL support-->
<ssl>
<keystore file="C:/keystore.jks" password="changeit"/>
<truststore file="C:/keystore.jks" password="changeit"/>
</ssl>
</nio-listener>
<nio-listener name="default" port="21">
<!-- Uncomment this section to configure explicit SSL support-->
<ssl>
<keystore file="C:/keystore.jks" password="changeit"/>
<truststore file="C:/keystore.jks" password="changeit"/>
</ssl>-->
</nio-listener>
</listeners>
<listeners>
<nio-listener name="default" port="port number" implicit-ssl="true">
<!-- Uncomment this section to configure explicit SSL support-->
<ssl>
<keystore file="C:/keystore.jks" password="changeit"/>
<truststore file="C:/keystore.jks" password="changeit"/>
</ssl>
</nio-listener>
</listeners>
| Copyright © 2011 CA. All rights reserved. | Tell Technical Publications how we can improve this information |