Forum Discussion

bert_92443's avatar
bert_92443
Icon for Nimbostratus rankNimbostratus
Sep 13, 2012

Bigpip command to list all pool members under a specific vip

I have a bunch of vip and I need to disable all members under it. What is the bigpipe command that accomplish it quickly?

 

I need to disable the members before deleting the vip itself few days later.

 

 

2 Replies

  • Hi Bert,

     

     

    If you know the Pool Name you can perform a "bigpipe pool list" to get a list of the nodes in that pool and their status.

     

     

    You can then perform a "bigpipe pool member down".

     

     

    This will put the node in a Forced Down configuration.

     

     

    Example:

     

    bigpipe pool test.pool list

     

     

    Results

     

    pool test.pool {

     

    lb method least conn

     

    monitor all tcp

     

    partition Production

     

    members {

     

    10.10.10.10:80 {}

     

    20.20.20.20:80 {}

     

    30.30.30.30:80 {}

     

    }

     

    }

     

     

    b pool test.pool member 20.20.20.20:80 down

     

     

    Results

     

    pool test.pool {

     

    lb method least conn

     

    monitor all tcp

     

    partition Production

     

    members {

     

    10.10.10.10:80 {}

     

    20.20.20.20:80 {

     

    down

     

    }

     

    30.30.30.30:80 {}

     

    }

     

    }

     

     

    You can bring it back up by reversing the command:

     

    b pool test.pool member 20.20.20.20:80 up

     

     

    Hope this helps.