Forum Discussion
shan_83900
Nimbostratus
Jun 17, 2009list of active members in BIG-IP 9.3.0
How can I get a list of active members in a pool in BIG-IP version 9.3.0.
I cannot use active_members -list .
The_Bhattman
Nimbostratus
Jun 17, 2009Unfortunatly with v9.3.0 you can only get the of active members in a pool.
However, you could probably write something that can possible provide active list
Example
set GOOD_NODES {}
set NS {192.168.1.1 192.168.1.2 192.168.1.3 192.168.1.4}
foreach N $NS {
if { [LB::status pool poolnodes member $N 80] eq "up" } {
lappend GOOD_NODES $N
This will append only the good news to an array to produce a list of active nodes
}
}
Hope this helps,
CB
Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects