<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic ACE SSL Termination in Application Networking</title>
    <link>https://community.cisco.com/t5/application-networking/ace-ssl-termination/m-p/715562#M13616</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i've read the Manual for SSL Termination.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I did not find any Option, how i can control the Secure and the nonsecure Port. On CSS it was possible to do this in the ssl-server inside the ssl-proxy-list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can i change that on the ACE?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sven&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 22 Mar 2007 21:20:51 GMT</pubDate>
    <dc:creator>Sbutzek</dc:creator>
    <dc:date>2007-03-22T21:20:51Z</dc:date>
    <item>
      <title>ACE SSL Termination</title>
      <link>https://community.cisco.com/t5/application-networking/ace-ssl-termination/m-p/715562#M13616</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i've read the Manual for SSL Termination.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I did not find any Option, how i can control the Secure and the nonsecure Port. On CSS it was possible to do this in the ssl-server inside the ssl-proxy-list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can i change that on the ACE?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sven&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Mar 2007 21:20:51 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/ace-ssl-termination/m-p/715562#M13616</guid>
      <dc:creator>Sbutzek</dc:creator>
      <dc:date>2007-03-22T21:20:51Z</dc:date>
    </item>
    <item>
      <title>Re: ACE SSL Termination</title>
      <link>https://community.cisco.com/t5/application-networking/ace-ssl-termination/m-p/715563#M13617</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think  are looking for port 81 that was used in CSS days to &lt;/P&gt;&lt;P&gt;differentiate decrypted traffic coming back from the offloader from regular http traffic.&lt;/P&gt;&lt;P&gt;With ACE, there is no need to make this distinction anymore.&lt;/P&gt;&lt;P&gt;You just need two class maps for cleartext &amp;amp; Secure traffic. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Following is a sample config&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*******************************************&lt;/P&gt;&lt;P&gt;rserver host Server03&lt;/P&gt;&lt;P&gt;  ip address 172.20.20.13&lt;/P&gt;&lt;P&gt;  inservice&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rserver host Server04&lt;/P&gt;&lt;P&gt;  ip address 172.20.20.14&lt;/P&gt;&lt;P&gt;  inservice&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;serverfarm host APP-FARM&lt;/P&gt;&lt;P&gt;  rserver Server03&lt;/P&gt;&lt;P&gt;    inservice&lt;/P&gt;&lt;P&gt;  rserver Server04&lt;/P&gt;&lt;P&gt;    inservice&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***********Clear text traffic ***********************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class-map match-all VIP-CLEAR&lt;/P&gt;&lt;P&gt;  2 match virtual-address 10.1.1.100 tcp eq http&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;policy-map type loadbalance first-match APP-POLICY&lt;/P&gt;&lt;P&gt;  class class-default&lt;/P&gt;&lt;P&gt;    serverfarm APP-FARM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;************* Secure traffic************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class-map match-all VIP-SECURE&lt;/P&gt;&lt;P&gt;  2 match virtual-address 10.1.1.100 tcp eq https&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;policy-map type loadbalance first-match SSL-APP-POLICY&lt;/P&gt;&lt;P&gt;  class class-default&lt;/P&gt;&lt;P&gt;    serverfarm APP-FARM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;****************************************&lt;/P&gt;&lt;P&gt;policy-map multi-match client-vips&lt;/P&gt;&lt;P&gt;  class VIP-CLEAR&lt;/P&gt;&lt;P&gt;    loadbalance vip inservice&lt;/P&gt;&lt;P&gt;    loadbalance policy APP-POLICY&lt;/P&gt;&lt;P&gt;    loadbalance vip icmp-reply active&lt;/P&gt;&lt;P&gt;  class VIP-SECURE&lt;/P&gt;&lt;P&gt;    loadbalance vip inservice&lt;/P&gt;&lt;P&gt;    loadbalance policy SSL-APP-POLICY&lt;/P&gt;&lt;P&gt;    loadbalance vip icmp-reply active&lt;/P&gt;&lt;P&gt;    ssl-proxy server app-ssl  &amp;lt;-- use ssl proxy service for ssl offload &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ssl-proxy service app-ssl&lt;/P&gt;&lt;P&gt;  key app-key&lt;/P&gt;&lt;P&gt;  cert app-cert&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps&lt;/P&gt;&lt;P&gt;Syed Iftekhar Ahmed&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Mar 2007 22:13:52 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/ace-ssl-termination/m-p/715563#M13617</guid>
      <dc:creator>Syed Iftekhar Ahmed</dc:creator>
      <dc:date>2007-03-22T22:13:52Z</dc:date>
    </item>
  </channel>
</rss>

