cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1872
Views
0
Helpful
2
Replies

Cisco ACE - Exempt HTTP URL from SSL Offloading

masif.rao
Level 1
Level 1

Hi,

I have a cisco ACE module A2 (3.6). I am offloading url www.abc.com on cisco ACE. HTTP redirection to https is working & over https I am able to browse website perfectly. real servers are redirecting some pages over http.  Due to page redirection from webserver I have to exempt one URL (http://www.abc.com/modules/docs/abc.aspx) from ssl offloading. It is possible or as a work around i have to rewrite complete url www.abc.com as ssl port.

Your inputs highly appreciated.

Regards,

1 Accepted Solution

Accepted Solutions

pablo.nxh
Level 3
Level 3

Hi Masif,

In case you have not gotten assistance with this one, you just need to specify the specific URL and match it on top of the loadbalance policy that is already doing the redirection.

class-map type http loadbalance match-any No-Redirect
  2 match http url /docs/abc.aspx
policy-map type loadbalance first-match ABC
  class No-Redirect
    serverfarm HTTP-Servers
  class class-default
    serverfarm Redirect

Hope this helps.
__ __
Pablo 

View solution in original post

2 Replies 2

pablo.nxh
Level 3
Level 3

Hi Masif,

In case you have not gotten assistance with this one, you just need to specify the specific URL and match it on top of the loadbalance policy that is already doing the redirection.

class-map type http loadbalance match-any No-Redirect
  2 match http url /docs/abc.aspx
policy-map type loadbalance first-match ABC
  class No-Redirect
    serverfarm HTTP-Servers
  class class-default
    serverfarm Redirect

Hope this helps.
__ __
Pablo 

Thanks pablo