Forum Discussion

woodaker_98924's avatar
woodaker_98924
Icon for Nimbostratus rankNimbostratus
Jan 24, 2012

Session user disabled

Hello,

 

 

when i send the following command to not allow any new connections to a pool member but allow the current connections to remain ...

 

 

b pool Pool_Name {members 10.10.10.10:ms-wbt-server {session user disabled}

 

 

the other members of the pool are deleted. What am i doing wrong?

 

 

(using BIG-IP 10.2.1 Build 297, with an ssh connection)

 

 

2 Replies

  • can you try this?

    [root@ve1023:Active] config  b pool Pool_Name list
    pool Pool_Name {
       members {
          10.10.10.10:3389 {}
          10.10.10.20:3389 {}
          10.10.10.30:3389 {}
       }
    }
    
    [root@ve1023:Active] config  b pool Pool_Name members 10.10.10.10:ms-wbt-server { session user disabled }
    
    [root@ve1023:Active] config  b pool Pool_Name list
    pool Pool_Name {
       members {
          10.10.10.10:3389 {
             session user disabled
          }
          10.10.10.20:3389 {}
          10.10.10.30:3389 {}
       }
    }