Forum Discussion

Mike_Graston_10's avatar
Mike_Graston_10
Icon for Nimbostratus rankNimbostratus
Mar 07, 2007

Cisco GSLB workig with LTM

All,

 

 

Due to the recent daylight savings time "DST" issues we were upgrading to 9.4 code on the LTMs. What I saw was my script to utilize the GSLB keep alive to determine if it should fail over did not work on this version of code. I was wondering if anyone has seen this issue or actually over come it on 9.4? Below is my script for review.. I was wondering if I was doing anything wrong here?

 

 

Mike

 

 

when CLIENT_ACCEPTED {

 

if { [active_members pool] == 0 } {

 

discard

 

}

 

}

 

  • Colin_Walker_12's avatar
    Colin_Walker_12
    Historic F5 Account
    Other than the fact that you don't need two equals signs in TCL since variables are set explicitly, not implicitly, everything looks fine there.

     

     

    If you're experiencing problems still, I'd try adding a log statement above the if line to log what the active_members command is returning so you can see a little more about what's going on.

     

     

    Colin