Forum Discussion

nlong_67651's avatar
nlong_67651
Icon for Nimbostratus rankNimbostratus
Aug 11, 2010

No Persistence + Source_Addr for particular URL

I'm looking for some help on a iRule to set persistence to a particular URL to source address while maintaining the default of no persistence for all other connections on the same VS and Pool. Is this possible?

 

1 Reply

  • Posted By nlong on 08/11/2010 09:45 AM

    I'm looking for some help on a iRule to set persistence to a particular URL to source address while maintaining the default of no persistence for all other connections on the same VS and Pool. Is this possible?

    when HTTP_REQUEST {
    if { [HTTP::uri] eq /example.html } {
    persist source_addr mask timeout }
    else { persist none }
    }