<?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 Re: CSS SSL Termination w/HTTPS rewrite in Application Networking</title>
    <link>https://community.cisco.com/t5/application-networking/css-ssl-termination-w-https-rewrite/m-p/1264281#M26271</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, your understanding of the communication process is correct.  The HTTP port 80 content rule will redirect the client's connection; then the port 81 content rule would be used to process/handle the decrypted traffic from the client's HTTPS connection using the webserver.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, you are also correct that the server must be configured to listen on the alternate port (this case 81) to correctly handle the client's traffic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Jason &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 02 Oct 2009 04:05:00 GMT</pubDate>
    <dc:creator>jason.espino</dc:creator>
    <dc:date>2009-10-02T04:05:00Z</dc:date>
    <item>
      <title>CSS SSL Termination w/HTTPS rewrite</title>
      <link>https://community.cisco.com/t5/application-networking/css-ssl-termination-w-https-rewrite/m-p/1264275#M26265</link>
      <description>&lt;P&gt;I'm terminating SSL on the CSS for a website that we want to force users to use HTTPS to get to the site.  If the user uses HTTP we want the Load balancer to change it to HTTPS have the user use the HTTPS url for all queries to the site.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've looked at a couple of ways of doing this.  One method is to create a special 'service' entry which rewrites the URL.  But I don't see how this can work with the normal way SSL terminated websites are configured.  &lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-custom" href="http://www.cisco.com/en/US/products/hw/contnetw/ps789/products_configuration_example09186a00801de8d6.shtml" target="_blank"&gt;http://www.cisco.com/en/US/products/hw/contnetw/ps789/products_configuration_example09186a00801de8d6.shtml&lt;/A&gt; &lt;/P&gt;&lt;P&gt;is the example of that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alternately there's the 'ssl-server 1 urlrewrite 1 &lt;A&gt;www.domain.com'&lt;/A&gt; command, but that seems to only cause backend webserver issued redirects to get changed from http to https.  It doesn't cause the incoming request to be changed.... ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Oct 2009 22:20:54 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/css-ssl-termination-w-https-rewrite/m-p/1264275#M26265</guid>
      <dc:creator>cmcbride</dc:creator>
      <dc:date>2009-10-01T22:20:54Z</dc:date>
    </item>
    <item>
      <title>Re: CSS SSL Termination w/HTTPS rewrite</title>
      <link>https://community.cisco.com/t5/application-networking/css-ssl-termination-w-https-rewrite/m-p/1264276#M26266</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Creating a redirect service on your CSS should accomplish what you are requesting.  Simply create and apply the redirect service to the HTTP port 80 content rule on the CSS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is 2 different ways of doing a redirect service on the CSS.  Use either a "redirect-string" or "domain".  Both of which operate differently.  If you want the CSS to preserve the client's path information within the initial URL request but redirect their connection to HTTPS then a type redirect service with "domain" would suffice. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example of a "domain" redirect service configuration: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;service redirect-https&lt;/P&gt;&lt;P&gt;type redirect&lt;/P&gt;&lt;P&gt;no prepend-http&lt;/P&gt;&lt;P&gt;keepalive type none&lt;/P&gt;&lt;P&gt;domain "&lt;A class="jive-link-custom" href="https://www.domain.com" target="_blank"&gt;https://www.domain.com&lt;/A&gt;" &lt;/P&gt;&lt;P&gt;active &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How the "domain" redirect will operate: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Client types the following URL:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-custom" href="http://www.domain.com/admin" target="_blank"&gt;http://www.domain.com/admin&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CSS performs a 302 redirect and sends the client to the following URL:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-custom" href="https://www.domain.com/admin" target="_blank"&gt;https://www.domain.com/admin&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you do not want the CSS to preserve the path information within the client's URL and simply redirect their connection to HTTPS then a type redirect service with "redirect-string" would be your option. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example of a "redirect-string" redirect service configuration: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;service redirect-https&lt;/P&gt;&lt;P&gt;type redirect&lt;/P&gt;&lt;P&gt;no prepend-http&lt;/P&gt;&lt;P&gt;keepalive type none&lt;/P&gt;&lt;P&gt;redirect-string "&lt;A class="jive-link-custom" href="https://www.domain.com" target="_blank"&gt;https://www.domain.com&lt;/A&gt;" &lt;/P&gt;&lt;P&gt;active &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Customer types the following URL:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-custom" href="http://www.domain.com/admin" target="_blank"&gt;http://www.domain.com/admin&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CSS performs a 302 redirect and sends the client to the following URL:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-custom" href="https://www.domain.com/" target="_blank"&gt;https://www.domain.com/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The client's connection should remain on HTTPS unless your webservers are setup to redirect the client's connection back to HTTP when they click specific URLs/links within the site.  If that is the case then you can setup a urlrewrite rule on the proxy-list to ignore any 300 series redirects given off by the webservers.  The CSS will rewrite the domain to HTTPS rather then HTTP when the servers "attempt" to redirect the client's connection back to HTTP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following rewrite rule will ignore ALL 300 series redirects given off by the Webservers: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ssl-server 1 urlrewrite 1 *&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following rewrite rule will ignore ALL 300 series redirects given off by the Webservers for the URL "www.domain.com": &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ssl-server 1 urlrewrite 1 &lt;A class="jive-link-custom" href="http://www.domain.com" target="_blank"&gt;www.domain.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this info helps!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Jason&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Oct 2009 01:11:41 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/css-ssl-termination-w-https-rewrite/m-p/1264276#M26266</guid>
      <dc:creator>jason.espino</dc:creator>
      <dc:date>2009-10-02T01:11:41Z</dc:date>
    </item>
    <item>
      <title>Re: CSS SSL Termination w/HTTPS rewrite</title>
      <link>https://community.cisco.com/t5/application-networking/css-ssl-termination-w-https-rewrite/m-p/1264277#M26267</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are 2 ways to implement this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.Create a service with Type Redirect and add the service to the content rule under the owner for the HTTP port as below,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;service redir-https&lt;/P&gt;&lt;P&gt;  keepalive type none &lt;/P&gt;&lt;P&gt;  ip add 192.168.1.1&lt;/P&gt;&lt;P&gt;  type redirect &lt;/P&gt;&lt;P&gt;  no prepend-http &lt;/P&gt;&lt;P&gt;  domain &lt;A class="jive-link-custom" href="https://www.domain.com" target="_blank"&gt;https://www.domain.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;  active &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;owner domain&lt;/P&gt;&lt;P&gt;  content http&lt;/P&gt;&lt;P&gt;    vip address " 1.1.1.1"&lt;/P&gt;&lt;P&gt;    protocol tcp &lt;/P&gt;&lt;P&gt;    port 80 &lt;/P&gt;&lt;P&gt;    url "/*" &lt;/P&gt;&lt;P&gt;    add service redir-https &lt;/P&gt;&lt;P&gt;    active &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. The other way is to add the redirect URL directly in the content rule &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  owner Domain &lt;/P&gt;&lt;P&gt;    content http&lt;/P&gt;&lt;P&gt;      port 80  &lt;/P&gt;&lt;P&gt;      protocol tcp  &lt;/P&gt;&lt;P&gt;      vip address 1.1.1.1&lt;/P&gt;&lt;P&gt;      url "/*"  &lt;/P&gt;&lt;P&gt;      redirect "&lt;A class="jive-link-custom" href="https://www.domain.com" target="_blank"&gt;https://www.domain.com&lt;/A&gt;" &lt;/P&gt;&lt;P&gt;      active&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The difference is that in the Service method only the domain portion of the URL is changed, the rest of the URL that has for example /abc/def.jsp is preserved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the Content Rule Method, the entire URL will be substituted with whatever is configured in the Redirect String.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this answers your question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Siva Srinivasan&lt;/P&gt;&lt;P&gt;HP Enterprise Services&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Oct 2009 01:16:09 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/css-ssl-termination-w-https-rewrite/m-p/1264277#M26267</guid>
      <dc:creator>sivaprakasam</dc:creator>
      <dc:date>2009-10-02T01:16:09Z</dc:date>
    </item>
    <item>
      <title>Re: CSS SSL Termination w/HTTPS rewrite</title>
      <link>https://community.cisco.com/t5/application-networking/css-ssl-termination-w-https-rewrite/m-p/1264278#M26268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Great information from both answers, thanks a bunch.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'd like to use the service type of redirect so as to preserve the URL, but the delima is how will that work with the SSL termination on the device?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The examples shown by the Cisco doc on the service redirect show that the IP address given in that service is a bogus one.  Is that right?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Would this work?&lt;/P&gt;&lt;P&gt;service ssl_module &lt;/P&gt;&lt;P&gt;  add ssl-proxy-list ssl-list1 &lt;/P&gt;&lt;P&gt;  keepalive type none &lt;/P&gt;&lt;P&gt;  type ssl-accel &lt;/P&gt;&lt;P&gt;  slot 2 &lt;/P&gt;&lt;P&gt;  active &lt;/P&gt;&lt;P&gt;service redir-https&lt;/P&gt;&lt;P&gt;  keepalive type none&lt;/P&gt;&lt;P&gt;  ip address &lt;VALID internal="" webserver="" ip=""&gt;&lt;/VALID&gt;&lt;/P&gt;&lt;P&gt;  type redirect&lt;/P&gt;&lt;P&gt;  no prepend-http&lt;/P&gt;&lt;P&gt;  domain &lt;A class="jive-link-custom" href="https://www.domain.com" target="_blank"&gt;https://www.domain.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;  active&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;owner domain&lt;/P&gt;&lt;P&gt;content http&lt;/P&gt;&lt;P&gt;  vip address &lt;VIP address=""&gt;&lt;/VIP&gt;&lt;/P&gt;&lt;P&gt;  port 80&lt;/P&gt;&lt;P&gt;  protocol tcp&lt;/P&gt;&lt;P&gt;  url "/*"&lt;/P&gt;&lt;P&gt;  add service redir-https&lt;/P&gt;&lt;P&gt;  active&lt;/P&gt;&lt;P&gt;content ssl&lt;/P&gt;&lt;P&gt;  vip address &lt;VIP address=""&gt;&lt;/VIP&gt;&lt;/P&gt;&lt;P&gt;  protocol tcp&lt;/P&gt;&lt;P&gt;  port 443&lt;/P&gt;&lt;P&gt;  add service ssl_module&lt;/P&gt;&lt;P&gt;  active&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Oct 2009 02:36:35 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/css-ssl-termination-w-https-rewrite/m-p/1264278#M26268</guid>
      <dc:creator>cmcbride</dc:creator>
      <dc:date>2009-10-02T02:36:35Z</dc:date>
    </item>
    <item>
      <title>Re: CSS SSL Termination w/HTTPS rewrite</title>
      <link>https://community.cisco.com/t5/application-networking/css-ssl-termination-w-https-rewrite/m-p/1264279#M26269</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You are correct.  The IP address is bogus on the example you have provided.  Your redirect service does not require an IP address in order for it to work properly. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The configuration you have posted should accomplish what you are requesting however you will need to add a new content rule:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;service ssl_module&lt;/P&gt;&lt;P&gt;add ssl-proxy-list ssl-list1&lt;/P&gt;&lt;P&gt;keepalive type none&lt;/P&gt;&lt;P&gt;type ssl-accel&lt;/P&gt;&lt;P&gt;slot 2&lt;/P&gt;&lt;P&gt;active&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;service redir-https&lt;/P&gt;&lt;P&gt;keepalive type none&lt;/P&gt;&lt;P&gt;type redirect&lt;/P&gt;&lt;P&gt;no prepend-http&lt;/P&gt;&lt;P&gt;domain &lt;A class="jive-link-custom" href="https://www.domain.com" target="_blank"&gt;https://www.domain.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;active&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;owner domain&lt;/P&gt;&lt;P&gt;content http&lt;/P&gt;&lt;P&gt;vip address &lt;VIP address=""&gt;&lt;/VIP&gt;&lt;/P&gt;&lt;P&gt;port 80&lt;/P&gt;&lt;P&gt;protocol tcp&lt;/P&gt;&lt;P&gt;url "/*"&lt;/P&gt;&lt;P&gt;add service redir-https&lt;/P&gt;&lt;P&gt;active&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;content http&lt;/P&gt;&lt;P&gt;vip address &lt;VIP address=""&gt;&lt;/VIP&gt;&lt;/P&gt;&lt;P&gt;port 81&lt;/P&gt;&lt;P&gt;protocol tcp&lt;/P&gt;&lt;P&gt;url "/*"&lt;/P&gt;&lt;P&gt;add service web-service&lt;/P&gt;&lt;P&gt;active&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;content ssl&lt;/P&gt;&lt;P&gt;vip address &lt;VIP address=""&gt;&lt;/VIP&gt;&lt;/P&gt;&lt;P&gt;protocol tcp&lt;/P&gt;&lt;P&gt;port 443&lt;/P&gt;&lt;P&gt;add service ssl_module&lt;/P&gt;&lt;P&gt;advanced-balance ssl (if you want to maintain stickyness for SIDs) &lt;/P&gt;&lt;P&gt;application ssl (Reuse of SIDs for HTTPS connections) &lt;/P&gt;&lt;P&gt;active&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The reason for the alternate port content rule(I just chose port 81, but any port can be used) is to allow the decrypted HTTPS connection/traffic to be handled to the webserver for processing.  If you do not have the alternate port your HTTP connection will fall into a redirect loop if you have the proxy-list configuration setup to forward the decrypted traffic back to port 80.  This pattern will continue and the browser will never be able to resolve content.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Redirect loop will occur with the following: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ssl-server 1 cipher all-cipher-suites &lt;VIP address=""&gt; 80&lt;/VIP&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Content will be displayed correctly as the CSS can forward the decrypted traffic to an alternate port content rule for the webserver to process the connection with the following in the proxy-list:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ssl-server 1 cipher all-cipher-suites &lt;VIP address=""&gt; 81&lt;/VIP&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You alternate port content rule can be used with a form of session persistence as well, ie. cookie, ARPT cookie, sticky-scrip, etc. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this info clarifies everything!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Jason &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Oct 2009 03:12:29 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/css-ssl-termination-w-https-rewrite/m-p/1264279#M26269</guid>
      <dc:creator>jason.espino</dc:creator>
      <dc:date>2009-10-02T03:12:29Z</dc:date>
    </item>
    <item>
      <title>Re: CSS SSL Termination w/HTTPS rewrite</title>
      <link>https://community.cisco.com/t5/application-networking/css-ssl-termination-w-https-rewrite/m-p/1264280#M26270</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes I think that explains it.  We use the port 80 content rule to do the redirect on incoming traffic.  The port 81 content rule is used to send the traffic to the back-end webserver.  Right?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So using the above config I'll need to configure the webserver to listen on port 81 to correctly handle the traffic?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Oct 2009 03:33:12 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/css-ssl-termination-w-https-rewrite/m-p/1264280#M26270</guid>
      <dc:creator>cmcbride</dc:creator>
      <dc:date>2009-10-02T03:33:12Z</dc:date>
    </item>
    <item>
      <title>Re: CSS SSL Termination w/HTTPS rewrite</title>
      <link>https://community.cisco.com/t5/application-networking/css-ssl-termination-w-https-rewrite/m-p/1264281#M26271</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, your understanding of the communication process is correct.  The HTTP port 80 content rule will redirect the client's connection; then the port 81 content rule would be used to process/handle the decrypted traffic from the client's HTTPS connection using the webserver.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, you are also correct that the server must be configured to listen on the alternate port (this case 81) to correctly handle the client's traffic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Jason &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Oct 2009 04:05:00 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-networking/css-ssl-termination-w-https-rewrite/m-p/1264281#M26271</guid>
      <dc:creator>jason.espino</dc:creator>
      <dc:date>2009-10-02T04:05:00Z</dc:date>
    </item>
  </channel>
</rss>

