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

kartheek's avatar
kartheek
Icon for Nimbostratus rankNimbostratus
Oct 16, 2019

Persistence is not happening

We have 60+ node pool configured for sticky session but requestors are moving between nodes. Here is persistence cookie config

ltm persistence cookie pr_persist_cookie_120_timeout {
    always-send enabled
    app-service none
    defaults-from cookie
    expiration 0
    timeout 180
}

We have a I-rule to handle logout scenario.

tm rule irule_prpc_logout {
    when HTTP_REQUEST {
         if {[HTTP::uri] contains "EndSession"}{
             set logout 1
         } else { set logout 0
        }
    }
    when HTTP_RESPONSE {
      if { $logout == 1 }{
           HTTP::cookie expires "BIGipServerprpc_pooll" 1 absolute
         }
    }
}

Any help really appreciated.

1 Reply

  • Where is persistence condition for logout 0?

    Are you using persistence profile in ViP?​