Forum Discussion

Jonas_Karlsson1's avatar
Jonas_Karlsson1
Historic F5 Account
May 05, 2006

iRules and ASM

Hi,

I'm working on on iRule for selective server side SSL on 9.2.3 together with ASM with very little success so far.

This simple test rule works as expected without ASM. If the uri contains "922" SSL is not used on the server side.

When HTTP_REQUEST {
    if { [HTTP::uri] contains "922" } {
        pool web_http
        SSL::disable serverside
    }
}

With ASM enabled (as far as I understand), the _ASM_clientside and _ASM_serverside iRules interferes so that I always get SSL on the server side.

The only eway I can see to get around this would be to change the _ASM_* iRules. This is probably not a good idea.

Any help on this would be much appreciated.

No RepliesBe the first to reply