Forum Discussion

newDem's avatar
newDem
Icon for Nimbostratus rankNimbostratus
Nov 18, 2019
Solved

Except member in the pool for load balance

I would like to know. If in 1 pool there are 4 members. I want to select member 1, except to not work in load balancing. But can other members perform normal load balancing? iRule can manage? iRule...
  • jaikumar_f5's avatar
    jaikumar_f5
    Nov 18, 2019

    If you have to test something, do not put that member as part of original pool.

    But rather, create another pool for testing and use datagroup for whitelisting your IP, so that only you can access it.

    Other should be landing to the original pool where 3 members alone are put.

    when CLIENT_ACCEPTED {
        if { [class match [IP::client_addr] equals your_DGL] } { 
            pool testing_pool_name
        } else { 
            pool original_pool
        }
    }