For more information regarding the security incident at F5, the actions we are taking to address it, and our ongoing efforts to protect our customers, click here.

Forum Discussion

Steve_89474's avatar
Steve_89474
Icon for Nimbostratus rankNimbostratus
Jun 30, 2014

Can I delete my persistence record in an iRule?

I am looking for a way to delete my source address persistence to a specific server using a URL parameter or something. Would this work?

 

when HTTP_REQUEST { if {([HTTP::uri] contains "persist=0")} then { persist source_addr [IP::client_addr] delete } }

 

Thanks, Steve

 

2 Replies

  • when HTTP_REQUEST { 
      if {[HTTP::uri] contains "persist=0"} { 
        persist delete source_addr [IP::client_addr]
      }
    }