cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1233
Views
0
Helpful
3
Replies

Cisco ACE SSL Offloading not working

Dear All,

  I have configured SSL  offloading on ACE when i tried to test it from the PC i found that:

1. when i try to test the SSL Offloading by   (https://192.168.69.110)  i can reach the main page on WEB1 but i can't open any virual directory or any link inside this server (ex: https://192.168.69.110/web).

Thanks,

Bader

1 Accepted Solution

Accepted Solutions

Jorge Bejarano
Level 4
Level 4

Hello Mohammed,

The behavior which you are getting is totally expected since you are NOT matching the url.

Why do not you try this?

(config-cmap-http-lb)# class-map type http loadbalance match-all MATCH-URL

(config-cmap-http-lb)# match http url /.*

class-map type http loadbalance match-all MATCH-URL

  2 match http url /.*

Also you can try this one instead of the one above, since this one will be more specific:

class-map type http loadbalance match-all MATCH-URL

  2 match http url /web.*

policy-map type loadbalance first-match WEB-SERVERS-LB

class MATCH-URL

    sticky-serverfarm Sticky-WEB-SERVERS

class class-default

    sticky-serverfarm Sticky-WEB-SERVERS

Please mark it, if it fixes your issue.

Jorge

View solution in original post

3 Replies 3

Jorge Bejarano
Level 4
Level 4

Hello Mohammed,

The behavior which you are getting is totally expected since you are NOT matching the url.

Why do not you try this?

(config-cmap-http-lb)# class-map type http loadbalance match-all MATCH-URL

(config-cmap-http-lb)# match http url /.*

class-map type http loadbalance match-all MATCH-URL

  2 match http url /.*

Also you can try this one instead of the one above, since this one will be more specific:

class-map type http loadbalance match-all MATCH-URL

  2 match http url /web.*

policy-map type loadbalance first-match WEB-SERVERS-LB

class MATCH-URL

    sticky-serverfarm Sticky-WEB-SERVERS

class class-default

    sticky-serverfarm Sticky-WEB-SERVERS

Please mark it, if it fixes your issue.

Jorge

Hi Jorge,

Today i applied the commands and every thing is working fine.

thanks for assistant and appreciated.

Hey Mohammed,

I am glad to hear that, It sounds great!!!

Jorge